<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: multiple subnets multiple dhcp ranges in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/multiple-subnets-multiple-dhcp-ranges/m-p/4951024#M81111</link>
    <description>. Stuart's post helped a lot.</description>
    <pubDate>Tue, 30 Nov 2010 20:19:42 GMT</pubDate>
    <dc:creator>Matt Shaffer_1</dc:creator>
    <dc:date>2010-11-30T20:19:42Z</dc:date>
    <item>
      <title>multiple subnets multiple dhcp ranges</title>
      <link>https://community.hpe.com/t5/operating-system-linux/multiple-subnets-multiple-dhcp-ranges/m-p/4951020#M81107</link>
      <description>I need to add a 2nd dhcp range and it is in a different subnet.  I've tried to edit /etc/dhcpd.conf and also adding through webmin.  The 2nd range isn't working though.  I'm sure I'm missing something but I can't find it anywhere.</description>
      <pubDate>Mon, 09 Jan 2006 17:00:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/multiple-subnets-multiple-dhcp-ranges/m-p/4951020#M81107</guid>
      <dc:creator>Matt Shaffer_1</dc:creator>
      <dc:date>2006-01-09T17:00:19Z</dc:date>
    </item>
    <item>
      <title>Re: multiple subnets multiple dhcp ranges</title>
      <link>https://community.hpe.com/t5/operating-system-linux/multiple-subnets-multiple-dhcp-ranges/m-p/4951021#M81108</link>
      <description>Dumb comment first.  The DHCP server has to have an interface in each subnet.&lt;BR /&gt;&lt;BR /&gt;Now, I'm assuming you've got this already, so we'll look at the finer points of dhcpd configs.  Here's a quick example of a multi-subnet dhcpd.conf:&lt;BR /&gt;&lt;BR /&gt;ddns-update-style interim;&lt;BR /&gt;ignore client-updates;&lt;BR /&gt;&lt;BR /&gt;subnet 10.1.1.0 netmask 255.255.255.0 {&lt;BR /&gt;&lt;BR /&gt;# --- default gateway&lt;BR /&gt;        option routers                  10.1.1.254;&lt;BR /&gt;        option subnet-mask              255.255.255.0;&lt;BR /&gt;&lt;BR /&gt;        option nis-domain               "domain.com";&lt;BR /&gt;        option domain-name              "domain.com";&lt;BR /&gt;        option domain-name-servers      10.1.1.254;&lt;BR /&gt;&lt;BR /&gt;        option time-offset              -18000; # Eastern Standard Time&lt;BR /&gt;        option ntp-servers              10.1.1.254;&lt;BR /&gt;        option netbios-name-servers     10.1.1.254;&lt;BR /&gt;&lt;BR /&gt;        range dynamic-bootp 10.1.1.1 10.1.1.253;&lt;BR /&gt;        default-lease-time 21600;&lt;BR /&gt;        max-lease-time 43200;&lt;BR /&gt;}&lt;BR /&gt;subnet 192.168.1.0 netmask 255.255.255.0 {&lt;BR /&gt;&lt;BR /&gt;        option routers                  192.168.1.254;&lt;BR /&gt;        option subnet-mask              255.255.255.0;&lt;BR /&gt;&lt;BR /&gt;        option nis-domain               "domain.com";&lt;BR /&gt;        option domain-name              "domain.com";&lt;BR /&gt;        option domain-name-servers      192.168.1.254;&lt;BR /&gt;&lt;BR /&gt;        option time-offset              -18000; # Eastern Standard Time&lt;BR /&gt;        option ntp-servers              192.168.1.254;&lt;BR /&gt;        option netbios-name-servers     192.168.1.254;&lt;BR /&gt;&lt;BR /&gt;        range dynamic-bootp 192.168.1.2 192.168.1.252;&lt;BR /&gt;        default-lease-time 21600;&lt;BR /&gt;        max-lease-time 43200;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;Just to let you know, this is what I use at home.  The .254 IP in each block is the local machine's IP address on that subnet.</description>
      <pubDate>Mon, 09 Jan 2006 20:26:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/multiple-subnets-multiple-dhcp-ranges/m-p/4951021#M81108</guid>
      <dc:creator>Stuart Browne</dc:creator>
      <dc:date>2006-01-09T20:26:55Z</dc:date>
    </item>
    <item>
      <title>Re: multiple subnets multiple dhcp ranges</title>
      <link>https://community.hpe.com/t5/operating-system-linux/multiple-subnets-multiple-dhcp-ranges/m-p/4951022#M81109</link>
      <description>Actually, I misspoke.&lt;BR /&gt;&lt;BR /&gt;You don't need an interface on the other subnet, you just need to be able to route to it.&lt;BR /&gt;&lt;BR /&gt;Thus allowing you to DHCP-Relay from remote locations where you're nowhere near the subnet.</description>
      <pubDate>Mon, 09 Jan 2006 20:31:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/multiple-subnets-multiple-dhcp-ranges/m-p/4951022#M81109</guid>
      <dc:creator>Stuart Browne</dc:creator>
      <dc:date>2006-01-09T20:31:29Z</dc:date>
    </item>
    <item>
      <title>Re: multiple subnets multiple dhcp ranges</title>
      <link>https://community.hpe.com/t5/operating-system-linux/multiple-subnets-multiple-dhcp-ranges/m-p/4951023#M81110</link>
      <description>If your DHCP server does not have an interface directly connected to the other subnet, you need a DHCP relay agent on that subnet.&lt;BR /&gt;&lt;BR /&gt;Can you describe your network, an ASCII diagram could help.</description>
      <pubDate>Tue, 10 Jan 2006 06:49:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/multiple-subnets-multiple-dhcp-ranges/m-p/4951023#M81110</guid>
      <dc:creator>Ivan Ferreira</dc:creator>
      <dc:date>2006-01-10T06:49:30Z</dc:date>
    </item>
    <item>
      <title>Re: multiple subnets multiple dhcp ranges</title>
      <link>https://community.hpe.com/t5/operating-system-linux/multiple-subnets-multiple-dhcp-ranges/m-p/4951024#M81111</link>
      <description>. Stuart's post helped a lot.</description>
      <pubDate>Tue, 30 Nov 2010 20:19:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/multiple-subnets-multiple-dhcp-ranges/m-p/4951024#M81111</guid>
      <dc:creator>Matt Shaffer_1</dc:creator>
      <dc:date>2010-11-30T20:19:42Z</dc:date>
    </item>
  </channel>
</rss>

