diff options
author | Richard Jones <rjones@redhat.com> | 2010-05-04 16:06:58 +0100 |
---|---|---|
committer | Richard Jones <rjones@redhat.com> | 2010-05-04 17:01:34 +0100 |
commit | fbf29976b33a69c64dc7847c54454bf2cfa5fde6 (patch) | |
tree | 0e09a387f08fcccee1ec04c023333c10d7305651 /appliance/init | |
parent | 8a9f2ca65521d093ac14307aca4370d9497ac840 (diff) | |
download | libguestfs-fbf29976b33a69c64dc7847c54454bf2cfa5fde6.tar.gz libguestfs-fbf29976b33a69c64dc7847c54454bf2cfa5fde6.tar.xz libguestfs-fbf29976b33a69c64dc7847c54454bf2cfa5fde6.zip |
Use link-local addresses between appliance and host (RHBZ#588763).
Diffstat (limited to 'appliance/init')
-rwxr-xr-x | appliance/init | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/appliance/init b/appliance/init index 15dab614..98538de2 100755 --- a/appliance/init +++ b/appliance/init @@ -52,8 +52,8 @@ hwclock -u -s # Set up the network. ifconfig lo 127.0.0.1 -ifconfig eth0 10.0.2.10 -route add default gw 10.0.2.2 +ifconfig eth0 169.254.2.10 +route add default gw 169.254.2.2 # Scan for LVM. modprobe dm_mod ||: |