Does NetBIOS name resolution maps NetBIOS names to IP address or to MAC address?

link|improve this question
feedback

2 Answers

up vote 3 down vote accepted

It maps names to ip-addresses. ARP is used to map ip-addresses to MAC addresses.

The output of NBTSTAT -c lists the local cache if you want some direct evidence:

Node IpAddress: [192.168.1.6] Scope Id: []

                  NetBIOS Remote Cache Name Table

        Name              Type       Host Address    Life [sec]
    ------------------------------------------------------------
    MUNNIN         <20>  UNIQUE          192.168.1.9         535

Edited to add:
Theo's answer made me realize that while the above answer is probably what you are looking for since almost all NetBIOS today is NetBIOS over TCP (NBT), there are other NetBIOS implementations. For Microsoft's NetBEUI (more correctly NBF) the name resolution service returned MAC addresses and with NetBIOS over IPX\SPX (NBX) name resolution would return an IPX address.

link|improve this answer
feedback

Technically, neither. NetBIOS is a networking protocol in itself. There is a version of NetBIOS that also works over TCP/IP, called NBT.

http://en.wikipedia.org/wiki/Netbios

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.