Hello,
I managed to solve the initial problem that was slow to connect to the sql server with studio.
For IP the slowness was abusrda and for FQDN it was faster. The problem probably happens to everyone who tries to perform the same action, but I only got complaints from two DBAs. The rest are developers and I honestly don't know how they access the database to carry out their developments.
I found a comment on the internet that the problem was with name resolution and I couldn't believe this was true and it is.
For some reason when we connect by IP the studio uses the resolution again reverse to probably perform some action internally until then inexplicable.
I simply entered the hosts file on my computer, added a name to the IP and that was it, it connected fast. Trying to list the databases was also very fast. Contour solution.
To solve this for everyone, as I use a name resolution from one domain to another, that is, I do name resolution forwards, it was necessary to create the reverse zones in the local DNS.
The most interesting thing is that I tried to connect by the domain's FQDN it works directly, but if I try to resolve the name using the IP it does not return the full FQDN.
Having done that and solving this part of the connection, the DBAs came up with another complaint, which is the response time for queries that they perform the tuning.
When I run a query from my machine that is on a 5G connection using nearby Wifi and with an Internet of 200Mbps I have a latency of 6/7ms for the SQL server IP.
While my co-workers with a similar scenario get a latency of 30ms.
The same query running on mine takes 5ms while theirs takes 12ms. On the local network the query is 0/2s.
This is bad for them as it masks the tuning work.
So what I did was make an RDWeb with Studio available to them on a server on the same network so that their experience is as close to the reality of application queries.
At first problem solved.
It is learning to look at name resolution (DNS) before thinking about any other situation.
Thanks.