I'm doing some IPv6 related testing, and I wanted to fully disable my IPv4 for the tests on Linux, but couldn't find any easy place to do this. How do I make my IPv6 the only active one?
3 Answers
If you are using Network Manager, click on in and select 'Edit Connections'. Then edit the default connection (or the one you are using) and look under the 'IPv4 Settings' tab. There should be a dropdown for method where you can select 'Disabled'.
Remember to activate it when you're finished testing.
If you're not using Network Manager, this command should do the trick:
ip address del <address>/<netmask> dev <device>
For example:
ip address del 10.0.0.2/24 dev eth0
-
Of course, this doesn't disable IPv4 completly, just on the interface. You'll still have v4 on loopback (lo), but I'm not sure that can be disabled without problems. – mboehn May 13 '11 at 22:41
-
1Depending on exactly what you're testing, a simpler method yet might be to just drop your IPv4 route to the default GW. – BMDan May 14 '11 at 00:40
If you edit the /etc/modprobe.d/aliases
file and change the following, it should work:
alias net-pf-2 ipv4
to:
alias net-pf-2 off

- 235
- 1
- 9

- 1,211
- 1
- 8
- 10
imho the best way to do this is to simply not configure an IPv4 address. Additionally you can choose to disable arp:
ip addr del <ipv4 address>/CIDR dev ethN
(operational example: "ip addr del 192.168.0.1/24 dev eth0")
ip link set dev eth0 arp off
I do this on some boxes that should be only reachable via IPv6 for administative purposes (ssh) - boxes that should not be using the routable Internet for anything else. One such example is a database server that uses an IPv6 ULA via OpenVPN so that only internal hosts can connect to it.

- 1,699
- 3
- 14
- 21