mirror of
https://github.com/eworm-de/routeros-scripts
synced 2024-05-14 08:04:19 +00:00
doc/ipv6-update: RouterOS v7 path syntax
This commit is contained in:
parent
ea619c8efc
commit
ad6dc85320
1 changed files with 5 additions and 5 deletions
|
@ -23,14 +23,14 @@ Just install the script:
|
||||||
|
|
||||||
Your ISP needs to provide an IPv6 prefix, your device receives it via dhcp:
|
Your ISP needs to provide an IPv6 prefix, your device receives it via dhcp:
|
||||||
|
|
||||||
/ ipv6 dhcp-client add add-default-route=yes interface=ppp-isp pool-name=isp request=prefix script=ipv6-update;
|
/ipv6/dhcp-client/add add-default-route=yes interface=ppp-isp pool-name=isp request=prefix script=ipv6-update;
|
||||||
|
|
||||||
Note this already adds this script as `script`. The pool name (here: "`isp`")
|
Note this already adds this script as `script`. The pool name (here: "`isp`")
|
||||||
is important, we need it later.
|
is important, we need it later.
|
||||||
|
|
||||||
Also this expects there is an address assigned from pool to an interface:
|
Also this expects there is an address assigned from pool to an interface:
|
||||||
|
|
||||||
/ ipv6 address add from-pool=isp interface=br-local;
|
/ipv6/address/add from-pool=isp interface=br-local;
|
||||||
|
|
||||||
Sometimes dhcp client is stuck on reconnect and needs to be released.
|
Sometimes dhcp client is stuck on reconnect and needs to be released.
|
||||||
Installing [ppp-on-up](ppp-on-up.md) may solve this.
|
Installing [ppp-on-up](ppp-on-up.md) may solve this.
|
||||||
|
@ -41,7 +41,7 @@ Configuration
|
||||||
An address list entry is updated with current prefix and can be used in
|
An address list entry is updated with current prefix and can be used in
|
||||||
firewall rules, comment has to be "`ipv6-pool-`" and actual pool name:
|
firewall rules, comment has to be "`ipv6-pool-`" and actual pool name:
|
||||||
|
|
||||||
/ ipv6 firewall address-list add address=2003:cf:2f0f:de00::/56 comment=ipv6-pool-isp list=extern;
|
/ipv6/firewall/address-list/add address=2003:cf:2f0f:de00::/56 comment=ipv6-pool-isp list=extern;
|
||||||
|
|
||||||
As this entry is mandatory it is created automatically if it does not exist,
|
As this entry is mandatory it is created automatically if it does not exist,
|
||||||
with the comment also set for list.
|
with the comment also set for list.
|
||||||
|
@ -50,13 +50,13 @@ Address list entries for specific interfaces can be updated as well. The
|
||||||
interface needs to get its address from pool `isp` and the address list entry
|
interface needs to get its address from pool `isp` and the address list entry
|
||||||
has to be associated to an interface in comment:
|
has to be associated to an interface in comment:
|
||||||
|
|
||||||
/ ipv6 firewall address-list add address=2003:cf:2f0f:de01::/64 comment="ipv6-pool-isp, interface=br-local" list=local;
|
/ipv6/firewall/address-list/add address=2003:cf:2f0f:de01::/64 comment="ipv6-pool-isp, interface=br-local" list=local;
|
||||||
|
|
||||||
Static DNS records need a special comment to be updated. Again it has to
|
Static DNS records need a special comment to be updated. Again it has to
|
||||||
start with "`ipv6-pool-`" and actual pool name, followed by a comma,
|
start with "`ipv6-pool-`" and actual pool name, followed by a comma,
|
||||||
"`interface=`" and the name of interface this address is connected to:
|
"`interface=`" and the name of interface this address is connected to:
|
||||||
|
|
||||||
/ ip dns static add address=2003:cf:2f0f:de00:1122:3344:5566:7788 comment="ipv6-pool-isp, interface=br-local" name=test.example.com ttl=15m;
|
/ip/dns/static/add address=2003:cf:2f0f:de00:1122:3344:5566:7788 comment="ipv6-pool-isp, interface=br-local" name=test.example.com ttl=15m;
|
||||||
|
|
||||||
See also
|
See also
|
||||||
--------
|
--------
|
||||||
|
|
Loading…
Reference in a new issue