How do I find the static IP of a website?

6,047

Solution 1

You can run nslookup this will work in both dos (windows command prompt) and linux terminal enviroments.

Lookup google.com

nslookup google.com

Solution 2

Ping isn't always responded to, depending on firewall rules. If it is a domain name, use nslookup to give you the ip address.

Share:
6,047

Related videos on Youtube

fixer1234
Author by

fixer1234

Updated on September 18, 2022

Comments

  • fixer1234
    fixer1234 over 1 year

    Suppose the web site can be visited through a static IP. How can I find what it is?

    • Nir Alfasi
      Nir Alfasi almost 12 years
      ping <website-domain>
  • Admin
    Admin almost 12 years
    P.S. if you are on a Mac, open the Terminal app and type ping command above.