labs: make sysctl configuration survive reboots
Sysctl configuration set with "sysctl -w" does not survive reboots. Edit /etc/sysctl.conf instead (and reload file with sysctl -p). Change-Id: Icf0191774e0d1b8f65345cc980460ec8f86d7153
This commit is contained in:
parent
3f1ef07fdd
commit
36d5af85f4
@ -13,8 +13,13 @@ indicate_current_auto
|
||||
#------------------------------------------------------------------------------
|
||||
|
||||
echo "Disabling Reverse Path Forwarding filter (RFC 3704)."
|
||||
sudo sysctl -w "net.ipv4.conf.all.rp_filter=0"
|
||||
sudo sysctl -w "net.ipv4.conf.default.rp_filter=0"
|
||||
cat << SYSCTL | sudo tee -a /etc/sysctl.conf
|
||||
net.ipv4.conf.all.rp_filter=0
|
||||
net.ipv4.conf.default.rp_filter=0
|
||||
SYSCTL
|
||||
|
||||
# Reload changed file
|
||||
sudo sysctl -p
|
||||
|
||||
echo "Installing neutron for compute node."
|
||||
sudo apt-get install -y neutron-common neutron-plugin-ml2 \
|
||||
|
@ -12,9 +12,14 @@ indicate_current_auto
|
||||
#------------------------------------------------------------------------------
|
||||
|
||||
echo "Disabling Reverse Path Forwarding filter (RFC 3704)."
|
||||
sudo sysctl -w "net.ipv4.conf.all.rp_filter=0"
|
||||
sudo sysctl -w "net.ipv4.conf.default.rp_filter=0"
|
||||
sudo sysctl -w "net.ipv4.ip_forward=1"
|
||||
cat << SYSCTL | sudo tee -a /etc/sysctl.conf
|
||||
net.ipv4.conf.all.rp_filter=0
|
||||
net.ipv4.conf.default.rp_filter=0
|
||||
net.ipv4.ip_forward=1
|
||||
SYSCTL
|
||||
|
||||
# Reload changed file
|
||||
sudo sysctl -p
|
||||
|
||||
echo "Installing neutron for network node."
|
||||
sudo apt-get install -y neutron-common neutron-plugin-ml2 \
|
||||
|
Loading…
x
Reference in New Issue
Block a user