public inbox for kvm@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] make kvm service script use dhclient config
@ 2007-07-05 19:12 Ferry Huberts
       [not found] ` <468D428F.1040203-NbsvJix5b8QAvxtiuMwx3w@public.gmane.org>
  0 siblings, 1 reply; 3+ messages in thread
From: Ferry Huberts @ 2007-07-05 19:12 UTC (permalink / raw)
  To: kvm-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f

[-- Attachment #1: Type: text/plain, Size: 532 bytes --]

Hi list,

in order to make the kvm service script work with DHCP on FC6 I had to 
apply the following patch. Hope it's useful :-)


Ferry



--- kvm 2007-06-07 17:13:47.000000000 +0200
+++ /etc/init.d/kvm     2007-07-05 21:06:43.000000000 +0200
@@ -132,7 +132,7 @@
            pgrep dhclient >/dev/null 2>&1 || i=4
            sleep 1
        done
-        dhclient ${dst} >/dev/null 2>&1
+        dhclient -cf /etc/dhclient-${pif}.conf ${dst} >/dev/null 2>&1
     else
         get_ip_info ${src}
         ifconfig ${src} 0.0.0.0


[-- Attachment #2: patch.diff --]
[-- Type: text/x-patch, Size: 390 bytes --]

--- kvm 2007-06-07 17:13:47.000000000 +0200
+++ /etc/init.d/kvm     2007-07-05 21:06:43.000000000 +0200
@@ -132,7 +132,7 @@
            pgrep dhclient >/dev/null 2>&1 || i=4
            sleep 1
        done
-        dhclient ${dst} >/dev/null 2>&1
+        dhclient -cf /etc/dhclient-${pif}.conf ${dst} >/dev/null 2>&1
     else
         get_ip_info ${src}
         ifconfig ${src} 0.0.0.0

[-- Attachment #3: Type: text/plain, Size: 286 bytes --]

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/

[-- Attachment #4: Type: text/plain, Size: 186 bytes --]

_______________________________________________
kvm-devel mailing list
kvm-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
https://lists.sourceforge.net/lists/listinfo/kvm-devel

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] make kvm service script use dhclient config
       [not found] ` <468D428F.1040203-NbsvJix5b8QAvxtiuMwx3w@public.gmane.org>
@ 2007-07-08  8:56   ` Dor Laor
       [not found]     ` <64F9B87B6B770947A9F8391472E032160C99EAD2-yEcIvxbTEBqsx+V+t5oei8rau4O3wl8o3fe8/T/H7NteoWH0uzbU5w@public.gmane.org>
  0 siblings, 1 reply; 3+ messages in thread
From: Dor Laor @ 2007-07-08  8:56 UTC (permalink / raw)
  To: Ferry Huberts, kvm-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f

>Hi list,
>
>in order to make the kvm service script work with DHCP on FC6 I had to
>apply the following patch. Hope it's useful :-)
>
>
>Ferry
>
>
>
>--- kvm 2007-06-07 17:13:47.000000000 +0200
>+++ /etc/init.d/kvm     2007-07-05 21:06:43.000000000 +0200
>@@ -132,7 +132,7 @@
>            pgrep dhclient >/dev/null 2>&1 || i=4
>            sleep 1
>        done
>-        dhclient ${dst} >/dev/null 2>&1
>+        dhclient -cf /etc/dhclient-${pif}.conf ${dst} >/dev/null 2>&1
>     else
>         get_ip_info ${src}
>         ifconfig ${src} 0.0.0.0

I didn't see any /etc/dhclient-* files in my FC6.
What the problem are you solving?
I know there is a problem (don't rememeber the distribution) that when
you run dhclient, 
it runs both on the bridge and on the physical interface. It that it?

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] make kvm service script use dhclient config
       [not found]     ` <64F9B87B6B770947A9F8391472E032160C99EAD2-yEcIvxbTEBqsx+V+t5oei8rau4O3wl8o3fe8/T/H7NteoWH0uzbU5w@public.gmane.org>
@ 2007-07-08  9:33       ` Ferry Huberts
  0 siblings, 0 replies; 3+ messages in thread
From: Ferry Huberts @ 2007-07-08  9:33 UTC (permalink / raw)
  To: Dor Laor, kvm-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f

Dor Laor wrote:
>> Hi list,
>>
>> in order to make the kvm service script work with DHCP on FC6 I had to
>> apply the following patch. Hope it's useful :-)
>>
>>
>> Ferry
>>
>>
>>
>> --- kvm 2007-06-07 17:13:47.000000000 +0200
>> +++ /etc/init.d/kvm     2007-07-05 21:06:43.000000000 +0200
>> @@ -132,7 +132,7 @@
>>            pgrep dhclient >/dev/null 2>&1 || i=4
>>            sleep 1
>>        done
>> -        dhclient ${dst} >/dev/null 2>&1
>> +        dhclient -cf /etc/dhclient-${pif}.conf ${dst} >/dev/null 2>&1
>>     else
>>         get_ip_info ${src}
>>         ifconfig ${src} 0.0.0.0
>>     
>
> I didn't see any /etc/dhclient-* files in my FC6.
> What the problem are you solving?
> I know there is a problem (don't rememeber the distribution) that when
> you run dhclient, 
> it runs both on the bridge and on the physical interface. It that it?
>
>   
in my setup the dhcp client would run only on the kvm bridge and the
hostname as I set up for the original network interface would not get
sent to the dhcp server and would thus not land in my dns server. maybe
this is a bit of a shortcut but the bridge must in some way use the same
dhcp configuration as for the 'pif' it is replacing I think.

as far as i now, the /etc/dhclient-* files are generated when you have
the DHCP_HOSTNAME variable set in /etc/sysconfig/network-script/ifcfg-*,
so maybe I should first check for presence of the file before using
it.... but it work for me :-)

about running the dhcp client twice...
I think I've seen this happen but am not really sure. at the time I
thought that the dhcp client didn't get properly shutdown/killed by the
kvm script. the script needs to find the correct dhcp client (the one
that is running of the 'pif') and shutdown that client. maybe this fails?

hope this clarifies things



-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2007-07-08  9:33 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-07-05 19:12 [PATCH] make kvm service script use dhclient config Ferry Huberts
     [not found] ` <468D428F.1040203-NbsvJix5b8QAvxtiuMwx3w@public.gmane.org>
2007-07-08  8:56   ` Dor Laor
     [not found]     ` <64F9B87B6B770947A9F8391472E032160C99EAD2-yEcIvxbTEBqsx+V+t5oei8rau4O3wl8o3fe8/T/H7NteoWH0uzbU5w@public.gmane.org>
2007-07-08  9:33       ` Ferry Huberts

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox