Disable Linux IPv6 Networking

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  


转载于:https://my.oschina.net/u/1756504/blog/298024

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值