mirror of https://github.com/apache/cloudstack.git
systemvm: Load modules to support NAT traversal in VR (#4777)
Load necessary modules so that VPN connection works properly
This commit is contained in:
parent
40d93af16c
commit
dab7d29bb2
|
|
@ -99,6 +99,9 @@ setup_router() {
|
|||
if [ -f /etc/cron.daily/logrotate ]; then
|
||||
mv -n /etc/cron.daily/logrotate /etc/cron.hourly 2>&1
|
||||
fi
|
||||
|
||||
# Load modules to support NAT traversal in VR
|
||||
modprobe nf_nat_pptp
|
||||
}
|
||||
|
||||
routing_svcs
|
||||
|
|
|
|||
|
|
@ -112,6 +112,9 @@ EOF
|
|||
if [ -f /etc/cron.daily/logrotate ]; then
|
||||
mv -n /etc/cron.daily/logrotate /etc/cron.hourly 2>&1
|
||||
fi
|
||||
|
||||
# Load modules to support NAT traversal in VR
|
||||
modprobe nf_nat_pptp
|
||||
}
|
||||
|
||||
routing_svcs
|
||||
|
|
|
|||
Loading…
Reference in New Issue