Page 6 of 13 FirstFirst ... 45678 ... LastLast
Results 51 to 60 of 129

Thread: Unable to access certain websites from Ubuntu

  1. #51
    Join Date
    May 2011
    Location
    india
    Beans
    9

    Re: Unable to access certain websites from Ubuntu

    you ma try using ipadress of the particular website tat u r not able to visit. if u r able to visite using ip address then most probably it is the dns problem

  2. #52
    Join Date
    May 2011
    Location
    Planet Earth, Milky Way
    Beans
    50
    Distro
    Ubuntu 11.04 Natty Narwhal

    Re: Unable to access certain websites from Ubuntu

    Quote Originally Posted by Wim Sturkenboom View Post
    http://38.118.71.170/ should give you the same as theatlantic.com
    http://216.87.173.18 should give you tvfanatic.com

    If those are not working, it's definitely not a nameserver issue
    Which are "those"?

    Call it a coincidence or what but after clicking on those two links I now face no problem loading TV Fanatic and The Atlantic.

    The problem persists with Hotmail and Foreign Policy and Deutsche Welle....

    What could be behind this so far inexplicable problem?

  3. #53
    Join Date
    May 2011
    Location
    Planet Earth, Milky Way
    Beans
    50
    Distro
    Ubuntu 11.04 Natty Narwhal

    Re: Unable to access certain websites from Ubuntu

    Quote Originally Posted by karthik.k.nair View Post
    you ma try using ipadress of the particular website tat u r not able to visit. if u r able to visite using ip address then most probably it is the dns problem

    Namaste Karthik,

    Assuming that you an expert, I want to tell you that I'm not a technical guy. I am still learning computers. Installing Ubuntu by myself to me was like climbing the Mount Everest. So I ask you - where can I find the IP addresses of the websites in question?

  4. #54
    Join Date
    Dec 2008
    Location
    43° 7' 41" 131° 54' 3"
    Beans
    Hidden!

    Re: Unable to access certain websites from Ubuntu

    Quote Originally Posted by DemianDemerzel View Post
    Namaste Karthik,

    Assuming that you an expert, I want to tell you that I'm not a technical guy. I am still learning computers. Installing Ubuntu by myself to me was like climbing the Mount Everest. So I ask you - where can I find the IP addresses of the websites in question?
    Plenty of places to ge that info on the net....here's one.
    http://www.hcidata.info/host2ip.cgi
    EasyBCD.
    PrintersDatabase
    Boot Info Script: How to
    The post above and the post below suffer from the Rashomon effect!

  5. #55
    Join Date
    May 2011
    Location
    Planet Earth, Milky Way
    Beans
    50
    Distro
    Ubuntu 11.04 Natty Narwhal

    Re: Unable to access certain websites from Ubuntu

    Quote Originally Posted by jtarin View Post
    Plenty of places to ge that info on the net....here's one.
    http://www.hcidata.info/host2ip.cgi
    Dear JTarin,

    Now I have the IP address. What do I do now? Put them in the URL box. It didn't work for me.

  6. #56
    Join Date
    Apr 2011
    Location
    127.0.0.1
    Beans
    112
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: Unable to access certain websites from Ubuntu

    The IP addresses should work. If not, there may be another problem. You didn't type your own IP by accident did you?
    110010100
    My Blog

  7. #57
    Join Date
    May 2011
    Location
    Planet Earth, Milky Way
    Beans
    50
    Distro
    Ubuntu 11.04 Natty Narwhal

    Re: Unable to access certain websites from Ubuntu

    Quote Originally Posted by scott-ian View Post
    The IP addresses should work. If not, there may be another problem. You didn't type your own IP by accident did you?
    Hi Scott!

    I just checked and found out that the IP addresses are only not working for websites which give the problem. For other websites, the IP addresses work.

  8. #58
    Join Date
    Jan 2005
    Location
    South Africa
    Beans
    2,098
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: Unable to access certain websites from Ubuntu

    Quote Originally Posted by DemianDemerzel View Post
    Which are "those"?

    Call it a coincidence or what but after clicking on those two links I now face no problem loading TV Fanatic and The Atlantic.

    The problem persists with Hotmail and Foreign Policy and Deutsche Welle....

    What could be behind this so far inexplicable problem?
    OK, should have been more clear; the links with the IP addresses should work and should give you the sites that I mentioned after them.

    Quote Originally Posted by DemianDemerzel View Post
    Hi Scott!

    I just checked and found out that the IP addresses are only not working for websites which give the problem. For other websites, the IP addresses work.
    I think your contradicting yourself (for some of them). If you follow the links with the IP addresses that I gave and they worked, they work and your issue is a name server issue for those sites.

    You can add entries in /etc/hosts using an editor (as marked in bold below). It is a workaround and if the IP address of theatlantic.com ever changes, you must remember to check that and update the file /etc/hosts to reflect the new IP address. So I should rather try to solve it another way.
    Code:
    127.0.0.1	localhost
    127.0.1.1	desktop-01
    
    38.118.71.170   theatlantic.com
    
    # The following lines are desirable for IPv6 capable hosts
    ::1     localhost ip6-localhost ip6-loopback
    fe00::0 ip6-localnet
    ff00::0 ip6-mcastprefix
    ff02::1 ip6-allnodes
    ff02::2 ip6-allrouters
    ff02::3 ip6-allhosts
    If you don't make backups of your important data, your data is obviously not important to you.

  9. #59
    Join Date
    Mar 2011
    Location
    South Dakota
    Beans
    1,129
    Distro
    Ubuntu 13.10 Saucy Salamander

    Arrow Re: Unable to access certain websites from Ubuntu

    Quote Originally Posted by DemianDemerzel View Post
    Which are "those"?

    Call it a coincidence or what but after clicking on those two links I now face no problem loading TV Fanatic and The Atlantic.

    The problem persists with Hotmail and Foreign Policy and Deutsche Welle....

    What could be behind this so far inexplicable problem?

    I was just reading about a command called traceroute. It traces the route from your computer to the place you put in to go to and tells detailed info on each step of the way as well as general info (at the bottom) about packets sent and recieved and packet loss.

    For example:

    Code:
    traceroute theatlantic.com
    OR

    Code:
    traceroute hotmail.com
    I had to install traceroute on my system (Ubuntu 10.04) because it wasn't already there.

    Code:
    sudo apt-get install traceroute
    Here is an excerpt from the book I am reading that talks about it:

    traceroute

    The traceroute program (some systems use the similar tracepath program
    instead) displays a listing of all the “hops” network traffic takes to get from the local
    system to a specified host. For example, to see the route taken to reach
    slashdot.org . . .
    Maybe it would help you in the future or with hotmail now.

    You can also "ping" a web site from the command line. It will give only the basic info of packets sent packets received packets lost. If you do ping you have to hit ctrl+c to stop it after a few pings or it will just keep going. After stopping it is when the info is shown.

    Code:
    ping hotmail.com
    HTH
    Last edited by ClientAlive; May 16th, 2011 at 01:14 AM. Reason: added ping info
    “ The best method for accelerating a computer is the one that boosts it by 9.8 m/s2. ”
    - Anonymous

  10. #60
    Join Date
    Jan 2005
    Location
    South Africa
    Beans
    2,098
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: Unable to access certain websites from Ubuntu

    Not behind a ubuntu machine at the moment but a graphical version of traceroute is part of the networking tools in one of the menus.
    If you don't make backups of your important data, your data is obviously not important to you.

Page 6 of 13 FirstFirst ... 45678 ... LastLast

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •