From 61da709722ec244da1c3c7d4f1a8706f76687cb3 Mon Sep 17 00:00:00 2001 From: Matthew Booth Date: Wed, 27 Oct 2010 10:55:24 +0100 Subject: [PATCH] Fix networking in the appliance. Commit 4963be85 re-introduced networking to the appliance, but didn't configure the custom network the appliance expects since we switched to link local addressing. This patch configures QEMU to use the custom network again. Note that you still need to use guestfs_set_network (g, 1) to enable user networking. --- src/launch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/launch.c b/src/launch.c index 7f2f74c..047a1e1 100644 --- a/src/launch.c +++ b/src/launch.c @@ -491,7 +491,7 @@ guestfs__launch (guestfs_h *g) /* Enable user networking. */ if (g->enable_network) { add_cmdline (g, "-netdev"); - add_cmdline (g, "user,id=usernet"); + add_cmdline (g, "user,id=usernet,net=169.254.0.0/16"); add_cmdline (g, "-device"); add_cmdline (g, NET_IF ",netdev=usernet"); } -- 1.8.3.1