This is a discussion on dhcp question? anyone.... - Linux ; hello all - I have two networks: 192.168.33.0/24 on eth1 192.168.20.0/24 on eth2 How can I enable my dhcpd.conf file to have two subnet stated. I have a firewall which seperates the traffic but no IP are being assigned via ...
hello all -
I have two networks:
192.168.33.0/24 on eth1
192.168.20.0/24 on eth2
How can I enable my dhcpd.conf file to have two subnet stated. I have
a firewall which seperates the traffic but no IP are being assigned
via my eth2 interface? Here is my dhcpd.conf file.
--- dhcpd.conf ---
ddns-update-style ad-hoc;
group {
option routers 192.168.33.1;
option subnet-mask 255.255.255.0;
option domain-name-servers 192.168.33.1;
subnet 192.168.33.0 netmask 255.255.255.0 {
range dynamic-bootp 192.168.33.101 192.168.33.200;
}
default-lease-time 21600;
max-lease-time 43200;
}
group {
option routers 192.168.20.1;
option subnet-mask 255.255.255.0;
option domain-name-servers 192.168.20.1;
subnet 192.168.20.0 netmask 255.255.255.0 {
range dynamic-bootp 192.168.20.101 192.168.20.200;
}
default-lease-time 21600;
max-lease-time 43200;
}
Is this rite?
Thanks,
hallian