I'm trying to disable IPv4 on a system I'm working on to check how a project interacts over purely IPv6. Does anyone know the following:
How to disable IPv4 (and verify that it is indeed disabled)
Check that IPv6 is enabled
I'm trying to disable IPv4 on a system I'm working on to check how a project interacts over purely IPv6. Does anyone know the following:
How to disable IPv4 (and verify that it is indeed disabled)
Check that IPv6 is enabled
/etc/NetworkManager/system-connections/– Rinzwind Feb 03 '17 at 18:47GRUB_CMDLINE_LINUX_DEFAULT="ipv6.disable=1". I do not know, nor have I tested, if the other way around also works, i.e.GRUB_CMDLINE_LINUX_DEFAULT="ipv4.disable=1"– Doug Smythies Feb 03 '17 at 22:42