From 9734d9d7fa4da3d92ee4b3ca08b2471fcca93fb0 Mon Sep 17 00:00:00 2001 From: Bob Lantz Date: Wed, 6 Mar 2013 16:06:59 -0800 Subject: [PATCH] Add configuration to disable IPv6, since old method no longer works. fixes #108 --- util/sysctl_addon | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/util/sysctl_addon b/util/sysctl_addon index e26eecc..43b57f3 100644 --- a/util/sysctl_addon +++ b/util/sysctl_addon @@ -15,3 +15,8 @@ net.ipv4.neigh.default.gc_thresh3 = 16384 # Mininet: increase routing table size net.ipv4.route.max_size=32768 + +# Mininet: disable IPv6 +net.ipv6.conf.all.disable_ipv6 = 1 +net.ipv6.conf.default.disable_ipv6 = 1 +net.ipv6.conf.lo.disable_ipv6 = 1