Reputation: 1862
I'm working in a company, When I log on to my pc under Domain X, when I open a browser and put a URL www.someUrl.com it get resolved.
In a cloud machine Y I'm developing on, it does not get resolved, and I was wondering if there is some way of knowing how the mapping is done.
What I've tried:
Taking the IP address I'm getting from pinging successfully in machine X and ping it in machine Y.
Googling --> Didn't find nothing, guess I'm not searching for the problem correctly.
Contact my IT department --> The are busy.
Any help would be appreciated.
Upvotes: 1
Views: 1130
Reputation: 1862
What it turned out to be eventually, was that the machine I was trying to resolve was in the organization's intranet, that's why it could not be accessed from machine Y in the cloud which is public.
Upvotes: 0
Reputation: 392
I'm missing a few bits of information to fully determine the cause of this issue, but I can offer a few ideas/solutions:
If none of these appear to be the cause of the problem, here's what you should do:
ipconfig /all
on both machines, to see what DNS server they are configured withnslookup someUrl.com
from both machines, to see which DNS server answers the querynslookup someUrl.com <host DNS>
)Upvotes: 1