summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorroot <root@bergwerk>2011-07-08 06:34:05 +0000
committerroot <root@bergwerk>2011-07-08 06:35:26 +0000
commit615f11da5f781e817d016afebed8ac26ed6c83e7 (patch)
treecfbb60d2deaaaf9ff400a612d19abfcef90b9287
parenta754e3b290201f354f273628f65d811ca943c15a (diff)
masquerade wlan0, eth2
-rwxr-xr-xmining/user/bin/ensure-router2
1 files changed, 2 insertions, 0 deletions
diff --git a/mining/user/bin/ensure-router b/mining/user/bin/ensure-router
index 987ed5b1..ec78f610 100755
--- a/mining/user/bin/ensure-router
+++ b/mining/user/bin/ensure-router
@@ -12,6 +12,8 @@ if ! ifconfig $if | grep -q 'inet addr'; then
beep -l 50 -f 2500; ifconfig $if 0.0.0.0 down || :
beep -l 50 -f 2500; ifconfig $if 23.0.0.1/8 up || :
beep -l 50 -f 2500; /etc/init.d/dnsmasq restart
+ beep -l 50 -f 2500; iptables -t nat -A POSTROUTING -o wlan0 -j MASQUERADE
+ beep -l 50 -f 2500; iptables -t nat -A POSTROUTING -o eth2 -j MASQUERADE
if ifconfig $if | grep -q 'inet addr'; then
beep -l 50 -f 2500 -n -l 100 -f 3000
else