0

Should Windows XP be able to do a SMB lookup on an Alias.

I have an XP machine that cannot find the files on \Alias but can find them on \host.

If I do a ping or nslookup it can resolve the Alias.

OptimAdam
  • 121
  • 1
  • 9

1 Answers1

0

Your question isn't completely clear as to what the SMB target is. Given the error you report, I'm going to assume it's a Windows Server.

BTW - before I start answering, all the info I'm using in this answer I got from this forum post. It helped me a LOT when trying to do something similar a few months ago for a client.

  1. On the SMB target (the server) - edit the registry key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\lanmanserver\parameters

    and add the DWORD value DisableStrictNameChecking. Set it to 1.

  2. To allow for browsing in NETBIOS: Edit the registry key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\lanmanserver\parameters. Add the Multi-String value OptionalNames. Add in a new line delimited list (so, 1 name per line) of names that should be registered under the NetBIOS browse entries (make sure the names are just names, not FQDNs, like name.domain)

There are more steps that are in the post if the server needs to be able to browse to itself by that alias, and if you get Kerberos errors, there are comments about how to fix that with SPN as well. But the above steps are all you need generically.

NOTE - if the SMB target is a domain controller, you will need to go through the rest of the steps in that forum post or it will fail miserably. If it's just another server you should be fine.

Driftpeasant
  • 3,217
  • 2
  • 22
  • 28