NetBIOS is an acronym for Network Basic Input/Output System. It provides services related to the session layer of the OSI model allowing applications on separate computers to communicate over a local area network. As strictly an API, NetBIOS is not a networking protocol.

learn more… | top users | synonyms

0
votes
0answers
12 views

Why do we still use Netbios aliases?

Why do we use Netbios alias names even when FQDN/DNS exist. Knowing the fact that Netbios is flat naming structure compared to the hierarchial naming way in FQDN and Netbios supports lesser number of ...
-2
votes
0answers
14 views

Deleted/Added a DNS host entry to access a netwrok share: path not found [closed]

I was requested to delete a host record (a CIF server on a NAS) I haven't deleted the AD account, only the DNS host record. Then I added the same host record with a different IP address which belongs ...
-1
votes
1answer
279 views

Centos 6.4 with Samba 3.6.9 does not show up on Win Network (but works with LAN IP) [closed]

Centos 6.4 with Samba 3.6.9 does not show up on Win (Seven) network, but works perfectly if I type the IP directly. Let's explain this a little deeper. This is what we have: - about 60 computers (15 ...
0
votes
0answers
23 views

register in my network place

I'm working on an open source software that serve like samba, in embedded device. It works quite well by far, but not visible at network neighborhood in a recent test case. It sends broadcast ...
0
votes
0answers
23 views

Distributed Transcations, DTCPING, How to set NetBIOS

I'm the Microsoft Distributed Transaction Coordinator to write to two different databases on separate servers that are not on the same network. When I attempt to execute the code inside a C# ...
0
votes
1answer
48 views

UDP broadcast in an iOS app using Adobe Flash

I am writing an iOS app that requires NetBIOS name resolution. It is straightforward to code using the DatagramSocket class in ActionScript. But unfortunately, for a NetBIOS request, the UDP packet ...
2
votes
1answer
77 views

Does Windows interfere with Java's Socket.setSOTimeout?

I am reading here, that On connect, the JVM (Java Virtual Machine) tries to resolve the hostname to IP/port. Windows tries a netbios ns query on UDP (User Datagram Protocol) port 137 with a ...
0
votes
0answers
193 views

NetBIOS and enum.exe null sessions

I've enabled the null sessions in registry: I've set the RestrictAnonymous and RestrictAnonymousSAM to 0 (disabled). I'm able to connect with null session, which can be seen below: C:\> net use ...
2
votes
2answers
143 views

Do I *really* need RPC and NETBIOS to use transactional NServiceBus queues between local servers and Amazon EC2?

We have been trying - without success - to get transactional message queues working between local servers and our cloud servers up in Amazon EC2. We're using NServiceBus, and have got the pub/sub ...
0
votes
1answer
109 views

Decode Netbios Name Python

I would like to know what would be the best way to do the opposite of this post : encode Netbios name python So to encode, you could use this : encoded_name = ''.join([chr((ord(c)>>4) + ...
1
vote
3answers
235 views

linux C server - identifying / naming the client

By hostname i meqn the name of the PC of the client. :) I'm trying to identify each of the connected client of the server. Like client -> server. Server says: client hostname has connected. then all ...
0
votes
0answers
39 views

How to invoke NCBHANGUP in C#

I have a client application, which communicates with the server. According to specification, at the end of a session, the client needs to send a NetBios message NCBHANGUP to the server. The client ...
0
votes
2answers
788 views

Ip address to NetBIOS/FQDN name in Java/Android

given the ip address of a computer on the same network of my Android device, i have to find its NetBIOS/FQDN name ... is there any "clean" solution to accomplish this with the Android SDK and ...
0
votes
1answer
127 views

Python equivalent of Perl Net::NBName to get Windows username?

I'm trying to re-code some Perl script I have to Python (and extend it). With Perl, using the Net library, I can give a hostname and get the Windows username. Here is a snippet of Perl code: my ...
5
votes
1answer
107 views

Does NetBIOS do any caching?

If I read a file from a UNC network share does Windows cache parts of that file? For example: If I read the whole file byte for byte, will each read call result in a request over the network, or does ...
0
votes
0answers
27 views

Find network enabled embedded Device from iOS5

Hy, I'm currently looking for a possibility to access a network enabled device from my app (via a name, not the IP address). The device responds to Netbios Packets such as Ping. Unfortunately I ...
0
votes
1answer
147 views

How to make a website accessible by entering a simple name in the URL for the Local Area Network (Intranet)

I have seen certain web applications where we can access by typing a simple name such as "accounts" in the URL field rather than typing a complete domain name "www.xxx.yyy\accounts". I have a local ...
0
votes
0answers
176 views

Netbios Session service packet hand crafting using scapy/python

I want to hand-craft a Netbios Session packet for testing work , I have established a session with the netbios server but I am unable to send a proper Request packet to it. I am using scapy for doing ...
0
votes
1answer
1k views

Netbios name without samba [closed]

Is there a way to enable the netbios name in a Linux without using Samba? What I want is that I would like the hostname (or whatever) to appear when other computers (MS Windows) is scanning the ...
0
votes
1answer
429 views

Cross domain active directory group membership

I have seen a few questions that are like mine, but none that actually apply. The problem I am facing is: I need to get group membership of User with: Group in Domain B User in domain A. Service ...
3
votes
1answer
433 views

How to turn on Networked Computer by using WOL (Wake on Lan) C# or Java

Can u please give me full code to turn on networked computer by WOL option of Network Card and BIOS. Please provide me all the details and please try to give me working code.
3
votes
2answers
1k views

get domain name from FQDN?

I am trying to get the NetBios name from a fully qualified Domain Name... the user inputs the FQDN and i convert to NetBios name for eg xyz.test.com (this is just an example, the FQDN an be ...
0
votes
1answer
293 views

How to avoid 12 seconds delay when disonnecting from share in Windows 7?

I'm making some utils that uses NetUseAdd and NetUseDel functions to connect/disconnect to share. In Windows 7 I noticed that between calling NetUseDel and real disconnnection passes nearly 12 ...
0
votes
0answers
375 views

VB Script get services remote machine not always providing array

Using the following VB Script code on a variey of Windows OS: Dim objComputer Dim computername, computerstr Dim rs, objcmd, cobj 'dim oLog, oFSO, svccnt dim arg1, args set args = WScript.Arguments ...
0
votes
1answer
204 views

Netbios support in .NET?

Does MS support Netbios in .NET or not? How can I use it?
3
votes
1answer
228 views

Is it possible that Environment.MachineName returns a zero length string

I am chasing a strange error at a customer site and was wondering if it is possible that Environment.MachineName could return a zero length string. The docs say this is read from the registry but ...
2
votes
5answers
8k views

NetBIOS domain of computer in PowerShell

How can I get the NetBIOS (aka 'short') domain name of the current computer from PowerShell? $ENV:USERDOMAIN displays the domain of the current user, but I want the domain that the current machine is ...
0
votes
2answers
657 views

JCIFS, Android, and getbyname

Well, tried the following bit of code: import jcifs.netbios.NbtAddress; ... try{ NbtAddress addr = NbtAddress.getByName("Base"); }catch ...
3
votes
1answer
5k views

Resolve NetBIOS name on Windows 7

According to this link, NetBIOS is no longer supported starting from Windwos Vista. Sure enough, I can no longer see any NetBIOS name from the network properties. However, when I am writing codes on ...
0
votes
2answers
454 views

Regex for netbios names

I got this issue figuring out how to build a regexp for verifying a netbios name. According to the ms standard these characters are illegal \/:*?"<>| So, thats what I'm trying to detect. My regex ...
0
votes
1answer
155 views

Encode and pad netbios name using python

I'm trying to create a simple script that will convert a string (max 15 chars) to a netbios name (see http://support.microsoft.com/kb/194203) : name = sys.argv[1].upper() converted = ...
0
votes
1answer
103 views

.net 3.5: (ip2hostname) find if a certain ip is used by another computer in domain

I'm working under a domain, and im making an app that changes ip from 1 to 253 until it finds an available, unconfliced ip (where it get's ping response from the domain, it tries to ping it each time ...
5
votes
3answers
2k views

What is the best way to get the computer name remotely based on an IP address?

I have several windows machines identified by ip address. I would like to write an application that query the computers remotely and gets their name. I cannot rely on DNS because it does not provide ...
0
votes
3answers
1k views

How host name is broadcasted in a subnet

I'm working with Microchip's TCP/IP stack and the host name of my device is not being broadcasted, although I can access it using its DHCP assigned IP. So the question is, what is the protocol that ...
1
vote
2answers
446 views

encode Netbios name python

I would like to encode "ITSATEST" to it's netbios name value in python; The occurence table and explication are here: http://support.microsoft.com/kb/194203 I dont know how this could be done easily ...
0
votes
3answers
276 views

Mixed Windows and *nix environment - 'local' suffix issue

Stupid question - apologies in advance. I have a mixed Windows and Linux dev environment, and the server is Linux (Ubuntu). Let's say the server is called 'myserver'. I develop on both Windows and ...
0
votes
2answers
775 views

Email link to local windows resource with space

How do I encode a link in a plaintext email to a local network resource with a space in it. For instance this will only highlight up to the word "file" but not "file name" \\SERVER\share\file name ...
0
votes
1answer
2k views

Mac client can't resolve Windows Home Server name

I think this is more a Mac networking configuration issue than anything else, but am not sure. I have Subversion set up on my Windows Home Server machine (similar to this: ...
3
votes
3answers
7k views

How to check if a computer is responding from C#

What is the easiest way to check if a computer is alive and responding (say in ping/NetBios)? I'd like a deterministic method that I can time-limit. One solution is simple access the share ...
0
votes
3answers
2k views

Windows Safari cannot access sever by NetBIOS/WINS name

Whenever I try to access a NTLM authenticated intranet site, Safari takes forever to process and then comes back with "The sever is unavailable" or if allowed by the site, loads with out ...
2
votes
3answers
6k views

Translating NETBIOS domain into a FQDN (Fully Qualified Domain Name)

In short - How do I translate a NETBIOS domain to a FQDN ? Details: Assuming I'm in domain A and I have user credentials for domain B which has a trust relationship with domain A (I can authenticate ...
0
votes
3answers
2k views

NetBIOS vs. FQDN

I've got an issue when accessing a web site, I can access it by using the NetBIOS name, but when accessing with the FQDN i get an error. Any ideas on how to troubleshoot this? (There is no DNS ...
6
votes
3answers
4k views

IIS site on UNC share: is it problematic?

I am working with a legacy ASP Classic solution which is load balanced (via external hardware and has an IIS site the home directory of which is an UNC path. I've been told that the following issues ...