Thanks for the reply, It's fiber. MEO/Portugal.
The 'ifstatus wan6' returns:
{
"up": true,
"pending": false,
"available": true,
"autostart": true,
"dynamic": false,
"uptime": 223,
"l3_device": "wan",
"proto": "dhcpv6",
"device": "wan",
"updated": [
"addresses",
"routes",
"data"
],
"metric": 0,
"dns_metric": 0,
"delegation": true,
"ipv4-address": [
],
"ipv6-address": [
{
"address": "2001:8a0:70a6:be00:9e9d:7eff:fe51:92",
"mask": 64,
"preferred": 89777,
"valid": 89777
}
],
"ipv6-prefix": [
],
"ipv6-prefix-assignment": [
],
"route": [
{
"target": "2001:8a0:70a6:be00::",
"mask": 64,
"nexthop": "::",
"metric": 256,
"valid": 89777,
"source": "::/0"
},
{
"target": "2001:8a0:70a6:be00::",
"mask": 64,
"nexthop": "fe80::6aaa:c4ff:fe48:89af",
"metric": 384,
"valid": 89777,
"source": "::/0"
},
{
"target": "::",
"mask": 0,
"nexthop": "fe80::6aaa:c4ff:fe48:89af",
"metric": 640,
"valid": 1577,
"source": "2001:8a0:70a6:be00:9e9d:7eff:fe51:92/64"
}
],
"dns-server": [
"2001:8a0:70a6:be00::1"
],
"dns-search": [
],
"neighbors": [
],
"inactive": {
"ipv4-address": [
],
"ipv6-address": [
],
"route": [
],
"dns-server": [
],
"dns-search": [
],
"neighbors": [
]
},
"data": {
"passthru": "0010001200000de9000c64736c666f72756d2e6f726700170010200108a070a6be000000000000000001"
}
}
So as you said i change the config/dhcp to
config dhcp 'lan'
option interface 'lan'
option start '100'
option limit '150'
option leasetime '12h'
option dhcpv4 'server'
option dhcpv6 'relay'
option ra 'relay'
option ndp 'relay'
option ra_slaac '1'
list ra_flags 'managed-config'
list ra_flags 'other-config'
config dhcp 'wan'
option interface 'wan'
option ignore '1'
option dhcpv6 'relay'
option ra 'relay'
option ndp 'relay'
option master '1'
and now the PC can reach IPv6 outside.
Many Thanks mk24