第一步,修改 /etc/modprobe.d/disable_ipv6.conf
cp /etc/modprobe.d/disable_ipv6.conf /etc/modprobe.d/disable_ipv6.conf_backup ##先備份原始配置
vi /etc/modprobe.d/disable_ipv6.conf
options ipv6 disable=0
第二步,修改 /etc/sysconfig/networkcp /etc/sysconfig/network /etc/sysconfig/network_backup #備份
vi /etc/sysconfig/network
peerntp
=nonetworking_ipv6
=yes
gateway
=139.255
.255
.0
第三步,修改 /etc/sysctl.confcp /etc/sysctl.conf /etc/sysctl.conf_backup #備份
vi /etc/sysctl.conf
net.ipv6.conf.all.disable_ipv6 =
0net.ipv6.conf.
default
.disable_ipv6 =
0net.ipv6.conf.lo.disable_ipv6 =
0
第四步,修改 /etc/sysconfig/network-scripts/ifcfg-eth0cp /etc/sysconfig/network-scripts/ifcfg-eth0 /etc/sysconfig/network-scripts/ifcfg-eth0_backup #備份
vi /etc/sysconfig/network-scripts/ifcfg-eth0
ipv6init
="yes"
ipv6_autoconf
="yes"
ipv6_defroute
="yes"
ipv6_failure_fatal
="no"
ipv6_addr_gen_mode
="stable-privacy"
ipv6addr
=2001
:250
:4000
:2000::
53 #重要
ipv6_defaultgw
=2001
:250
:4000
:2000::
1#重要
最後一步,建立系統在啟動時自動載入 ipv6 模組的指令碼vi /etc/sysconfig/modules/ipv6.modules
!/bin/sh
if [ ! -c /proc/net/if_inet6 ] ; then
exec /sbin/insmod /lib/modules/uname -r/kernel/net/ipv6/ipv6.ko
fi
重啟系統,載入 ipv6 模組reboot
ifconfig |grep -i inet6
inet6 2001
:250
:4000
:2000::
53 prefixlen 64 scopeid 0x0
inet6 fe80:
:afb4:
6574
:86eb:
880 prefixlen 64 scopeid 0x20
inet6 :
:1 prefixlen 128 scopeid 0x10
如何在CentOS 7上安裝和配置Nginx
sudo yum install epel release現在nginx儲存庫已經安裝在您的伺服器上,使用以下yum命令安裝nginx sudo yum install nginx在對提示回答yes後,nginx將在伺服器上完成安裝。nginx不會自行啟動。要執行nginx,請輸入 sudo sys...
如何在CentOS 7上安裝Nginx
要新增centos 7 epel倉庫,請開啟終端並使用以下命令 sudo yum install epel release現在nginx儲存庫已經安裝在您的伺服器上,使用以下yum命令安裝nginx sudo yum install nginx在對提示回答yes後,nginx將在伺服器上完成安裝。n...
如何在CentOS 7上安裝Apache
apache http伺服器是世界上最流行的web伺服器。它是一款免費的開源和跨平台的http伺服器,提供強大的功能,可以通過各種模組進行擴充套件。以下說明介紹如何在centos 7機器上安裝和管理apache web伺服器。安裝apache apache在預設的centos倉庫中可用,安裝非常簡單...