Hi Victor and all Leaf friends, My Bering V1.1 is using several networks, two are dhcpd using :
#!/bin/sh # This shell script takes care of starting dhcpd. # Koon Wong <[EMAIL PROTECTED]>, June 1999 # Modified for linux 2.2 by Charles Steinkuehler, Jan 2000 RCDLINKS="2,S30 3,S30 6,K30" # Add interfaces, separated by a space (ie "eth0 eth1") # Typically your internal interface: eth1 for cable modems/DSL, or # eth0 for ppp/dialup ifs="eth1 eth2" <-------------------------------------------- It works well. Best Regards, Francois BERGERET, France. > -----Message d'origine----- > De : [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] la part de Victor > McAllister > Envoy� : jeudi 12 juin 2003 19:38 > � : leaf-user > Objet : [leaf-user] getting dhcpd to serve two networks > > > 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 > ------------------------------------------------------- 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
