LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Networking (https://www.linuxquestions.org/questions/linux-networking-3/)
-   -   creation of dhcpd.conf file (https://www.linuxquestions.org/questions/linux-networking-3/creation-of-dhcpd-conf-file-610780/)

gannurajput 01-03-2008 04:43 AM

creation of dhcpd.conf file
 
can u help to configure sample dhcpd.conf file , and steps need to create virtual interface in this

win32sux 01-03-2008 06:35 AM

Quote:

Originally Posted by gannurajput (Post 3009521)
can u help to configure sample dhcpd.conf file

Here's a working example:
Code:

ddns-update-style none;
subnet 192.168.3.0 netmask 255.255.255.0 {
      option routers 192.168.3.1;
      option subnet-mask 255.255.255.0;
      option domain-name "example.net";
      option domain-name-servers 192.168.3.1;
      option broadcast-address 192.168.3.255;
      range 192.168.3.101 192.168.3.171;
      default-lease-time 43200;
      max-lease-time 86400;
      }

Quote:

and steps need to create virtual interface in this
I haven't a clue. I'm sure someone else knows, though.

ARC1450 01-03-2008 02:45 PM

Could you describe this virtual interface you speak of? I've not seen anything about it, but I'm far from highly informed on DHCPD.


All times are GMT -5. The time now is 03:33 AM.