方法一:
centos 6 默認安裝后,IPv6是自動開啟的,但是現在IPv6還沒有普及基本用不到這個功能,建議關閉IPv6模塊。下面介紹一下關閉方法。
系統環境:CentOS 6.2 i686
1、查看系統是否開啟ipv6
a)通過網卡屬性查看
命令:ifconfig
注釋:有 “inet6 addr:。。。。。。。“ 的表示開啟了ipv6功能
b)通過內核模塊加載信息查看
命令:lsmod | grep ipv6
2、ipv6關閉方法
在/etc/modprobe.d/dist.conf結尾添加
alias net-pf-10 off
alias ipv6 off
可用vi等編輯器,也可以通過命令:
cat <<EOF>>/etc/modprobe.d/dist.conf
alias net-pf-10 off
alias ipv6 off
EOF
寫改完畢重啟電腦。
方法二:
首先,在終端輸入 ip -6 addr show 和 lsmod | grep ipv6查詢一下有無安裝IPV6模塊,或用netstat -nuptl查看是否有ipv6的地址,如果有顯示,則說明未禁用IPV6協議,請按以下步驟操作:
一、vi /etc/modprobe.d/disable-ipv6.conf(名字隨便起)(RHEL6.0之后沒有了/etc/modprobe.conf這個文件)
輸入:install ipv6 /bin/true
[root@manager ~]# cd /etc/modprobe.d/
[root@manager modprobe.d]# cat ipv6.conf
install ipv6 /bin/true
二、vi /etc/sysconfig/network在最后增加一句:IPV6INIT=no
[root@manager ~]# cat /etc/sysconfig/network
NETWORKING=yes
IPV6INIT=no
三、禁用ipv6的iptables
chkconfig ip6tables off
四、重啟。
最后,在終端再次輸入開頭兩條命令來驗證IPV6協議禁用是否成功,此時應無任何內容。