1

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

2 Answers2

3

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.

Helvick
  • 20,019
  • 4
  • 38
  • 55
0

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

Theo
  • 989
  • 5
  • 11