<html>
  <head>
    <meta content="text/html; charset=ISO-8859-1"
      http-equiv="Content-Type">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    <div class="moz-cite-prefix">What I really want to do is setup
      something like this:<br>
      <br>
      On server:<br>
      <br>
      option my_remote_server code 224 = text;<br>
      option my_remote_server = "aspiration";<br>
      <br>
      On client:<br>
      request my_remote_server;<br>
      <br>
      But this does not work for me.<br>
      <br>
      I must be doing something wrong.<br>
      <br>
      thanks for your help<br>
      L.K<br>
      <br>
      <br>
      On 02/19/2013 05:31 PM, Neff, Glen wrote:<br>
    </div>
    <blockquote
      cite="mid:F061F650C47E134C86F9605C5F44EE5F1753CA1DAB@MX23A.corp.emc.com"
      type="cite">
      <meta http-equiv="Content-Type" content="text/html;
        charset=ISO-8859-1">
      <meta name="Generator" content="Microsoft Exchange Server">
      <!-- converted from text -->
      <style><!-- .EmailQuote { margin-left: 1pt; padding-left: 4pt; border-left: #800000 2px solid; } --></style>
      <span style="font-family:Calibri,Arial,Helvetica,sans-serif;
        font-size:11pt; color:black">I think the option you want is
        next-server.<br>
        <br>
        -G<br>
        <br>
        Sent from my Droid phone.  Please excuse any typos, brevity, or
        carbon scoring.<br>
        <br>
        <span style="color:black">-----Original Message----- <br>
          <b>From:</b> Laxmikant Rashinkar [<a class="moz-txt-link-abbreviated" href="mailto:lk@thinlinx.com">lk@thinlinx.com</a>]<br>
          <b>Received:</b> Tuesday, 19 Feb 2013, 18:59<br>
          <b>To:</b> <a class="moz-txt-link-abbreviated" href="mailto:dhcp-users@lists.isc.org">dhcp-users@lists.isc.org</a> [<a class="moz-txt-link-abbreviated" href="mailto:dhcp-users@lists.isc.org">dhcp-users@lists.isc.org</a>]<br>
          <b>Subject:</b> Re: ISC DHCP site specific options<br>
          <br>
        </span></span>
      <font size="2">
        <div class="PlainText">Hi Shawn,<br>
          <br>
          thanks for your feedback.<br>
          <br>
          In my isc dhcp server dhcpd.conf file I have this line:<br>
          <br>
          option tftp-server-name "192.168.1.64";<br>
          <br>
          and in my isc dhcp client dhclient.conf file I have this line:<br>
          <br>
          request subnet-mask, broadcast-address, time-offset, routers,<br>
                   domain-name, domain-name-servers, domain-search,
          host-name,<br>
                   netbios-name-servers, netbios-scope, interface-mtu,<br>
                   rfc3442-classless-static-routes, ntp-servers,
          tftp-server-name;<br>
          <br>
          When I successfully run /sbin/dhclient on my debian system,<br>
          I don't see anything about a tftp server in my environment<br>
          variables.<br>
          <br>
          Am I doing something wrong?<br>
          <br>
          thanks for your help.<br>
          L.K<br>
          <br>
          On 02/15/2013 04:47 PM, Shawn Routhier wrote:<br>
          > For the ISC DHCP client the option information is
          presented to the<br>
          > system by setting environment variables and then calling
          a script<br>
          > to process them.  In the ISC tarball the example/default
          scripts<br>
          > are found in client/scripts.  Where the client looks for
          the script<br>
          > can be controlled by compile time configuration or by use
          of the<br>
          > "-sf" argument on the command line.<br>
          ><br>
          > You may want or need to use the "request" or "also
          request" statements<br>
          > to the client runtime configuration file to get the
          server to send the desired<br>
          > options.<br>
          ><br>
          > Shawn<br>
          ><br>
          ><br>
          > On Feb 15, 2013, at 3:13 PM, Laxmikant Rashinkar wrote:<br>
          ><br>
          >> Thank you James.<br>
          >><br>
          >> Now, let's say I modify dhcpd.conf and add site
          specific options that provide an FTP server IP addr (i.e
          option 161) and a FTP Server directory (i.e option 162).<br>
          >><br>
          >> How would I read these values in a Linux DHCP client?<br>
          >><br>
          >> thanks for your help.<br>
          >> L.K<br>
          >><br>
          >> On 02/15/2013 11:43 AM, James Jalbert wrote:<br>
          >>> Not sure if this is what you are looking for, but
          site options are set in the dhcpd.conf file. Here you can tell
          the server what to give for routers based on subnet, name
          server and so on. I have inclided some snips of my config for
          you to see.<br>
          >>><br>
          >>> option domain-name-servers 192.168.1.1, 8.8.8.8,
          10.10.1.6;<br>
          >>> option domain-search "mydomain", "oher domain";<br>
          >>><br>
          >>> # Subnet A<br>
          >>> subnet 192.168.1.0 netmask 255.255.248.0 {<br>
          >>>      option routers 192.168.1.1;<br>
          >>><br>
          >>> # Subnet B<br>
          >>> subnet 192.168.2.0 netmask 255.255.248.0 {<br>
          >>>      option routers 192.168.2.1;<br>
          >>> ...<br>
          >>><br>
          >>> Hope this helps you.<br>
          >>><br>
          >>> James Jalbert<br>
          >>> Network Administrator<br>
          >>> Eastern Aroostook RSU #39<br>
          >>> Phone: 207-493-4246<br>
          >>> E-Mail: <a class="moz-txt-link-abbreviated" href="mailto:jjalbert@rsu39.org">jjalbert@rsu39.org</a><br>
          >>><br>
          >>><br>
          >>><br>
          >>>>>> Laxmikant Rashinkar
          <a class="moz-txt-link-rfc2396E" href="mailto:lk@thinlinx.com"><lk@thinlinx.com></a> 2/15/2013 2:37 PM >>><br>
          >>> Hi,<br>
          >>><br>
          >>> I'm hoping someone can help me with this issue
          because I was not able to<br>
          >>> find anything via google.<br>
          >>><br>
          >>> I'm using ISC DHCP server on a Linux 32bit
          system.<br>
          >>><br>
          >>> 1) How do I configure site specific options?<br>
          >>><br>
          >>> 2) when a Linux client successfully gets a DHCP
          address from this<br>
          >>> server, where can I find the site specific
          options received from the<br>
          >>> DHCP server (or how do I parse them)<br>
          >>><br>
          >>> thanks for your help<br>
          >>> L.K<br>
        </div>
      </font></blockquote>
    <br>
  </body>
</html>