简体   繁体   中英

what I need to do when change from ipv4 to ipv6

I have web server apache , nginx that running on centos , I want to change it to ipv6 .

I found the below url .

https://unix.stackexchange.com/quest...-on-centos-6-2

I just would like to confirm all thing that I need to do is just add/update the below to network config file ? no need to install any module for it ?

"
IPV6INIT=yes
IPV6ADDR=XXXX:C810:300100::3/56
IPV6_DEFAULTGW=XXXX:C810:300100::1
DNS3=2620:0:ccc::2
DNS4=2620:0:ccD::2 
"

Furthermore , I use apache , PHP , mysql , nginx etc , is there anything that I need to do ?

thanks

(i) To enable ipv6 in nginx, need to add only one line.

listen [::]:80;

80 is the port on which nginx is running.

(ii) For apache add listen directive as following in httpd.conf

Listen [ipv6 value]:80

For better understanding, please refer following link. https://geekflare.com/enable-ipv6-nginx-apache/

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM