Hi,

On Mon, 4 Feb 2008, Brian Richardson wrote:

...snip...

My dhcpd.conf is as follows:

--
shared-network LOCAL-NET {
  option domain-name "example.org";
  option domain-name-servers 192.168.1.1;

  subnet 192.168.1.0 netmask 255.255.255.0 {
      option routers 192.168.1.1;
      range 192.168.1.32 192.168.1.127;
  }

  host laptop {
      hardware ethernet 00:de:ad:be:ef:00;
      fixed-address 192.168.1.10;
  }
}

shared-network WIRELESS-NET {
  option domain-name "example.org";
  option domain-name-servers 192.168.1.1;

  subnet 192.168.2.0 netmask 255.255.255.0 {
      option routers 192.168.2.1;
      range 192.168.2.32 192.168.2.127;
  }

  host laptop-wireless {
      hardware ethernet 11:de:ad:be:ef:11;
      fixed-address 192.168.2.10;
  }
}
--

.... snup ....

Did you try using one shared-network with two different subnets? You can
find an example within man dhcpd.conf.

Regards

Stefan Kell

Reply via email to