|
大家好。
SF1200, IPV6 Native下无法上网,但是NAT6就可以。Native
```
ping6 bing.com
PING bing.com (2620:1ec:c11::200): 56 data bytes
^C--- bing.com ping statistics ---
15 packets transmitted, 0 packets received, 100% packet loss
```
NAT6:
```
$ ping6 bing.com
PING bing.com (2620:1ec:c11::200): 56 data bytes
64 bytes from 2620:1ec:c11::200: icmp_seq=0 ttl=52 time=65.953 ms
64 bytes from 2620:1ec:c11::200: icmp_seq=1 ttl=52 time=65.845 ms
64 bytes from 2620:1ec:c11::200: icmp_seq=2 ttl=52 time=65.864 ms
64 bytes from 2620:1ec:c11::200: icmp_seq=3 ttl=52 time=66.099 ms
^C--- bing.com ping statistics ---
4 packets transmitted, 4 packets received, 0% packet loss
round-trip min/avg/max/stddev = 65.845/65.940/66.099/0.100 ms
```
客户端是armbian, networkmanager默认配置。
路由器的默认配置是:
```
config dhcp 'wan6'
option dhcpv6 'relay'
option ra 'relay'
option ndp 'relay'
option master '1'
option interface 'wan'
```
和官方文档推荐的配置咋略有不同: https://openwrt.org/docs/guide-u ... guration#ipv6_relay
请问这个/etc/config/dhcp 文件怎么改才能生效呀?
**option interface 'wan'**这个配置的不同是IPV6不通的原因吗?
谢谢。
|
|