Networking Forums

Networking Forums > Computer Networking > Linux Networking > client Windows, Server DHCP Linux and option User Class Information(code 77) [HELP]

Reply
Thread Tools Display Modes

client Windows, Server DHCP Linux and option User Class Information(code 77) [HELP]

 
 
Tyy
Guest
Posts: n/a

 
      09-24-2007, 11:29 AM
Hi all, I'm trying to configure my dhcpd server (3.0.1) so it can assing
an ip address after matching specific value for the option User Class
Information. All my client are windows XP SP2 so i set the ClassID on
each machine through the command:

ipconfig /setclassid "Con*" "USERCLASS"

Printing the network information i got a result as follow

----------------------------------------------------------
Scheda Ethernet Connessione alla rete locale (LAN):

Suffisso DNS specifico per connessione: dominio.it
Indirizzo IP. . . . . . . . . . . . . : 0.0.0.0
Subnet mask . . . . . . . . . . . . . : 0.0.0.0
Gateway predefinito . . . . . . . . . : 0.0.0.0
ID classe DHCP . . . . . . . . . . . : USERCLASS

-------------------------------------------------------

This is the configuration of my dhcpd server that seems working but it
doesn't match anythings

---------------------------------------------------------------
#code classid Windows
option classid code 77 = string;

#Declaration
class "sistema" {
match if substring(option classid,0,7) = "SYSEDIT";
}

subnet 10.10.10.0 netmask 255.255.255.0 {
authoritative;
pool {
allow members of "sistema";
deny unknown-clients;
range 10.10.10.39 10.10.10.40;
}
}
----------------------------------------------------------------

Looking into the packet with a sniffer I found the option information
like ascii-code as you can see follow

------------------------------------------------------------
Option: (t=77, l=7) User Class Information
Option (77) User Class Information
Length: 7
Value: 53595345444954
------------------------------------------------------------

Plaese help me to understand why isn't working and if is possible to get
back work.

thank you

Hermes

 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
DHCP User Class/Vendor Class Identifier Options vicky Linux Networking 0 09-05-2006 02:07 PM
DHCP option class good resource introduction reza Windows Networking 1 07-28-2006 05:27 AM
DHCP Vendor class and option type - Windows 2003 Server =?Utf-8?B?c3ZncmF1ZQ==?= Windows Networking 0 03-18-2005 07:09 PM
newbie dhcp problems - linux server windows client michael melling Linux Networking 1 08-05-2004 02:25 PM
Does Linux DHCP server support OPTION 122? Hans Ren Linux Networking 3 03-04-2004 08:19 AM



1 2 3 4 5 6 7 8 9 10 11