I'm trying to get IPv6 working, but I'm not doing so great. :-(
I've tried to follow along this guide: IPv6 on the EdgeRouter Lite so far I've gotten these results:
Firewalls:
# edit firewall ipv6-name IPv6_WAN_LOCAL # show rule rule 1 { action accept description "Allow Enabled/Related state" state { established enable related enable } } rule 2 { action drop description "Drop Invalid state" state { invalid enable } } rule 5 { action accept description "Allow ICMPv6" protocol icmpv6 } rule 6 { action accept description DHCPv6 destination { port 546 } protocol udp source { port 547 } } # edit firewall ipv6-name IPv6_WAN_IN # show rule rule 1 { action accept description "Allow Enabled/Related state" state { established enable related enable } } rule 2 { action drop description "Drop Invalid state" state { invalid enable } } rule 5 { action accept description "Allow ICMPv6" protocol icmpv6 }
Interface configurations:
# show interfaces ethernet eth0 { address 7X.XXX.XXX.100/29 address 7X.XXX.XXX.98/29 address 7X.XXX.XXX.99/29 description Internet dhcpv6-pd { pd 0 { interface eth1 { host-address ::1 prefix-id :0 service slaac } prefix-length /64 } rapid-commit enable } duplex auto firewall { in { ipv6-name IPv6_WAN_IN name WAN_IN } local { ipv6-name IPv6_WAN_LOCAL name WAN_LOCAL } } speed auto } ethernet eth1 { address 192.168.1.1/24 description Local duplex auto speed auto } ethernet eth2 { address 192.168.2.1/24 description "Local 2" duplex auto speed auto } loopback lo { } #
Still, I'm not getting IPv6 connectivity:
Codes: S - State, L - Link, u - Up, D - Down, A - Admin Down Interface IP Address S/L Description --------- ---------- --- ----------- eth0 7X.XXX.XXX.100/29 u/u Internet 7X.XXX.XXX.98/29 7X.XXX.XXX.99/29 eth1 192.168.1.1/24 u/u Local eth2 192.168.2.1/24 u/D Local 2 lo 127.0.0.1/8 u/u ::1/128
There's only my static IPv4 adresses, eventhough I know that I've been assigned a /64 IPv6 scope. What am I missing here?
--
Best regards,
Jes Hansen