NetBIOS vs. FQDN - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T07:07:58Z http://stackoverflow.com/feeds/question/164808 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/164808/netbios-vs-fqdn 0 NetBIOS vs. FQDN Layla 2008-10-02T22:02:22Z 2009-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#164907 0 Answer by dragonmantank for NetBIOS vs. FQDN dragonmantank 2008-10-02T22:29:03Z 2008-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#679861 0 Answer by Matt for NetBIOS vs. FQDN Matt 2009-03-25T01:06:58Z 2009-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#1207527 1 Answer by Jason Musgrove for NetBIOS vs. FQDN Jason Musgrove 2009-07-30T15:51:52Z 2009-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>