当前位置: 技术问答>linux和unix
SUSE Linux 10中添加IPV6地址失败
来源: 互联网 发布时间:2016-05-11
本文导语: RT,在SUSE 10中添加IPV6地址: ifconfig eth0 add 2001:0:0:50::1, 重启以后这条记录就没有了,请问怎么办? PS:在/etc/rc.local中有: ifconfig eth0 add 2001:0:0:50::1/64 #ipv6 地址 route -A inet6 add default gw 2001:0:0:50::1 #ipv...
RT,在SUSE 10中添加IPV6地址:
ifconfig eth0 add 2001:0:0:50::1,
重启以后这条记录就没有了,请问怎么办?
PS:在/etc/rc.local中有:
ifconfig eth0 add 2001:0:0:50::1/64 #ipv6 地址
route -A inet6 add default gw 2001:0:0:50::1 #ipv6 网关
这应该就是开机自动启动了吧?
ifconfig eth0 add 2001:0:0:50::1,
重启以后这条记录就没有了,请问怎么办?
PS:在/etc/rc.local中有:
ifconfig eth0 add 2001:0:0:50::1/64 #ipv6 地址
route -A inet6 add default gw 2001:0:0:50::1 #ipv6 网关
这应该就是开机自动启动了吧?
|
需要修改下面两个配置文件:
/etc/sysconfig/network
/etc/sysconfig/network-scripts/ifcfg-ethx # x 是网卡的序号
在‘/etc/sysconfig/network’ 中加入:
NETWORKING_IPV6=yes
在‘/etc/sysconfig/networking-scripts/ifcfg-ethx’ 中加入:
IPV6INIT=yes
IPV6ADDR= #将 替换成你自己的
/etc/sysconfig/network
/etc/sysconfig/network-scripts/ifcfg-ethx # x 是网卡的序号
在‘/etc/sysconfig/network’ 中加入:
NETWORKING_IPV6=yes
在‘/etc/sysconfig/networking-scripts/ifcfg-ethx’ 中加入:
IPV6INIT=yes
IPV6ADDR= #将 替换成你自己的