|
From: Serge L. <fi...@in...> - 2008-03-06 10:46:14
|
Frank Weis wrote:
> Hi again,
>
> let me explain the problem I experience:
>
> I have two ranges on my dhcp server, that should be distributed to clients on
> the two vlans:
>
> shared-network LAN {
I'm sorry, but is the line above really present in your dhcpd.conf file ?
I suppose the config should be similar the following:
--------------------------------------------------
max-lease-time 72000;
default-lease-time 60000;
subnet 192.168.123.0 netmask 255.255.255.0 {
range 192.168.123.50 192.168.123.100;
option broadcast-address 192.168.123.255;
option domain-name "ebac";
option routers 192.168.123.1;
}
subnet 10.0.0.0 netmask 255.255.0.0 {
range 10.0.0.100 10.0.0.200;
option broadcast-address 10.0.255.255;
option domain-name "lan";
option routers 10.0.0.1;
}
--------------------------------------------------
> subnet 192.168.123.0 netmask 255.255.255.0 {
> range 192.168.123.50 192.168.123.100;
> default-lease-time 60000;
> max-lease-time 72000;
> option broadcast-address 192.168.123.255;
> option domain-name "ebac";
> option routers 192.168.123.1;
> }
>
> subnet 10.0.0.0 netmask 255.255.0.0 {
> range 10.0.0.100 10.0.0.200;
> default-lease-time 60000;
> max-lease-time 72000;
> option broadcast-address 10.0.255.255;
> option domain-name "lan";
> option routers 10.0.0.1;
> }
> }
>
--
Sincerely,
Serge Leschinsky
|