首页 > Web开发 > 详细

Disable Linux IPv6 Networking

时间:2014-08-05 11:40:29      阅读:430      评论:0      收藏:0      [点我收藏+]
bubuko.com,布布扣On most of the Linux distribution IPv6 is enabled by default, which may cause your internet is workding slow, so If your network do not supportor do not setup IPv6 network, you should better to disable IPv6 protocal in linux system and it maybe increate your web browsing speed or network security. So How do I to disable IPv6 on linux operating system? this article will give you a guide for disabling IPv6 networking( linux disable ipv6):

What Is IPv6?

Internet Protocol version 6 (IPv6) is the latest version of the Internet Protocol (IP), the communications protocol that provides an identification and location system for computers on networks and routes traffic across the Internet. IPv6 was developed by the Internet Engineering Task Force (IETF) to deal with the long-anticipated problem of IPv4 address exhaustion.

How To Check If IPv6 is Enable Or Disable

There are two ways to check if IPv6 is disabled shown as below:

1.Run the “ifconfig” command to check

1 [root@devops ~]# ifconfig
2 eth0      Link encap:Ethernet  HWaddr 00:0C:29:6B:2E:53  
3           inet addr:192.168.1.104  Bcast:192.168.1.255  Mask:255.255.255.0
4           inet6 addr: fe80::20c:29ff:fe6b:2e53/64 Scope:Link
5           UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
6           RX packets:345052 errors:0 dropped:0 overruns:0 frame:0
7           TX packets:26332 errors:0 dropped:0 overruns:0 carrier:0
8           collisions:0 txqueuelen:1000
9           RX bytes:97309231 (92.8 MiB)  TX bytes:4735894 (4.5 MiB)
10  
11 lo        Link encap:Local Loopback  
12           inet addr:127.0.0.1  Mask:255.0.0.0
13           inet6 addr: ::1/128 Scope:Host
14           UP LOOPBACK RUNNING  MTU:16436  Metric:1
15           RX packets:0 errors:0 dropped:0 overruns:0 frame:0
16           TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
17           collisions:0 txqueuelen:0
18           RX bytes:0 (0.0 b)  TX bytes:0 (0.0 b)

You can check the above line if containing “inet6 addr”, If yes, you machine is running IPv6 service.

2.check “disable_ipv6″ file to check if IPv6 is disabled,enter:

1 [root@devops ~]# cat /proc/sys/net/ipv6/conf/all/disable_ipv6
2 0

if you get “0″ value, it means that IPv6 is enabled and “1″ means it is disabled.

How to Disable IPv6 in linux system?

You need to add the following lines at the end of “/etc/sysctl.conf” file:

Edit file /etc/sysctl.conf, enter the following command:

1 [root@devops ~]# vim /etc/sysctl.conf

Adding the below lines into that file:

1 net.ipv6.conf.all.disable_ipv6 = 1
2 net.ipv6.conf.default.disable_ipv6 = 1
3 net.ipv6.conf.lo.disable_ipv6 = 1

Save and close that file, then restart sysctl with the following command:

1 [root@devops ~]# sysctl -p

Now you can rerun the “ifconfig” command to check if IPv6 lines have been removed.

1 [root@devops ~]# ifconfig
2 eth0      Link encap:Ethernet  HWaddr 00:0C:29:6B:2E:53  
3           inet addr:192.168.1.104  Bcast:192.168.1.255  Mask:255.255.255.0
4           UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
5           RX packets:346874 errors:0 dropped:0 overruns:0 frame:0
6           TX packets:26428 errors:0 dropped:0 overruns:0 carrier:0
7           collisions:0 txqueuelen:1000
8           RX bytes:97600047 (93.0 MiB)  TX bytes:4747254 (4.5 MiB)
9  
10 lo        Link encap:Local Loopback  
11           inet addr:127.0.0.1  Mask:255.0.0.0
12           UP LOOPBACK RUNNING  MTU:16436  Metric:1
13           RX packets:0 errors:0 dropped:0 overruns:0 frame:0
14           TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
15           collisions:0 txqueuelen:0
16           RX bytes:0 (0.0 b)  TX bytes:0 (0.0 b)

Done!

See Also: IPv6 or IPv4  


Disable Linux IPv6 Networking,布布扣,bubuko.com

Disable Linux IPv6 Networking

原文:http://my.oschina.net/u/1756504/blog/298024

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!