dhcp-agent-devel Mailing List for dhcp-agent
Status: Alpha
Brought to you by:
actmodern
You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: <ben...@id...> - 2004-05-22 12:06:25
|
Dear Open Source developer I am doing a research project on "Fun and Software Development" in which I kindly invite you to participate. You will find the online survey under http://fasd.ethz.ch/qsf/. The questionnaire consists of 53 questions and you will need about 15 minutes to complete it. With the FASD project (Fun and Software Development) we want to define the motivational significance of fun when software developers decide to engage in Open Source projects. What is special about our research project is that a similar survey is planned with software developers in commercial firms. This procedure allows the immediate comparison between the involved individuals and the conditions of production of these two development models. Thus we hope to obtain substantial new insights to the phenomenon of Open Source Development. With many thanks for your participation, Benno Luthiger PS: The results of the survey will be published under http://www.isu.unizh.ch/fuehrung/blprojects/FASD/. We have set up the mailing list fa...@we... for this study. Please see http://fasd.ethz.ch/qsf/mailinglist_en.html for registration to this mailing list. _______________________________________________________________________ Benno Luthiger Swiss Federal Institute of Technology Zurich 8092 Zurich Mail: benno.luthiger(at)id.ethz.ch _______________________________________________________________________ |
From: Thamer Al-H. <tm...@wh...> - 2003-07-08 17:28:41
|
dhcp-agent-0.40 errata --------------------- The sysconf dns configuration has a bug in it. The /etc/resolv.conf is not truncated when written to. This will be fixed in the next release. Here's a patch to dhcp-agent-0.40 cd conf/dhcp-client patch < /path/to/patch file Index: default.sysconf =================================================================== RCS file: /cvsroot/dhcp-agent/dhcp-agent/conf/dhcp-client/default.sysconf,v retrieving revision 1.1 diff -C3 -r1.1 default.sysconf *** default.sysconf 5 Jul 2003 19:30:51 -0000 1.1 --- default.sysconf 8 Jul 2003 17:23:43 -0000 *************** *** 69,75 **** (lambda () (if (do-configure) ! (let ((resolv-conf-file-port (open "/etc/resolv.conf" O_WRONLY 0644))) (client-info-message "configuring resolver") (map-in-order (lambda (dns-server) --- 69,75 ---- (lambda () (if (do-configure) ! (let ((resolv-conf-file-port (open "/etc/resolv.conf" (logior O_WRONLY O_TRUNC) 0644))) (client-info-message "configuring resolver") (map-in-order (lambda (dns-server) -- Thamer Al-Harbash |
From: Steve W. <pa...@qu...> - 2003-05-13 23:19:23
|
Hi All, I am not subscribed, so please cc to me, or reply-all, thanks. How do I class-out by MAC address list into multiple dynamic pools ? IPs issued must be dynamic. # /etc/dhcpd.conf # /this/ list of MAC addresess go in class foo ; class "foo" { match if substring (option something_unknown) = "{list-foo}"; } # this /other/ list of MAC addresses go in class bar ; class "bar" { match if substring (option something_unknown) = "{list-bar}"; } # add another class later.. #class "other" { # match if substring (option something_unknown) = "{list-bar}"; # } # and then ; shared-network CLIENTS { subnet 192.168.0.0 netmask 255.255.255.0 { pool { allow members of "foo"; range dynamic-bootp 192.168.0.101 192.168.0.253; } pool { allow members of "bar"; range dynamic-bootp 192.168.0.60 192.168.0.100; } } # and then the other fixed stuff host dumbass { hardware ethernet 00:40:95:33:13:19; fixed-address 192.168.0.1; } Connecting/booting clients get put in appropriate subnet. ... or some other method of allocating IPs on the local LAN interface. Clients are generic and unknown, MAC address is known (registered by hand / web-site). If I have to run dhcpd as a slave off some back-end (MySQL / RADIUS) I would consider that too. TIA, /steve |