Skip to content

Commit

Permalink
Merge pull request #6 from samos123/master
Browse files Browse the repository at this point in the history
Support interfaces with name other than eth0
  • Loading branch information
pszalko committed Jun 16, 2016
2 parents b6dae24 + cf9ca69 commit ccaffef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ service rsyslog start
sysctl -w net.ipv4.ip_forward=1

# configure firewall
iptables -t nat -A POSTROUTING -s 10.99.99.0/24 -o eth0 -j MASQUERADE
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

exec "$@"

0 comments on commit ccaffef

Please sign in to comment.