To create and add a class to the DHCP server. Syntax: add class IsVendor(1|0) IsBinary(B|b) Parameters: ClassName - Name ...

To create and add a class to the DHCP server.    Syntax:            add class    [IsVendor(1|0)]          [IsBinary(B|b)]    Parameters:            ClassName      - Name of the class to be created.            ClassComment   - Comment to be associated with the class.            Data           - Data in ASCII or binary format depending on                           IsBinary parameter.  By default, the format                           of the data is assumed to be ASCII.             IsVendor       - 0-Creates the class as a user class (default)                         - 1-Creates the class as a vendor class            IsBinary       - 'B' or 'b' if the data is in binary                           format. By default, the format of the data is                           assumed to be ASCII.      Notes:         For parameters,  indicate a required                 parameter and [braces] an optional parameter. The                 IsBinary parameter can be provided  without providing                 the IsVendor parameter. See example below.     Examples:      add class MyClass TestClass testdataforMyClass 1                 add class MyUserClass TestClass1 4345335532 b                   The first command creates a vendor class under the                 server called MyClass, with comment TestClass, class                 data of testdataforMyClass in ASCII format. The second                 command creates a user class under the server called                 MyUserClass with binary data of 4345335532                 (ASCII-CE3U2). This is equivalent to the following                 alternate command syntax:                      add class MyClass1 TestClass1 4345335532 0 b