OS/Linux

TCP6 disable

아르비스 2016. 7. 5. 15:08

TCP6 와 TCP가 있어서 곤란한 상황이 되었다.


ipv6로 인하여, port 할당이 잘 못될 수 있다.

'

이런경우 ipv6를 다음과 같이 disable 해 준다.


# vi /etc/sysctl.conf


# IPV6 disabled

net.ipv6.conf.all.disable_ipv6 = 1

net.ipv6.conf.default.disable_ipv6 = 1

net.ipv6.conf.lo.disable_ipv6 = 1




적용

# sysctl -p


#service network restart


그외 기타 방법


# vi /etc/sysctl.conf  :  net.ipv6.conf.all.disable_ipv6 = 1

# vi  /etc/sysconfig/network  : NETWORKING_IPV6=no

# vi /etc/sysconfig/network-scripts/ifcfg-eth0 : IPV6INIT=”no”

# disable iptables6 – chkconfig –level 345 ip6tables off

reboot