Debian 如何设置IPv6

时间:2019-11-20 08:53:19  来源:igfitidea点击:

在Debian Linux,如何配置静态IPv6网络?

在Debian Linux中,网络配置文件为: /etc/network/interfaces

Debian Linux Ipv6配置示例

编辑/etc/network/interfaces文件:

# vi /etc/network/interfaces

添加配置如下:

#IPV6 static configuration
iface eth0 inet6 static
pre-up modprobe ipv6 
address 2607:f0d0:2001:000a:0000:0000:0000:0002
netmask 64
gateway 2607:f0d0:2001:000a:0000:0000:0000:0001
# END IPV6 configuration

重启网络服务:

# /etc/init.d/networking restart

验证IPv6网络

查看当前路由:

# ip -6 route show

ping 支持Ipv6的网站:

# ping6 www.theitroad.local
# ping6 ipv6.google.com