1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-28 17:51:24 +00:00
dockerfiles/ocserv/docker-entrypoint.sh

14 lines
270 B
Bash
Raw Normal View History

2016-06-28 20:35:26 +00:00
#!/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
2016-06-29 08:30:45 +00:00
exec ocserv -c /etc/ocserv/ocserv.conf -f -d 1 "$@"