Changes between Initial Version and Version 1 of disable IPv6

Show
Ignore:
Timestamp:
07/24/13 12:53:02 (11 years ago)
Author:
piontek
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • disable IPv6

    v1 v1  
     1To improve network efficiency disable IPv6 if you really do not need it: 
     2* add “NETWORKING_IPV6=no” in /etc/sysconfig/network file. 
     3{{{ 
     4#!div style="font-size: 90%" 
     5{{{#!sh 
     6echo “NETWORKING_IPV6=no” >> /etc/sysconfig/network 
     7}}} 
     8}}} 
     9* disable the ipv6 option in the kernel 
     10make *.conf file (e.g. ipv6.conf) ) under /etc/modprobe.d/ directory and add “options ipv6 disable=1” 
     11{{{ 
     12#!div style="font-size: 90%" 
     13{{{#!sh 
     14echo “options ipv6 disable=1” > /etc/modprobe.d/ipv6.conf 
     15}}} 
     16}}}