Hi,
I am having hard time configuring the IPV6 connectivity on LEDE. My ISP is Freebox, I tried the configuation proposed in [https://wiki.openwrt.org/doc/howto/freebox] with no avail. My configuration is as follows:
/etc/config/network
config interface 'wan6'
option ifname 'eth0.2'
option proto 'static'
option ip6gw '2a01:e35:87fc:xxxx::1'
option ip6prefix '2a01:e35:87fc:xxxx::/64'
option ip6addr '2a01:e35:87fc:xxxx::2/126'
config interface 'lan'
option ifname 'eth0.1'
option type 'bridge'
option proto 'static'
option ipaddr '192.168.1.1'
option netmask '255.255.255.0'
option ip6assign '64'
/etc/config/dhcp
config dhcp 'lan'
option interface 'lan'
option start '100'
option limit '150'
option leasetime '12h'
option ra_management '1'
option ra_default '1'
option ra 'server'
option dhcpv6 'server'
config dhcp 'wan'
option interface 'wan'
option ignore '1'
config odhcpd 'odhcpd'
option maindhcp '0'
option leasefile '/tmp/hosts/odhcpd'
option leasetrigger '/usr/sbin/odhcpd-update'
option loglevel '4'
wan6 is connected and I can ping the modem from the router. The clients can get ipv6 addressing and can ping the modem but not the router. The router cannot ping any ipv6 adsress on the internet, ping6 gives a Permisison Denied message. The firewall has the original configuration with 2 zones lan => wan and wan => reject.
Am I misssing Something? Seems that there is something blocking traffic between lan and wan6, however the ifstatus wan6 has the following route:
"route": [
{
"target": "::",
"mask": 0,
"nexthop": "2a01:e35:87fc:XXXX::1",
"source": "::\/0"
}
],
And the 10-default.conf in (/etc/sysctl.d/) has:
net.ipv6.conf.default.forwarding=1
net.ipv6.conf.all.forwarding=1
The modem, which has ipv6 delegation, is instructed to use the nexthop which is the local-link address of the router (fe80::7aa3:51ff:fe44:ce86/64).
Please help.