今天发现redhat6下 curl wappaygw.alipay.com 反应慢,在centos5下瞬间就可以看到代码了最后找到答案原来是ipv6的问题。
redhat6禁用ipv6的方法:
1、新建任意文件 vi /etc/modprobe.d/disable-ipv6.conf(redhat6.0之后没有了/etc/modprobe.conf文件)
然后输入:install ipv6 /bin/true 后保存退出。
2、vi /etc/sysconfig/network
新增一行:IPV6INIT=no
3、禁用ipv6的iptables
在终端运行:chkconfig ip6tables off
4、重启。