NetBIOS vs. FQDN - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T07:07:58Zhttp://stackoverflow.com/feeds/question/164808http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/164808/netbios-vs-fqdn0NetBIOS vs. FQDNLayla2008-10-02T22:02:22Z2009-07-30T15:51:52Z
<p>Hi! 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. </p>
<p>Any ideas on how to troubleshoot this?</p>
<p>(There is no DNS configured yet, we have modified the Hosts file to enter the related names and IP.)</p>
http://stackoverflow.com/questions/164808/netbios-vs-fqdn/164907#1649070Answer by dragonmantank for NetBIOS vs. FQDNdragonmantank2008-10-02T22:29:03Z2008-10-02T22:29:03Z<p>Just to make sure, you have something like this</p>
<pre><code>192.168.100.5 othermachine othermachine.mydomain.local
</code></pre>
<p>with both the netbios and the FQDN in it and not just the IP and netbios name?</p>
http://stackoverflow.com/questions/164808/netbios-vs-fqdn/679861#6798610Answer by Matt for NetBIOS vs. FQDNMatt2009-03-25T01:06:58Z2009-03-25T01:06:58Z<p>Assuming, as dragonmantank mentioned above, that the FQDN is in your hosts file, I'd look at whether the web server software itself is configured to accept requests with the FQDN in the Host field.</p>
http://stackoverflow.com/questions/164808/netbios-vs-fqdn/1207527#12075271Answer by Jason Musgrove for NetBIOS vs. FQDNJason Musgrove2009-07-30T15:51:52Z2009-07-30T15:51:52Z<p>First, check the obvious: are there any typos in the file?</p>
<p>Next, test out the name resolution. Something simple like pinging the web server by it's FQDN will do. See if the right IP is mentioned.</p>
<ul>
<li>If you get "unknown host", your client's hosts file does not have an entry for the FQDN you entered (check for typos in the host name), or, for some reason, your computer isn't reading your hosts file.</li>
<li>If you get the wrong IP address, then you have the wrong IP in your hosts file (check for typos in the IP address), your computer's DNS cache is polluted (try: <code>ipconfig /flushdns</code> on a Windows machine), or something else is overriding the lookup (duplicate entries in the hosts file?).</li>
</ul>
<p>Next up, try communicating with your web server. Using Telnet, speak HTTP to it, and see how it responds:</p>
<pre><code>telnet 192.168.0.1 80
</code></pre>
<p>Substitute your web server's IP address instead of <code>192.168.0.1</code>. Provide the following lines:</p>
<pre><code>GET / HTTP/1.1
Host: fqdn.mywebserver.com
</code></pre>
<p>Try the server's IP, server's netbios name, and finally the server's FQDN in place of <code>fqdn.mywebserver.com</code>. Be sure to press return <em>twice</em> after entering the host header.</p>
<p>If the response is different between the netbios name and the FQDN, then it's a web server configuration issue; you need to adjust you virtual host settings (in Apache, the <code>ServerAlias</code> directive should be used to add additonal names. In IIS its in Web Site (tab) -> Advanced (button)).</p>
<p>After that... I'm really out of ideas.</p>