I have a Motorola MB8600 cable modem which has 4 ports on it that can all be bonded via link aggregation grouping…
When I connect two ports on the modem to two ports on the Microtik router, set up an interface bond with ether1 and ether2 being bonded via LACP I can no longer get an IPv6 address via the DHCPv6 client on the router.
If I go to a single WAN port and have no bonding set up I can bind to an IPv6 address just fine.
My IPv6 config is pretty simple, I have Comcast as my ISP and we just get a /64 block via a DHCPv6 client.
ether1 and ether2 are the ports I’m using for my bonded WAN
ether3 is to my LAN
below is my config that works fine when no bond is set up
# sep/24/2018 10:28:06 by RouterOS 6.43.2
# software id = JGID-4PLY
#
# model = RouterBOARD 3011UiAS
# serial number = 5D6A05225239
/ipv6 address
add address=::1 from-pool=Comcast_IPv6 interface=ether3-lan
/ipv6 dhcp-client
add add-default-route=yes interface=ether1-wan1 pool-name=Comcast_IPv6 request=address,prefix use-peer-dns=no
/ipv6 firewall address-list
add address=::/128 comment="defconf: unspecified address" list=bad_ipv6
add address=::1/128 comment="defconf: lo" list=bad_ipv6
add address=fec0::/10 comment="defconf: site-local" list=bad_ipv6
add address=::ffff:0.0.0.0/96 comment="defconf: ipv4-mapped" list=bad_ipv6
add address=::/96 comment="defconf: ipv4 compat" list=bad_ipv6
add address=100::/64 comment="defconf: discard only " list=bad_ipv6
add address=2001:db8::/32 comment="defconf: documentation" list=bad_ipv6
add address=2001:10::/28 comment="defconf: ORCHID" list=bad_ipv6
add address=3ffe::/16 comment="defconf: 6bone" list=bad_ipv6
add address=::224.0.0.0/100 comment="defconf: other" list=bad_ipv6
add address=::127.0.0.0/104 comment="defconf: other" list=bad_ipv6
add address=::/104 comment="defconf: other" list=bad_ipv6
add address=::255.0.0.0/104 comment="defconf: other" list=bad_ipv6
/ipv6 firewall filter
add action=accept chain=input comment="defconf: accept established,related,untracked" connection-state=established,related,untracked
add action=drop chain=input comment="defconf: drop invalid" connection-state=invalid
add action=accept chain=input comment="defconf: accept ICMPv6" protocol=icmpv6
add action=accept chain=input comment="defconf: accept UDP traceroute" port=33434-33534 protocol=udp
add action=accept chain=input comment="defconf: accept DHCPv6-Client prefix delegation." dst-port=546 protocol=udp src-address=fe80::/16
add action=accept chain=input comment="defconf: accept IKE" dst-port=500,4500 protocol=udp
add action=accept chain=input comment="defconf: accept ipsec AH" protocol=ipsec-ah
add action=accept chain=input comment="defconf: accept ipsec ESP" protocol=ipsec-esp
add action=accept chain=input comment="defconf: accept all that matches ipsec policy" ipsec-policy=in,ipsec
add action=drop chain=input comment="defconf: drop everything else not coming from LAN" in-interface-list=!LAN
add action=accept chain=forward comment="defconf: accept established,related,untracked" connection-state=established,related,untracked
add action=drop chain=forward comment="defconf: drop invalid" connection-state=invalid
add action=drop chain=forward comment="defconf: drop packets with bad src ipv6" src-address-list=bad_ipv6
add action=drop chain=forward comment="defconf: drop packets with bad dst ipv6" dst-address-list=bad_ipv6
add action=drop chain=forward comment="defconf: rfc4890 drop hop-limit=1" hop-limit=equal:1 protocol=icmpv6
add action=accept chain=forward comment="defconf: accept ICMPv6" protocol=icmpv6
add action=accept chain=forward comment="defconf: accept HIP" protocol=139
add action=accept chain=forward comment="defconf: accept IKE" dst-port=500,4500 protocol=udp
add action=accept chain=forward comment="defconf: accept ipsec AH" protocol=ipsec-ah
add action=accept chain=forward comment="defconf: accept ipsec ESP" protocol=ipsec-esp
add action=accept chain=forward comment="defconf: accept all that matches ipsec policy" ipsec-policy=in,ipsec
add action=drop chain=forward comment="defconf: drop everything else not coming from LAN" in-interface-list=!LAN
/ipv6 nd
set [ find default=yes ] disabled=yes
add interface=ether3-lan other-configuration=yes ra-delay=5s ra-interval=5s-30s
to create the bond, I just make a bonding interface, assign ether1 and ether2 as slaves with LACP and mii as the the link monitoring then change all my references to ether1 to the bonding interface
as soon as I do this my DHCPv6 client goes into “searching” status and never moves from that. when it’s not the wan is not bonded it goes from searching to bound status within a second
now when I mess with the DHCPv6 client some I can get it to find after a while, if I turn the prefix off and tell it to just request an address after a few minutes it will go to bound as the status, but of course I do not have my /64 prefix in my address pool now… and IPv6 doesn’t work outside my router
anything that would cause this or anything that I could look at?