make bridge-nf configurations persistent

This PS makes bridge-nf configuration persisten as part of
setup_gate.sh

Change-Id: Ic8a4f231d277716152dfe029e1961f165a7dec11
Signed-off-by: Sreejith Punnapuzha <Sreejith.Punnapuzha@outlook.com>
This commit is contained in:
Sreejith Punnapuzha 2019-05-29 14:45:59 -05:00
parent 45e558a580
commit 7cc586af44
1 changed files with 6 additions and 5 deletions

View File

@ -95,11 +95,12 @@ if [[ ! -d ${VIRSH_POOL_PATH} ]]; then
fi
log_stage_header "Disabling br_netfilter"
br_netfilter_files=('bridge-nf-call-arptables' 'bridge-nf-call-iptables' 'bridge-nf-call-ip6tables')
for br_netfilter_file in "${br_netfilter_files[@]}"
do
sudo sh -c "(echo "0" > /proc/sys/net/bridge/${br_netfilter_file})"
done
cat << EOF | sudo tee /etc/sysctl.d/60-bridge.conf
net.bridge.bridge-nf-call-ip6tables = 0
net.bridge.bridge-nf-call-iptables = 0
net.bridge.bridge-nf-call-arptables = 0
EOF
sudo sysctl -p /etc/sysctl.d/60-bridge.conf
if [[ ${REQUIRE_RELOG} -eq 1 ]]; then
echo