17 lines
233 B
Bash
Executable File
17 lines
233 B
Bash
Executable File
#!/bin/bash
|
|
|
|
function echoerr {
|
|
>&2 echo $1
|
|
}
|
|
|
|
if [ -z $1 ]; then
|
|
echoerr "syntax:"
|
|
echoerr "# $0 <iface>"
|
|
exit 1
|
|
fi
|
|
|
|
iptables -t nat -A POSTROUTING -o $1 -j MASQUERADE
|
|
iptables -P FORWARD ACCEPT
|
|
sysctl -w net.ipv4.ip_forward=1
|
|
|