RHEL: Difference between revisions

From JoeHacker
(Created page with 'Simple tricks for RHEL that are common to me. == Disable ipv6 == RHEL 5.4 has an easy way to disable ipv6. The other methods don't work when the iscsi driver is loaded. To disab…')
 
Line 4: Line 4:
RHEL 5.4 has an easy way to disable ipv6. The other methods don't work when the iscsi driver is loaded. To disable:
RHEL 5.4 has an easy way to disable ipv6. The other methods don't work when the iscsi driver is loaded. To disable:


  echo “options ipv6 disable=1″ > /etc/modprobe.d/disable-ipv6
  echo "options ipv6 disable=1" > /etc/modprobe.d/disable-ipv6


http://planet.admon.org/2009/09/how-to-disable-the-ipv6-protocol/
http://planet.admon.org/2009/09/how-to-disable-the-ipv6-protocol/

Revision as of 14:05, 10 October 2009

Simple tricks for RHEL that are common to me.

Disable ipv6

RHEL 5.4 has an easy way to disable ipv6. The other methods don't work when the iscsi driver is loaded. To disable:

echo "options ipv6 disable=1" > /etc/modprobe.d/disable-ipv6

http://planet.admon.org/2009/09/how-to-disable-the-ipv6-protocol/

Links

http://planet.admon.org/2009/09/how-to-disable-the-ipv6-protocol/ - How to disable the IPv6 protocol?