![]() ![]() ![]() |
|
SumnerBoy: Tried updating my /etc/network/interfaces to;
auto eth0
iface eth0 inet static
address 192.168.1.100
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.1.255
gateway 192.168.1.1
post-up echo 1 > /proc/sys/net/ipv4/ip_forward
post-up iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE
post-down iptables -t nat -D POSTROUTING -o eth0 -j MASQUERADE
i.e. the same as yours (I think) but still no good.
# Uncomment the next line to enable packet forwarding for IPv4#net.ipv4.ip_forward=1
As it says, uncomment the 2nd one, and then force a re-read with
|
![]() ![]() ![]() |