Skip to content

Commit

Permalink
Merge pull request #17 from dustinblackman/master
Browse files Browse the repository at this point in the history
fix iptables
  • Loading branch information
pszalko committed Mar 13, 2018
2 parents fc887c1 + c60f83f commit 326e3cf
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,9 @@ sysctl -w net.ipv4.ip_forward=1
# configure firewall
iptables -t nat -A POSTROUTING -s 10.99.99.0/24 ! -d 10.99.99.0/24 -j MASQUERADE
iptables -A FORWARD -s 10.99.99.0/24 -p tcp -m tcp --tcp-flags FIN,SYN,RST,ACK SYN -j TCPMSS --set-mss 1356
iptables -A INPUT -i ppp0 -j ACCEPT
iptables -A OUTPUT -o ppp0 -j ACCEPT
iptables -A FORWARD -i ppp0 -j ACCEPT
iptables -A FORWARD -o ppp0 -j ACCEPT

exec "$@"

0 comments on commit 326e3cf

Please sign in to comment.