LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Server (https://www.linuxquestions.org/questions/linux-server-73/)
-   -   Lost web hosting (https://www.linuxquestions.org/questions/linux-server-73/lost-web-hosting-747264/)

sci3ntist 08-13-2009 08:15 AM

Lost web hosting
 
Hello,

Is there any way to figure out where some domain is being hosted?

Regards,

robertjinx 08-13-2009 08:29 AM

nslookup domain.com

it will return an ip address, which you can do a whois on:

whois 1.1.1.1

or whois domain.com and maybe by the Name Servers you can figure it out.

kbp 08-13-2009 08:33 AM

Hi sci3ntist,

You can try a dig for the domains nameservers
eg.

[me@mypc Desktop]$ dig linuxquestions.org NS

; <<>> DiG 9.6.1-P1-RedHat-9.6.1-4.P1.fc11 <<>> linuxquestions.org NS
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 9651
;; flags: qr rd ra; QUERY: 1, ANSWER: 5, AUTHORITY: 0, ADDITIONAL: 5

;; QUESTION SECTION:
;linuxquestions.org. IN NS

;; ANSWER SECTION:
linuxquestions.org. 86400 IN NS ns3.mydyndns.org.
linuxquestions.org. 86400 IN NS ns1.mydyndns.org.
linuxquestions.org. 86400 IN NS ns5.mydyndns.org.
linuxquestions.org. 86400 IN NS ns4.mydyndns.org.
linuxquestions.org. 86400 IN NS ns2.mydyndns.org.

;; ADDITIONAL SECTION:
ns1.mydyndns.org. 162 IN A 204.13.248.76
ns5.mydyndns.org. 45480 IN A 203.62.195.76
ns4.mydyndns.org. 44561 IN A 91.198.22.76
ns2.mydyndns.org. 44018 IN A 204.13.249.76
ns3.mydyndns.org. 46777 IN A 208.78.69.76

;; Query time: 294 msec
;; SERVER: 139.130.4.4#53(139.130.4.4)
;; WHEN: Thu Aug 13 23:26:48 2009
;; MSG SIZE rcvd: 215

cheers

<bugger... you were too quick for me robertjinx>

repo 08-13-2009 08:35 AM

Or use
Code:

host -a domain.com


All times are GMT -5. The time now is 09:24 PM.