우분투 인터페이스 ipv6  비활성화

Interface ipv6 끄는 방법.

 

1. On Ubuntu (10.04/10.10/11.04), launch the terminal and issue this command to check whether IPv6 is enabled or not:

cat /proc/sys/net/ipv6/conf/all/disable_ipv6

0 --> Enabled
1 --> Disabled

 

 

2. To disable IPv6, we need to edit the 'sysctl.conf' file. So, via the terminal, issue this command:

gksudo gedit /etc/sysctl.conf

Then add these four lines:

# IPv6
net.ipv6.conf.all.disable_ipv6 = 1
net.ipv6.conf.default.disable_ipv6 = 1
net.ipv6.conf.lo.disable_ipv6 = 1

sysctl -p 실행

 

ipv6를 끄면 인터넷 조금 더 빨라지는 것을 확인 할 수 있다.

 

 

참조url : http://www.upubuntu.com/2011/05/how-to-disable-ipv6-under-ubuntu.html

http://blog.saltfactory.net/m/post/view/id/70

 

 

 

by 초보인척 2013. 3. 15. 13:50