7 lines
126 B
Bash
Executable File
7 lines
126 B
Bash
Executable File
#!/bin/bash
|
|
|
|
iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE
|
|
iptables -P FORWARD ACCEPT
|
|
sysctl -w net.ipv4.ip_forward=1
|
|
|