How do I get dhcpd to listen on eth1 and eth2

here is a clipping from my dhcpd.conf

dynamic-bootp-lease-length 604800;
max-lease-time 1209600;

subnet 192.168.1.0 netmask 255.255.255.0 {
   option routers 192.168.1.254;
   option domain-name "private.network";
   option domain-name-servers 192.168.1.254;
   range 192.168.1.10 192.168.1.100;

host victormc {
       hardware ethernet 00:a0:cc:d9:24:7b;
       fixed-address 192.168.1.1;
       }
}
subnet 192.168.2.0 netmask 255.255.255.0 {
   option routers 192.168.2.254;
   option domain-name "dmz.network";
   option domain-name-servers 192.168.1.254;
   range 192.168.2.8 192.168.2.10;

host penguin {
       hardware ethernet 00:a0:cc:d9:20:ff;
       fixed-address 192.168.2.7;
       }
}

when I start dhcpd it always says listening on eth1 only.

What am I doing wrong?

--
Victor McAllister




------------------------------------------------------- This SF.NET email is sponsored by: eBay Great deals on office technology -- on eBay now! Click here: http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5 ------------------------------------------------------------------------ leaf-user mailing list: [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/leaf-user SR FAQ: http://leaf-project.org/pub/doc/docmanager/docid_1891.html

Reply via email to