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

netbios

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

Best Answer

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.

Related Topic