mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-24 08:52:31 +02:00
14 lines
270 B
Bash
Executable File
14 lines
270 B
Bash
Executable File
#!/bin/bash
|
|
|
|
/init.sh
|
|
|
|
if [ ! -e /dev/net/tun ]; then
|
|
mkdir -p /dev/net
|
|
mknod /dev/net/tun c 10 200
|
|
chmod 600 /dev/net/tun
|
|
fi
|
|
|
|
iptables -t nat -A POSTROUTING -s ${VPN_NETWORK}/${VPN_NETMASK} -j MASQUERADE
|
|
|
|
exec ocserv -c /etc/ocserv/ocserv.conf -f -d 1 "$@"
|