From b806f726b1db2cb605869c1022ef727c1110255b Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Mon, 12 Dec 2011 13:35:15 +0000 Subject: scripts/runqemu-ifup: Ensure netmask is set correctly Without this the command will add a route for the subnet 192.168.7.0 which means multiple qemu instances can't operate correctly since all but the last one will be masked out. (From OE-Core rev: 9e00d6b343120496ec0dd72240c7b04e0a8b7eaa) Signed-off-by: Richard Purdie --- scripts/runqemu-ifup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/runqemu-ifup b/scripts/runqemu-ifup index 870cb6bcb7..3bd9980ad0 100755 --- a/scripts/runqemu-ifup +++ b/scripts/runqemu-ifup @@ -94,7 +94,7 @@ if [ ! -x "$IPTABLES" ]; then fi n=$[ (`echo $TAP | sed 's/tap//'` * 2) + 1 ] -$IFCONFIG $TAP 192.168.7.$n +$IFCONFIG $TAP 192.168.7.$n netmask 255.255.255.255 dest=$[ (`echo $TAP | sed 's/tap//'` * 2) + 2 ] $ROUTE add -host 192.168.7.$dest $TAP -- cgit v1.2.3-54-g00ecf