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

# variable $interface is available in ppp on-up script
:local dhcpclient [ / ipv6 dhcp-client find where interface=$interface ];

:if ( [ :len $dhcpclient ] > 0) do={
  / ipv6 dhcp-client disable $dhcpclient;
  :delay 1s;
  / ipv6 dhcp-client enable $dhcpclient;
}