Jeremy,Hope this helps in finding answers.Best Regards,Bas# DHCP
configuration file for DHCP ISC 3.0 & BpBatch
#

# Global options
option subnet-mask 255.255.255.0;
default-lease-time -1;

# Definition of PXE-specific options
# Code 1: Multicast IP address of bootfile
# Code 2: UDP port that client should monitor for MTFTP responses
# Code 3: UDP port that MTFTP servers are using to listen for MTFTP requests
# Code 4: Number of secondes a client must listen for activity before trying
#         to start a new MTFTP transfer
# Code 5: Number of secondes a client must listen before trying to restart
#         a MTFTP transfer
option space PXE;
option PXE.mtftp-ip    code 1 = ip-address;
option PXE.mtftp-cport code 2 = unsigned integer 16;
option PXE.mtftp-sport code 3 = unsigned integer 16;
option PXE.mtftp-tmout code 4 = unsigned integer 8;
option PXE.mtftp-delay code 5 = unsigned integer 8;

# Subnet-specific options
subnet 192.168.1.0 netmask 255.255.255.0 {
  option routers 192.168.1.1;

# Host specific options
  host pctest {
        hardware ethernet 00:01:02:03:04:05;
        filename "bpbatch.P";
        next-server 192.168.1.2;
        fixed-address 192.168.1.100;
        # BpBatch command-line argument : -i == interactive
        # You can also specify a script name (do not include the
        # trailing .bpb extension)
        option option-135 "-i";
        # PXE specific options
        class "pxeclients"
        {
         match if substring (option vendor-class-identifier, 0, 9) =
                "PXEClient";
         option vendor-class-identifier "PXEClient";
         # At least one of the vendor-specific option must be set. We set
         # the MCAST IP address to 0.0.0.0 to tell the bootrom to still use
         # TFTP (address 0.0.0.0 is considered as "no address")
         option PXE.mtftp-ip 0.0.0.0;
         vendor-option-space PXE;
        }
  }
}
----- Original Message -----
From: "Jeremy WEst" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, October 07, 2002 9:27 AM
Subject: RE: option option-135 error


> Well, what options did you specify when starting it?  Give exactly what
> you typed in.
>
> >I can't start dhcpd because it says unknow option.
>
> >Anyone a solution ?
>
> >Regards,
>
> >Bas
>
> _________________________________________________________________
> Send and receive Hotmail on your mobile device: http://mobile.msn.com
>
>
>
> --
> Psyche-list mailing list
> [EMAIL PROTECTED]
> https://listman.redhat.com/mailman/listinfo/psyche-list
>
>
>
> --
> Psyche-list mailing list
> [EMAIL PROTECTED]
> https://listman.redhat.com/mailman/listinfo/psyche-list
>




Reply via email to