aboutsummaryrefslogtreecommitdiffstats
path: root/ppp-on-up
blob: af99af12e06651aba379c918a221755c19b6ce79 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!rsc
# RouterOS script: ppp-on-up
# Copyright (c) 2013-2019 Christian Hesse <mail@eworm.de>
#
# run scripts on ppp up

# variable $interface is available in ppp on-up script
:local Interface $interface;
:local IntName [ / interface get $Interface name ];
:log info ("PPP interface " . $IntName . " is up.");

:local DhcpClient [ / ipv6 dhcp-client find where interface=$IntName ];
:if ([ :len $DhcpClient ] > 0) do={
  / ipv6 dhcp-client disable $DhcpClient;
  :delay 1s;
  / ipv6 dhcp-client enable $DhcpClient;
}