Have an issue where one spesific user is unable to connect to any SMB shares on any Windows Servers, they are not in the same domain, but there's Trust between the domains, and their user has the correct rights on the Shares. It's working for the other users in the same Office who are running the same configuration. Running Fiddler on the client computer shows that it's attempting to connect using HTTP instead of TCP.
This occurs if I'm testing with the FQDN, servername or IP, the server answers on pings just fine, and I'm able to open an SMB share on the computer from the Server.
Eventviewer
In the SMBClient -> Connectivity Logs, it's filled with Event ID 30800 events, with the following content:
The server name cannot be resolved.
Error: The requested interface is not supported.
Server name: REMOTESERVER
Guidance:
The client cannot resolve the server address in DNS or WINS. This issue often manifests immediately after joining a computer to the domain, when the client's DNS registration may not yet have propagated to all DNS servers. You should also expect this event at system startup on a DNS server (such as a domain controller) that points to itself for the primary DNS. You should validate the DNS client settings on this computer using IPCONFIG /ALL and NSLOOKUP.
Test-Netconnection
Test-NetConnection -ComputerName 'REMOTESERVER' -port 445
Result:
ComputerName : REMOTESERVER
RemoteAddress : X
RemotePort : 445
InterfaceAlias : Local Area Connection
SourceAddress : X
TcpTestSucceeded : True
I'm at a bit of a loss of where to even start troubleshooting this issue, we had one client with the same problem a couple years ago but that one we ended up just reinstalling.