From 5d31b58c1b54d0d496f36d710bd04a3a17d40124 Mon Sep 17 00:00:00 2001 From: Hugo Trippaers Date: Mon, 30 Jul 2012 15:11:03 +0200 Subject: [PATCH] Disable IPv6 in the systemvm --- patches/systemvm/debian/config/etc/sysctl.conf | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/patches/systemvm/debian/config/etc/sysctl.conf b/patches/systemvm/debian/config/etc/sysctl.conf index 71b90f08d2a..7f945b0d4b1 100644 --- a/patches/systemvm/debian/config/etc/sysctl.conf +++ b/patches/systemvm/debian/config/etc/sysctl.conf @@ -40,3 +40,10 @@ net.ipv4.netfilter.ip_conntrack_max=1000000 net.ipv4.tcp_tw_reuse=1 net.ipv4.tcp_max_tw_buckets=1000000 net.core.somaxconn=1000000 + +# Disable IPv6 +net.ipv6.conf.all.disable_ipv6 = 1 +net.ipv6.conf.all.forwarding = 0 +net.ipv6.conf.all.accept_ra = 0 +net.ipv6.conf.all.accept_redirects = 0 +net.ipv6.conf.all.autoconf = 0