I am new to IPv6 kind of thing. Here are my configurations:
/etc/config/network
config globals 'globals'
option ula_prefix 'fd5d:52a2:e27b::/48'
config interface 'lan'
option device 'eth0.2670'
option proto 'static'
option ipaddr '172.26.97.1'
option netmask '255.255.255.224'
option ip6assign '64'
list ip6class 'local'
config interface 'wan1'
option device 'eth1'
option proto 'pppoe'
option username '<pppoe_account>'
option password '<pppoe_password>'
option ipv6 '0' # set to 0 to disable IPv6 negotiation on the PPP link
config interface 'wan1_ipv6'
option device '@wan1'
option proto 'dhcpv6'
/etc/config/dhcp
config dhcp 'lan'
option interface 'lan'
option ignore '0'
option dhcpv4 'server'
option start '2'
option limit '29'
option ra 'relay'
option dhcpv6 'relay'
option ndp 'relay'
option leasetime '12h'
config dhcp 'wan1'
option interface 'wan1'
option ignore '1'
config dhcp 'wan1_ipv6'
option interface 'wan1_ipv6'
option ignore '1'
option ra 'relay'
option dhcpv6 'relay'
option ndp 'relay'
option master '1'
And here is what I get. I do not care about IP addresses privacy, they are dynamic and will be changed on next boot:
I do not know why I cannot get DHCPv6 DNS information from my ISP on my computer:
... while the OpenWrt router receives DNS normally:
You may have noticed that I do not get any Unique Local Address on my computer either. What could be the cause of the 2 issues and how do I fix it?