Skip to content

Instantly share code, notes, and snippets.

@stsimb
Created December 16, 2025 09:57
Show Gist options
  • Select an option

  • Save stsimb/9efc9f51e8b111de7224279de12c4a2c to your computer and use it in GitHub Desktop.

Select an option

Save stsimb/9efc9f51e8b111de7224279de12c4a2c to your computer and use it in GitHub Desktop.
mikrotik ipv6 template
/interface pppoe-client
set pppoe-out1 add-default-route=yes
/ipv6 dhcp-client
add interface=pppoe-out1 pool-name=ipv6-pd-pool add-default-route=yes \
request=prefix pool-prefix-length=56
/ipv6 address
add from-pool=ipv6-pd-pool interface=bridge advertise=yes
/ipv6 nd
set [ find interface=bridge ] other-configuration=yes managed-address-configuration=no
/ipv6 firewall filter
add chain=input action=accept connection-state=established,related
add chain=input action=accept protocol=icmpv6
add chain=input action=accept protocol=udp dst-port=546 in-interface=pppoe-out1 comment="DHCPv6"
add chain=input action=drop in-interface=pppoe-out1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment