ubuntu綁定IPV6方法 |
很過國外服務(wù)器支持IPV6,但是在交付的時(shí)候都沒有綁定,需要自己去綁定, 首先要讓服務(wù)器支持IPV6,開放IPV6功能,開放后然后測(cè)試下,是否支持IPV6,通過ping6去查看 先運(yùn)行前面的連段文字,第一個(gè)中間有個(gè)Y選項(xiàng),記得人工確認(rèn)下 最后一個(gè)是ping IPV6的方法,可以IPV4基本一致,多了6。 sudo apt-get install miredo sudo apt install net-tools ping6 ipv6.google.com 然后是綁定IP地址,找到IPV6地址、Mask 和網(wǎng)關(guān)、分兩次操作即可 ifconfig eth0 inet6 add 2a05:9403::f7/32 route -A inet6 add default gw 2a05:9403::1 有的服務(wù)商沒有走真正的IPv6通道,是包裝后走的IPV4通道,那么需要關(guān)閉這個(gè)功能,最直接的就是看服務(wù)器路由,有2個(gè)路由,就有可能是這個(gè)情況,需要關(guān)閉miredo,運(yùn)行第二文字,就可以了 sudo service miredo start sudo service miredo stop 可以測(cè)試下aws和ali的IPV6 ping6 2408:400a:11b:a800:30ac:8d8a:a446:a871 Ping6 2600:1f14:907:c400:6cf8:209f:24ed:422e
查看服務(wù)器默認(rèn)走的線路 安裝curl:sudo apt install curl -y Curl ip.sb 查看防火墻狀態(tài):service iptables status 和 service ip6tables status 關(guān)閉防火墻:service iptables stop 和 sevice ip6tables stop |