Disable Linux IPv6 Networking

來源:互聯網
上載者:User

標籤:des   style   http   color   os   io   strong   for   

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 [[email protected] ~]# 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  


聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.