0

On a Terminalserver (win2008), we like to have an alias for the real fileservername and therefor we put a line in hosts like:

  • 192.168.0.10 BigFiler

This only works fine for Fileserver under windows 2008 not for win2003-servers, why?

We do not have defined a CNAME alias that is created in the DNS zone!

Ice
  • 404
  • 1
  • 7
  • 16

1 Answers1

1

Without more details in your question, I'm assuming you have this issue:

http://support.microsoft.com/kb/281308

Which basically means that the W2K3 server isn't listening for requests to the alias name.

joeqwerty
  • 109,901
  • 6
  • 81
  • 172
  • We do not have defined a CNAME alias that is created in the DNS zone! There is only a hosts entry on the client computer from were we want to access the fileserver. The kb281308 doesn't apply to this issue, i think. – Ice Mar 29 '10 at 20:27
  • It does. It doesn't matter whether you have a CNAME record in your DNS zone or an entry in your hosts file. The file server doesn't know that it should respond to the name in the hosts file. 1. The file server has a computer name, let's call it Filer. 2. On the terminal server you have an entry for Filer called BigFiler. 3. Filer doesn't respond to the name BigFiler because it doesn't know that it should. 4. Follow the KB article to make Filer listen for requests to the name BigFiler. 5. Test. – joeqwerty Mar 30 '10 at 00:28
  • ok, but the terminalserver converts any access to BigFiler to the IP-Address of Filer as defined in his hosts-file, or not? – Ice Apr 08 '10 at 21:40
  • At the network layer yes, but at the application layer the request is still going to the "alias" name, which the server won't respond to, unless you follow the steps in the KB. – joeqwerty Apr 08 '10 at 23:16