Displaying 1 result from an estimated 1 matches for "x90tka".
Did you mean:
190tkn
2006 Jul 10
0
nmblookup fails to look up hostnames containing non-ASCII characters
...If I try to lookup that name, however, it can't be found (I'm using
Python to run nmblookup because I know how to insert characters given
their hex codes in Python):
$ python -c 'import os; print os.popen("nmblookup MARK%cTKA" %
0x90).readlines()'
['querying MARK\x90TKA on 192.168.1.255\n', 'name_query failed to find
name MARK\x90TKA\n']
nmblookup works fine for all the machines on the network with ASCII
names:
$ nmblookup
tom querying tom on 192.168.1.255
192.168.1.10 tom<00>
Is this a known limitation of nmblookup? Is there any way I...