Skip to content

Commit

Permalink
fix iptables
Browse files Browse the repository at this point in the history
  • Loading branch information
Dustin Blackman committed Mar 6, 2018
1 parent fc887c1 commit c60f83f
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 c60f83f

Please sign in to comment.