in reply to Parsing Netbios and DNS Names

As promised, here are the input and output strings for the Decode_DNS_Name(): Input:
00000000 20 46 45 45 46 45 4F 45 - 4F 45 46 46 44 46 44 45 FEEFEOEO +EFFDFDE 00000010 46 45 46 43 41 43 41 43 - 41 43 41 43 41 43 41 42 FEFCACACA +CACACAB 00000020 4D 00 00 20 00 01 M.. ..
Notice the leading 0x20 - which indicates a length of 32 bytes, that translates into a space-padded 16 bytes below:
TENNESSEE
Another example input:
0000000 20 46 48 46 48 45 43 45 - 42 45 44 45 4C 46 46 46 FHFHECEBE +DELFFF 00000010 41 43 41 43 41 43 41 43 - 41 43 41 43 41 43 41 41 ACACACACA +CACACAA 00000020 41 00 00 20 00 01 A.. ..
Translates to "WWBACKUP".

Replies are listed 'Best First'.
Re: Re: Parsing Netbios and DNS Names
by vxp (Pilgrim) on May 20, 2003 at 23:20 UTC
    You might wanna look at Net::NBName Might help you out with what you are trying to do