<?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: DHCP server problem in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/dhcp-server-problem/m-p/4874059#M45133</link>
    <description>Useful info from Thomas Bianco.&lt;BR /&gt;Setup Eth0 as internal interface and Eth1 as external interface.</description>
    <pubDate>Tue, 07 Dec 2004 21:26:21 GMT</pubDate>
    <dc:creator>NiCK_76</dc:creator>
    <dc:date>2004-12-07T21:26:21Z</dc:date>
    <item>
      <title>DHCP server problem</title>
      <link>https://community.hpe.com/t5/operating-system-linux/dhcp-server-problem/m-p/4874056#M45130</link>
      <description>I have dhcp server on sles8 box. 2 nic , one for internet and another one for intranet. Dhcpd service is running. But I can get ipaddress form client box. What's wrong?&lt;BR /&gt;My dhcpd.conf as following:&lt;BR /&gt;option domain-name "heming.org";&lt;BR /&gt;option domain-name-servers 211.167.97.200, 211.167.97.67;&lt;BR /&gt;option routers 192.168.0.254;&lt;BR /&gt;ddns-update-style none;&lt;BR /&gt;default-lease-time 600;&lt;BR /&gt;max-lease-time 7200;&lt;BR /&gt;&lt;BR /&gt;log-facility local7;&lt;BR /&gt;subnet 221.137.12.0 netmask 255.255.252.0 {&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;subnet 192.168.0.0 netmask 255.255.255.0 {&lt;BR /&gt;  range 192.168.0.100 192.168.0.200;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;Result of ifconfig&lt;BR /&gt;eth0      Link encap:Ethernet  HWaddr 00:40:05:43:CB:22  &lt;BR /&gt;          inet addr:221.137.12.173  Bcast:255.255.255.255  Mask:255.255.252.0&lt;BR /&gt;          inet6 addr: fe80::240:5ff:fe43:cb22/64 Scope:Link&lt;BR /&gt;          UP BROADCAST NOTRAILERS RUNNING MULTICAST  MTU:1500  Metric:1&lt;BR /&gt;          RX packets:115033 errors:0 dropped:0 overruns:0 frame:0&lt;BR /&gt;          TX packets:22620 errors:0 dropped:0 overruns:0 carrier:0&lt;BR /&gt;          collisions:592 txqueuelen:100 &lt;BR /&gt;          RX bytes:30584325 (29.1 Mb)  TX bytes:9187164 (8.7 Mb)&lt;BR /&gt;          Interrupt:12 Base address:0xe000 &lt;BR /&gt;&lt;BR /&gt;eth1      Link encap:Ethernet  HWaddr 00:E0:4C:10:48:B8  &lt;BR /&gt;          inet addr:192.168.0.254  Bcast:192.168.0.255  Mask:255.255.255.0&lt;BR /&gt;          inet6 addr: fe80::2e0:4cff:fe10:48b8/64 Scope:Link&lt;BR /&gt;          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1&lt;BR /&gt;          RX packets:23469 errors:0 dropped:0 overruns:0 frame:0&lt;BR /&gt;          TX packets:27182 errors:0 dropped:0 overruns:0 carrier:0&lt;BR /&gt;          collisions:0 txqueuelen:100 &lt;BR /&gt;          RX bytes:9377984 (8.9 Mb)  TX bytes:25206296 (24.0 Mb)&lt;BR /&gt;          Interrupt:10 Base address:0xb000 &lt;BR /&gt;&lt;BR /&gt;lo        Link encap:Local Loopback  &lt;BR /&gt;          inet addr:127.0.0.1  Mask:255.0.0.0&lt;BR /&gt;          inet6 addr: ::1/128 Scope:Host&lt;BR /&gt;          UP LOOPBACK RUNNING  MTU:16436  Metric:1&lt;BR /&gt;          RX packets:0 errors:0 dropped:0 overruns:0 frame:0&lt;BR /&gt;          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0&lt;BR /&gt;          collisions:0 txqueuelen:0 &lt;BR /&gt;          RX bytes:0 (0.0 b)  TX bytes:0 (0.0 b)&lt;BR /&gt;</description>
      <pubDate>Mon, 06 Dec 2004 09:35:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/dhcp-server-problem/m-p/4874056#M45130</guid>
      <dc:creator>NiCK_76</dc:creator>
      <dc:date>2004-12-06T09:35:41Z</dc:date>
    </item>
    <item>
      <title>Re: DHCP server problem</title>
      <link>https://community.hpe.com/t5/operating-system-linux/dhcp-server-problem/m-p/4874057#M45131</link>
      <description>It would be interesting to see what dhcpd logs to the syslog on startup.&lt;BR /&gt;&lt;BR /&gt;However, I think your dhcpd looks a little bit empty.   Here's mine for comparison.&lt;BR /&gt;I am using Dynamic DNS updates and support RIS installs via a M$ RIS server so It's a bit complex but I hope it will help.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;ddns-update-style ad-hoc;&lt;BR /&gt;ddns-domainname "blah.is";&lt;BR /&gt;authoritative;&lt;BR /&gt;pid-file-name "/var/run/dhcp.pid";&lt;BR /&gt;&lt;BR /&gt;subnet 10.1.0.0 netmask 255.255.0.0 {&lt;BR /&gt;        authoritative;&lt;BR /&gt;        ddns-update-style ad-hoc;&lt;BR /&gt;        ddns-domainname "blah.is";&lt;BR /&gt;        option domain-name "blah.is";&lt;BR /&gt;        option domain-name-servers 10.1.1.12, 10.1.1.8;&lt;BR /&gt;        option routers 10.1.254.254;&lt;BR /&gt;        option subnet-mask 255.255.0.0;&lt;BR /&gt;        option broadcast-address 10.1.255.255;&lt;BR /&gt;        option time-offset 0;&lt;BR /&gt;        option ntp-servers 10.1.1.8, 10.1.1.12;&lt;BR /&gt;        default-lease-time 604800;&lt;BR /&gt;        max-lease-time 2592000;&lt;BR /&gt;        range 10.1.11.1 10.1.11.254;&lt;BR /&gt;        filename "oschooser\\i386\\startrom.com";&lt;BR /&gt;        next-server 10.1.1.58;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;zone blah.is. {&lt;BR /&gt;        primary 10.1.1.12;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;zone 11.1.10.in-addr.arpa. {&lt;BR /&gt;        primary 10.1.1.12;&lt;BR /&gt;}&lt;BR /&gt;</description>
      <pubDate>Tue, 07 Dec 2004 01:06:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/dhcp-server-problem/m-p/4874057#M45131</guid>
      <dc:creator>Richard Allen</dc:creator>
      <dc:date>2004-12-07T01:06:41Z</dc:date>
    </item>
    <item>
      <title>Re: DHCP server problem</title>
      <link>https://community.hpe.com/t5/operating-system-linux/dhcp-server-problem/m-p/4874058#M45132</link>
      <description>noticed your External facing interface is Eth0, and yout internal interface is Eth1, this is the reverse of triditional, as you want errant services to speak inwards first. &lt;BR /&gt;&lt;BR /&gt;i'd grab me up a copy of ethereal and listen for DHCP traffic on the client. if you can't see the server sending a respose, then it might be pointing to the wrong interface. &lt;BR /&gt;&lt;BR /&gt;been a long time since i set up a DHCP server on linux, so i might be missing something here.&lt;BR /&gt;</description>
      <pubDate>Tue, 07 Dec 2004 09:37:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/dhcp-server-problem/m-p/4874058#M45132</guid>
      <dc:creator>Thomas Bianco</dc:creator>
      <dc:date>2004-12-07T09:37:57Z</dc:date>
    </item>
    <item>
      <title>Re: DHCP server problem</title>
      <link>https://community.hpe.com/t5/operating-system-linux/dhcp-server-problem/m-p/4874059#M45133</link>
      <description>Useful info from Thomas Bianco.&lt;BR /&gt;Setup Eth0 as internal interface and Eth1 as external interface.</description>
      <pubDate>Tue, 07 Dec 2004 21:26:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/dhcp-server-problem/m-p/4874059#M45133</guid>
      <dc:creator>NiCK_76</dc:creator>
      <dc:date>2004-12-07T21:26:21Z</dc:date>
    </item>
  </channel>
</rss>

