summaryrefslogtreecommitdiff
path: root/qemu-support/qemu-ifup
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2011-03-03 20:04:23 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2011-03-03 20:04:23 +0000
commit0470c81a224fc0a5c43f722c0fe6c73a97331af2 (patch)
tree495a99081db38f962e789e3333f63c39a7e71645 /qemu-support/qemu-ifup
parent6d162b3b70ca18ccf0f2dc1e8076fb0d7aa5d32a (diff)
2011-03-03 Joel Sherrill <joel.sherrill@oarcorp.com>
* qemu-ifup: VirtualBox uses 10.0.x.x for its eth0 so we need to switch to 10.1.x.x for things to work smoothly.
Diffstat (limited to 'qemu-support/qemu-ifup')
-rwxr-xr-xqemu-support/qemu-ifup2
1 files changed, 1 insertions, 1 deletions
diff --git a/qemu-support/qemu-ifup b/qemu-support/qemu-ifup
index 185d01e..0feb539 100755
--- a/qemu-support/qemu-ifup
+++ b/qemu-support/qemu-ifup
@@ -1,5 +1,5 @@
#!/bin/sh
TUN_DEV=$1
- TUN_HOST=10.0.2.2
+ TUN_HOST=10.1.2.2
/sbin/ifconfig $TUN_DEV $TUN_HOST
exit 0