From f1aa919181c066039a3022499de8076e523e3e7d Mon Sep 17 00:00:00 2001 From: Kevin Krakauer Date: Thu, 18 Jun 2020 13:05:14 -0700 Subject: [PATCH] Ensure ip6tables module installed This module isn't always loaded automatically. PiperOrigin-RevId: 317164471 --- scripts/iptables_tests.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/iptables_tests.sh b/scripts/iptables_tests.sh index 2a8c24907..8299a7c8b 100755 --- a/scripts/iptables_tests.sh +++ b/scripts/iptables_tests.sh @@ -18,6 +18,9 @@ source $(dirname $0)/common.sh make load-iptables +# Needed by ip6tables. +sudo modprobe ip6table_filter + install_runsc_for_test iptables --net-raw test //test/iptables:iptables_test "--test_arg=--runtime=runc" test //test/iptables:iptables_test "--test_arg=--runtime=${RUNTIME}"