asus路由器ipv6设置

原文:https://rog.asus.com.cn/support/FAQ/113990

 

如何在路由器中设置IPv6?

请与您的ISP网络运营商确认IPv6信息 (例如:联机类型、IPv6地址和DSN设置等)

1. 请用浏览器输入  http://router.asus.com ,输入登录路由器的账号和密码。

2. 点击[高级设置]>[IPv6],[联机类型]请按照ISP网络运营商提供的信息进行设置。

  • 当您的外部网络(WAN) > 互联网连接 > WAN联机类型为 [PPPoE], 在IPv6联机类型请选择 [Native]
  • 当您的外部网络(WAN) > 互联网连接 > WAN联机类型为 [动态IP], 在IPv6联机类型请选择 [Passthrough]
  • 当您的外部网络(WAN) > 互联网连接 > WAN联机类型为 [静态IP], 在IPv6联机类型请选择 [静态 IPv6]
  • 其他IPv6类型,请与您的ISP确认需要填写的信息。

注意: 外部网络(WAN) > 互联网连接 > WAN联机类型一定要先设置。

Native 
3. 若选择IPv6联机类型为 [Native],建议设置方式为直接点击[应用本页面设置]。

保存设置后再回到IPv6的页面,当[IPv6内部网络设置]出现IPv6信息,即[Native]的设置就完成了。

静态IPv6 

4. 若选择IPv6联机类型为 [静态 IPv6] 请按照ISP网络运营商提供的信息进行设置,输入完成后点击[应用本页面设置] 保存设置即可。

举例如下(不同运营商,及不同地区会有差异)

栏位 IPv6
外部网络IPv6地址 2001:B030:2309:FF00::0001/64
外部网络IPv6网关 2001:B030:2309:FF00::FFFF/64
内部网络IPv6地址 2001:B030:2309:0000::/56

 

Passthrough

5. 若选择IPv6联机类型为 [Passthrough] ,点击[应用本页面设置] 保存设置即可。

 

注意:您可以通过以下网址确认IPv6连接情况  http://flets-v6.jp/

 

注意:

电信拨号获得的ipv6为动态ip,openwrt使用relay,asus路由器使用passthrough

最简单Openwrt ipv6配置,局域网WAN6中继模式获取原生ipv6地址

原文:https://cloud.tencent.com/developer/article/1888169

条件

condition

wan 和 wan6 是默认配置

Wan and wan6 are the default configurations

同时wan6可以获取到原生IPv6

At the same time wan6 can get native IPv6

ssh链接之后,进行备份配置文件后,并进行修改

After the ssh link, after backing up the configuration file, and modifying it

root@cby:~# vim /etc/config/dhcp
root@cby:~# cat /etc/config/dhcp

config dnsmasq
option localise_queries '1'
option rebind_protection '1'
option rebind_localhost '1'
option local '/lan/'
option domain 'lan'
option expandhosts '1'
option authoritative '1'
option readethers '1'
option leasefile '/tmp/dhcp.leases'
option resolvfile '/tmp/resolv.conf.auto'
option nonwildcard '1'
option localservice '1'
option noresolv '0'
list server '127.0.0.1#5333'

config dhcp 'lan'
option interface 'lan'
option start '100'
option limit '150'
option leasetime '12h'
option ra_slaac '1'
list ra_flags 'managed-config'
list ra_flags 'other-config'
option ra 'relay'
option dhcpv6 'relay'
option ndp 'relay'

config dhcp 'wan'
option interface 'wan'
option ignore '1'
option ra 'relay' 
option dhcpv6 'relay' 
option ndp 'relay' 
option master '1'

config odhcpd 'odhcpd'
option maindhcp '0'
option leasefile '/tmp/hosts/odhcpd'
option leasetrigger '/usr/sbin/odhcpd-update'
option loglevel '4'

config srvhost
option srv '_vlmcs._tcp'
option target 'cby'
option port '1688'
option class '0'
option weight '100'

配置文件修改为以上配置即可,注意wan口的配置。若有wan6接口的配置,将以下配置添加到wan6。若没有即配置到wan口即可。

The configuration file can be modified to the above configuration, pay attention to the configuration of the wan port. If there is a wan6 interface configuration, add the following configuration to wan6. If not, configure it to the wan port.

 option ra 'relay' 
option dhcpv6 'relay' 
option ndp 'relay' 
option master '1'

 

最后进行IPV6测速

Finally, IPV6 speed test