|
Config DHCPD for non-direct connected subnet
Hi,
Trying to config DHCPD to serve DHCP relay request for non-direct connected subnet on RH9.0
[root@localhost root]# rpm -aq | grep dhcp
dhcp-3.0pl1-23
[root@localhost root]# cat /etc/dhcpd.conf
# Sample /etc/dhcpd.conf
# (add your comments here)
default-lease-time 600;
max-lease-time 7200;
option subnet-mask 255.255.255.0;
option broadcast-address 192.168.1.255;
option routers 192.168.1.254;
option domain-name-servers 192.168.1.1, 192.168.1.2;
option domain-name "mydomain.org";
subnet 192.168.1.0 netmask 255.255.255.0 {
range 192.168.1.10 192.168.1.100;
range 192.168.1.150 192.168.1.200;
}
ddns-update-style none;
[root@localhost root]# ifconfig | grep inet
inet addr:10.80.18.104 Bcast:10.80.18.255 Mask:255.255.255.0
inet addr:10.116.1.215 Bcast:10.255.255.255 Mask:255.255.255.192
Is there any option to achieve this? Any clue?
Regards,
Desmond
|