<?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: PXE installation server setup - guidelines please in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/pxe-installation-server-setup-guidelines-please/m-p/4020154#M28771</link>
    <description>&lt;!--!*#--&gt;In my experience, you can usually run an "unauthorized" DHCP server, but you need to do several things.&lt;BR /&gt;&lt;BR /&gt;Most important: notify the IT folks that you're doing this.  A misconfigured DHCP server can make everyone's life miserable.&lt;BR /&gt;&lt;BR /&gt;In the ISC DHCP server (e.g., as distributed by Red Hat) include the line&lt;BR /&gt;&lt;BR /&gt;not authoritative;&lt;BR /&gt;&lt;BR /&gt;within the scope you're serving.  That will prevent your DHCP server from sending DHCP NAK packets to legitimate clients of the other DHCP server.  Then, distribute addresses only to known MAC addresses.  For example:&lt;BR /&gt;&lt;BR /&gt;#&lt;BR /&gt;ddns-update-style interim;&lt;BR /&gt;ignore client-updates;&lt;BR /&gt;not authoritative;&lt;BR /&gt;&lt;BR /&gt;subnet 192.168.1.0 netmask 255.255.255.0 {&lt;BR /&gt;&lt;BR /&gt;# --- default gateway&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               "example";&lt;BR /&gt;        option domain-name              "example.com";&lt;BR /&gt;        option domain-name-servers      192.168.1.1, 192.168.2.1;&lt;BR /&gt;&lt;BR /&gt;        option time-offset              -18000; # Eastern Standard Time&lt;BR /&gt;&lt;BR /&gt;        default-lease-time 21600;&lt;BR /&gt;        max-lease-time 43200;&lt;BR /&gt;&lt;BR /&gt;        host pxeclient00 {&lt;BR /&gt;            fixed-address 192.168.1.100;&lt;BR /&gt;            hardware ethernet  00:C0:9F:18:B4:FE;&lt;BR /&gt;            next-server tftpserver;&lt;BR /&gt;            filename "linux-install/pxelinux.0";&lt;BR /&gt;        }&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;As the example shows, I use Peter Anvin's pxelinux.0 network boot loader in the next step.  There are further instructions at &lt;A href="http://syslinux.zytor.com/pxe.php" target="_blank"&gt;http://syslinux.zytor.com/pxe.php&lt;/A&gt; but his examples for dhcpd.conf don't include the&lt;BR /&gt;&lt;BR /&gt;not authoritative;&lt;BR /&gt;&lt;BR /&gt;line, and you MUST include that, or your IT folks will get out the pitchforks!&lt;BR /&gt;&lt;BR /&gt;Good luck.&lt;BR /&gt;</description>
    <pubDate>Tue, 19 Jun 2007 19:52:12 GMT</pubDate>
    <dc:creator>Stephen P. Schaefer</dc:creator>
    <dc:date>2007-06-19T19:52:12Z</dc:date>
    <item>
      <title>PXE installation server setup - guidelines please</title>
      <link>https://community.hpe.com/t5/operating-system-linux/pxe-installation-server-setup-guidelines-please/m-p/4020150#M28767</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I get a lot of Linux (Redhat &amp;amp; SUSE) installation requests.  I want to setup a PXE installation server. Please provide any links / docs to help me with this.&lt;BR /&gt;&lt;BR /&gt;There is a DHCP server which the IT folks maintain already.  I donot have any control or access ot it.  This DHCP server is used for the desktops.&lt;BR /&gt;&lt;BR /&gt;I know that the PXE installation server requires a DHCP server, can I set and use my own DHCP server?&lt;BR /&gt;&lt;BR /&gt;I donot want my DHCP server to cause any problem with the already existing one in the network.  How do I go about this.&lt;BR /&gt;&lt;BR /&gt;Please suggest.&lt;BR /&gt;Thanks &amp;amp; Regards,&lt;BR /&gt;</description>
      <pubDate>Thu, 14 Jun 2007 08:47:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/pxe-installation-server-setup-guidelines-please/m-p/4020150#M28767</guid>
      <dc:creator>GnanaShekar</dc:creator>
      <dc:date>2007-06-14T08:47:34Z</dc:date>
    </item>
    <item>
      <title>Re: PXE installation server setup - guidelines please</title>
      <link>https://community.hpe.com/t5/operating-system-linux/pxe-installation-server-setup-guidelines-please/m-p/4020151#M28768</link>
      <description>Shalom,&lt;BR /&gt;&lt;BR /&gt;I think PXE needs its own DHCP server but you can reserve a small address range and safely use it on a network that has DHCP server as well.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.linux-sxs.org/internet_serving/pxeboot.html" target="_blank"&gt;http://www.linux-sxs.org/internet_serving/pxeboot.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Thu, 14 Jun 2007 13:44:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/pxe-installation-server-setup-guidelines-please/m-p/4020151#M28768</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2007-06-14T13:44:53Z</dc:date>
    </item>
    <item>
      <title>Re: PXE installation server setup - guidelines please</title>
      <link>https://community.hpe.com/t5/operating-system-linux/pxe-installation-server-setup-guidelines-please/m-p/4020152#M28769</link>
      <description>&lt;!--!*#--&gt;You can re-use an existing DHCP server if you can configure it enough.&lt;BR /&gt;&lt;BR /&gt;RH comes with tools to set up a PXE-Boot server for installation or diskless-booting, which (after some poking) work reasonably well.&lt;BR /&gt;&lt;BR /&gt;Couple that with KickStart, and you're on your way to a very simple server building platform.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.stanford.edu/~alfw/PXE-Kickstart/PXE-Kickstart.html" target="_blank"&gt;http://www.stanford.edu/~alfw/PXE-Kickstart/PXE-Kickstart.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Not a bad document, lists most things.&lt;BR /&gt;&lt;BR /&gt;This 'dhcpd.conf' snippet is also of great value:&lt;BR /&gt;&lt;BR /&gt;class "pxeclients" {&lt;BR /&gt;    match if substring (option vendor-class-identifier, 0, 9) = "PXEClient";&lt;BR /&gt;    option vendor-class-identifier "PXEClient";&lt;BR /&gt;    vendor-option-space PXE;&lt;BR /&gt;&lt;BR /&gt;    # At least one of the vendor-specific PXE options must be set in&lt;BR /&gt;    # order for the client boot ROMs to realize that we are a PXE-compliant&lt;BR /&gt;    # server.  We set the MCAST IP address to 0.0.0.0 to tell the boot ROM&lt;BR /&gt;    # that we can't provide multicast TFTP (address 0.0.0.0 means no&lt;BR /&gt;    # address).&lt;BR /&gt;&lt;BR /&gt;    option PXE.mtftp-ip 0.0.0.0;&lt;BR /&gt;&lt;BR /&gt;    # This is the name of the file the boot ROMs should download.&lt;BR /&gt;    filename "pxelinux.0";&lt;BR /&gt;&lt;BR /&gt;    # This is the name of the server they should get it from.&lt;BR /&gt;    next-server 192.168.2.10;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;(from &lt;A href="http://logout.sh/computers/linux/netboot/" target="_blank"&gt;http://logout.sh/computers/linux/netboot/&lt;/A&gt; ).&lt;BR /&gt;&lt;BR /&gt;The 'match' and 'option vendor-class-identifier' lines are quite the thing.  They (or a combination of them) allow you to pick out a client doing a PXE-boot as against a normal client just wanting an address.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 14 Jun 2007 16:25:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/pxe-installation-server-setup-guidelines-please/m-p/4020152#M28769</guid>
      <dc:creator>Stuart Browne</dc:creator>
      <dc:date>2007-06-14T16:25:36Z</dc:date>
    </item>
    <item>
      <title>Re: PXE installation server setup - guidelines please</title>
      <link>https://community.hpe.com/t5/operating-system-linux/pxe-installation-server-setup-guidelines-please/m-p/4020153#M28770</link>
      <description>Setting up a PXE server isn't that difficult, but it does require a DHCP server and you will have problems if you put more than one DHCP server on your network. A DHCP client requests an IP with a broadcast and it takes the first answer it gets.&lt;BR /&gt;&lt;BR /&gt;For Red Hat you can get most of the benefit and none of the pain by using a network install CD and a kickstart file. I'm not sure what the SuSE equivalent is.</description>
      <pubDate>Thu, 14 Jun 2007 17:20:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/pxe-installation-server-setup-guidelines-please/m-p/4020153#M28770</guid>
      <dc:creator>Heironimus</dc:creator>
      <dc:date>2007-06-14T17:20:30Z</dc:date>
    </item>
    <item>
      <title>Re: PXE installation server setup - guidelines please</title>
      <link>https://community.hpe.com/t5/operating-system-linux/pxe-installation-server-setup-guidelines-please/m-p/4020154#M28771</link>
      <description>&lt;!--!*#--&gt;In my experience, you can usually run an "unauthorized" DHCP server, but you need to do several things.&lt;BR /&gt;&lt;BR /&gt;Most important: notify the IT folks that you're doing this.  A misconfigured DHCP server can make everyone's life miserable.&lt;BR /&gt;&lt;BR /&gt;In the ISC DHCP server (e.g., as distributed by Red Hat) include the line&lt;BR /&gt;&lt;BR /&gt;not authoritative;&lt;BR /&gt;&lt;BR /&gt;within the scope you're serving.  That will prevent your DHCP server from sending DHCP NAK packets to legitimate clients of the other DHCP server.  Then, distribute addresses only to known MAC addresses.  For example:&lt;BR /&gt;&lt;BR /&gt;#&lt;BR /&gt;ddns-update-style interim;&lt;BR /&gt;ignore client-updates;&lt;BR /&gt;not authoritative;&lt;BR /&gt;&lt;BR /&gt;subnet 192.168.1.0 netmask 255.255.255.0 {&lt;BR /&gt;&lt;BR /&gt;# --- default gateway&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               "example";&lt;BR /&gt;        option domain-name              "example.com";&lt;BR /&gt;        option domain-name-servers      192.168.1.1, 192.168.2.1;&lt;BR /&gt;&lt;BR /&gt;        option time-offset              -18000; # Eastern Standard Time&lt;BR /&gt;&lt;BR /&gt;        default-lease-time 21600;&lt;BR /&gt;        max-lease-time 43200;&lt;BR /&gt;&lt;BR /&gt;        host pxeclient00 {&lt;BR /&gt;            fixed-address 192.168.1.100;&lt;BR /&gt;            hardware ethernet  00:C0:9F:18:B4:FE;&lt;BR /&gt;            next-server tftpserver;&lt;BR /&gt;            filename "linux-install/pxelinux.0";&lt;BR /&gt;        }&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;As the example shows, I use Peter Anvin's pxelinux.0 network boot loader in the next step.  There are further instructions at &lt;A href="http://syslinux.zytor.com/pxe.php" target="_blank"&gt;http://syslinux.zytor.com/pxe.php&lt;/A&gt; but his examples for dhcpd.conf don't include the&lt;BR /&gt;&lt;BR /&gt;not authoritative;&lt;BR /&gt;&lt;BR /&gt;line, and you MUST include that, or your IT folks will get out the pitchforks!&lt;BR /&gt;&lt;BR /&gt;Good luck.&lt;BR /&gt;</description>
      <pubDate>Tue, 19 Jun 2007 19:52:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/pxe-installation-server-setup-guidelines-please/m-p/4020154#M28771</guid>
      <dc:creator>Stephen P. Schaefer</dc:creator>
      <dc:date>2007-06-19T19:52:12Z</dc:date>
    </item>
    <item>
      <title>Re: PXE installation server setup - guidelines please</title>
      <link>https://community.hpe.com/t5/operating-system-linux/pxe-installation-server-setup-guidelines-please/m-p/4020155#M28772</link>
      <description>the easiest one&lt;BR /&gt;&lt;A href="http://www.novell.com/coolsolutions/feature/19280.html" target="_blank"&gt;http://www.novell.com/coolsolutions/feature/19280.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Maaz</description>
      <pubDate>Wed, 04 Jul 2007 00:47:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/pxe-installation-server-setup-guidelines-please/m-p/4020155#M28772</guid>
      <dc:creator>Maaz</dc:creator>
      <dc:date>2007-07-04T00:47:38Z</dc:date>
    </item>
  </channel>
</rss>

