diff options
Diffstat (limited to 'scripts/poky-qemu-ifup')
-rwxr-xr-x | scripts/poky-qemu-ifup | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/poky-qemu-ifup b/scripts/poky-qemu-ifup index 5cf48d7b8..d68e64c28 100755 --- a/scripts/poky-qemu-ifup +++ b/scripts/poky-qemu-ifup @@ -25,3 +25,8 @@ if [ "x$IFCONFIG" = "x" ]; then fi $IFCONFIG tap0 192.168.7.1 + +# setup NAT for tap0 interface to have internet access in QEMU +iptables -A POSTROUTING -t nat -j MASQUERADE -s 192.168.7.0/24 +echo 1 > /proc/sys/net/ipv4/ip_forward +iptables -P FORWARD ACCEPT |