5/26/2012

RHEL 5, 6 Disable IPv6

 

  1. 檢查IPv6目前是否有載入了.

    [root@rh6 ~]# lsmod | egrep 'ipv6'
    [root@rh6 ~]# ip addr show | egrep 'inet6'


  2. 編輯 conf 檔..有3個方法達成同樣的效果. (no-ipv6.conf 檔要自己建立)

    方法1:
    [root@rh6 ~]# cat /etc/modprobe.d/no-ipv6.conf
    alias net-pf-10 off
    alias ipv6 off

    方法2:
    [root@rh6 ~]# cat /etc/modprobe.d/no-ipv6.conf
    install ipv6 /bin/true

    方法3:
    [root@rh6 ~]# cat /etc/modprobe.d/no-ipv6.conf
    options ipv6 disable=1

  3. 編輯 /etc/sysconfig/network

    [root@rh6 ~]# cat /etc/sysconfig/network
    NETWORKING=yes
    HOSTNAME=xxooxp.blogspot.com
    GATEWAY=172.16.1.254
    NETWORKING_IPV6=off

  4. 關閉 ip6tables

    [root@rh6 ~]# service ip6tables stop
    [root@rh6 ~]# chkconfig ip6tables off

  5. 重新開機,讓設定生效.

    [root@rh6 ~]# shutdown –r now

  6. 確認重開機後,ipv6 就不會載入了.

    [root@rh6 ~]# lsmod | egrep 'ipv6'
    [root@rh6 ~]# ip addr show | egrep 'inet6'

沒有留言: