#!/bin/sh
iptables -t nat -A POSTROUTING -o tun0 -s 172.16.0.0/24 -j MASQUERADE
iptables -A FORWARD -i eth0 -o tun0 -j ACCEPT
iptables -t nat -A POSTROUTING -o ath0 -s 172.16.0.0/24 -j MASQUERADE
iptables -A FORWARD -i eth0 -o ath0 -j ACCEPT
/usr/sbin/ntpclient -s -c 3 -i 5 -g 1000000 -h 192.168.0.254 

