First page Back Continue Last page Overview Graphics
How – Setup Networking
Need to compile MASQUERADE and TUN/TAP drivers into host filesystem
Create a masquerading private network between the guest filesystem and the internet
- modprobe tun
- modprobe iptable_nat
- iptables -t nat -A POSTROUTING -o eth0 -j \ MASQUERADE
- echo 1 > /proc/sys/net/ipv4/ip_forward
Almost there!
Notes: