Fedora Linux Support Community & Resources Center
  #1  
Old 5th November 2012, 08:45 PM
linuxbeginner20 Offline
Registered User
 
Join Date: Nov 2012
Location: Canada
Posts: 7
windows_xp_2003chrome
Browser won't load web page

Hi all,

Fedora shows that "Wired" is connected but when I open browser and load a page, it won't load.

I pinged and it says "Unknown host".

ifconfig:

p5p1:
flags = 4163 <UP,BROADCAST,RUNNING,MULTITASK> mtu 1500
inet 70.66.26.159 netmask 255.255.252.0 broadcast 70.66.27.255
inet6 fe80::211:9ff:fea2:acb9 prefixlen 64 scopeid 0x20<link>
ether 00:11:09:a2:ac:b9 txqueuelen 1000 (Ethernet)
RX packets 0 bytes 0 (0.0B)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 0 dropped 0 overruns 0 carrier 0 collisions 0
TX errors 0 dropped 0 overruns 0 frame 0
device interrupt 23 base 0x8000

netstat --tcp --udp --listening --program:

tcp 0 0 localhost.localdomain:ipp *.* LISTEN 898/cupsd
tcp6 0 0 [::]:ipp [::]:* LISTEN 1/systemd
udp 0 0 *.ipp *.* 1/systemd
udp 0 0 *.59101 *.* 513/avahi-daemon:r
udp 0 0 *.mdns *.* 513/avahi-daemon:r


Anyone know a fix?

Thanks,

LinuxBeginner
Reply With Quote
  #2  
Old 5th November 2012, 11:33 PM
Dutchy Offline
Registered User
 
Join Date: Aug 2011
Posts: 715
linuxfirefox
Re: Browser won't load web page

Have you set the DNS settings?
PHP Code:
cat /etc/resolv.conf 
Reply With Quote
  #3  
Old 6th November 2012, 12:21 AM
linuxbeginner20 Offline
Registered User
 
Join Date: Nov 2012
Location: Canada
Posts: 7
windows_xp_2003chrome
Re: Browser won't load web page

Yes I did - I even double-checked that the nameservers are correct.

ISP Provider told me that their modem uses DHCP so I set option to DHCP. I pinged and still got unknown host error.
Reply With Quote
  #4  
Old 6th November 2012, 12:36 AM
sea's Avatar
sea Offline
"Shells" (of a sub world)
 
Join Date: May 2011
Location: Helvetic Federation (Swissh)
Age: 33
Posts: 2,645
linuxfedorachrome
Re: Browser won't load web page

Have you rebooted the modem after the change?
__________________
Notebook: Samsung NC210/NC110 CPU: Intel 2*1600 Mhz RAM: 1024 MB DDR2 OS: Fedora 19 DE: Awesome
Laptop: Toshiba Satellite L670 CPU: Intel(r) 2*1872 Mhz RAM: 3072 MB DDR3 OS: Fedora 17 DE: Awesome
Fedora Manual (RTFM) | The Linux Documentation Project | Script-Tools
Reply With Quote
  #5  
Old 6th November 2012, 01:11 AM
linuxbeginner20 Offline
Registered User
 
Join Date: Nov 2012
Location: Canada
Posts: 7
windows_xp_2003chrome
Re: Browser won't load web page

I rebooted the modem. It did not help (I used automatic DHCP setting).
Reply With Quote
  #6  
Old 6th November 2012, 01:28 AM
marko's Avatar
marko Online
Registered User
 
Join Date: Jun 2004
Location: Laurel, MD USA
Posts: 5,488
linuxfirefox
Re: Browser won't load web page

Quote:
Originally Posted by linuxbeginner20 View Post
ifconfig:

p5p1:
flags = 4163 <UP,BROADCAST,RUNNING,MULTITASK> mtu 1500
inet 70.66.26.159 netmask 255.255.252.0 broadcast 70.66.27.255
inet6 fe80::211:9ff:fea2:acb9 prefixlen 64 scopeid 0x20<link>
ether 00:11:09:a2:ac:b9 txqueuelen 1000 (Ethernet)
RX packets 0 bytes 0 (0.0B)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 0 dropped 0 overruns 0 carrier 0 collisions 0
TX errors 0 dropped 0 overruns 0 frame 0
device interrupt 23 base 0x8000
is your netmask really supposed to be 255.255.252.0 ? usually the third number is 255 for a typical home user (class C mask)
Reply With Quote
  #7  
Old 6th November 2012, 01:59 AM
linuxbeginner20 Offline
Registered User
 
Join Date: Nov 2012
Location: Canada
Posts: 7
windows_xp_2003chrome
Re: Browser won't load web page

I changed netmask like you suggested (I had to set option to Manual instead of DHCP to change the netmask). Still getting unknown host when pinging.
Reply With Quote
  #8  
Old 6th November 2012, 03:31 AM
stevea's Avatar
stevea Offline
Registered User
 
Join Date: Apr 2006
Location: Ohio, USA
Posts: 8,346
linuxfirefox
Re: Browser won't load web page

DO NOT change that mask, it's perfectly fine. It is a public not private address.

Since your dhcp works, but you can't resolve names and ping them it means
/ your gateway is wring
/ your dns serve IP is wring/inaccessible.
/ you are pinging an IP with no ICMP reponse.

So do an "ip route" (post it) and see if you can do these commans
ping <default route IP>
ping 8.8.4.4

If the second works, than your routing is fine and yo uhave a DNS poblem.

If so then "cat /etc/resolv.conf" and see if you can ping the serve IPs.
If that succeeds but you can't ping a name lik "ping google.com"
then try emitting resolv.conf and changing the IP to 8.8.4.4, one of the google dns servers.

If THAT works you'll need to replace the DNS settings ussed by dhcp.
__________________
None are more hopelessly enslaved than those who falsely believe they are free.
Johann Wolfgang von Goethe
Reply With Quote
  #9  
Old 6th November 2012, 06:53 AM
linuxbeginner20 Offline
Registered User
 
Join Date: Nov 2012
Location: Canada
Posts: 7
windows_xp_2003chrome
Re: Browser won't load web page

It works when I ping default IP but not when I ping 8.8.4.4.

Ping stats for pinging default IP:

1 packets transmitted, 1 received, 0% packet loss, time 0ms.

Ping stats for pinging 8.8.4.4:

1 packets transmitted, 0 received, +1 error, 100% packet loss, time 0ms.

---------- Post added at 06:50 AM ---------- Previous post was at 05:36 AM ----------

Sorry I forgot ip route command output:

for DHCP, output is empty.

For Manual:

default via 70.66.24.1 dev p5p1 proto static
64.59.160.0/24 dev p5p1 proto kernel scope link src 64.59.160.13
70.66.24.1 dev p5p1 proto static scope link

---------- Post added at 06:53 AM ---------- Previous post was at 06:50 AM ----------

I forgot to mention that the pinging results above was when the option was set to Manual. It returns "connect: Network is unreachable" when option was set to automatic DHCP.
Reply With Quote
  #10  
Old 7th November 2012, 06:49 PM
linuxbeginner20 Offline
Registered User
 
Join Date: Nov 2012
Location: Canada
Posts: 7
windows_xp_2003chrome
Re: Browser won't load web page

<bump> Anyone?
Reply With Quote
  #11  
Old 8th November 2012, 01:00 AM
stevea's Avatar
stevea Offline
Registered User
 
Join Date: Apr 2006
Location: Ohio, USA
Posts: 8,346
linuxfirefox
Re: Browser won't load web page

Quote:
Originally Posted by linuxbeginner20 View Post
It works when I ping default IP but not when I ping 8.8.4.4.
...
Weeellll - the means you probably have a routing error or a router is rejecting your traffic.

I have zero idea what you mean by "ping default IP" There is no default IP. Explain you meaning.


Quote:
Sorry I forgot ip route command output:

for DHCP, output is empty.

For Manual:

default via 70.66.24.1 dev p5p1 proto static
64.59.160.0/24 dev p5p1 proto kernel scope link src 64.59.160.13
70.66.24.1 dev p5p1 proto static scope link
If you can't auto DHCP then there is no reason to think your route tables and IP assignment are right. Yours are clearly wrong.

For example looking at your manual example it seems your IP is 64.59.160.13/24 and you are assuming a router at 70.66.24.1 - an address your LAN can't possibly touch without another route.

I have no idea where you got the addresses 70.66.24.1 for the router and 64.59.160.13/24 for your system for manual setup - but they are incompatible. *IF* your correct IP is 64.59.160.13/24 then your defalt router MUCH be on your own LAN at some 64.59.160.* address. 70.66.24.1 is not accessible.


So get in contact with your ISP/supplier about your correct IP assignments and route settings and DNS server values.
__________________
None are more hopelessly enslaved than those who falsely believe they are free.
Johann Wolfgang von Goethe
Reply With Quote
  #12  
Old 8th November 2012, 04:20 AM
linuxbeginner20 Offline
Registered User
 
Join Date: Nov 2012
Location: Canada
Posts: 7
windows_xp_2003chrome
Re: Browser won't load web page

What I mean by default IP is the modem's IP address. I pinged that and it works. Pinging any other address does not work.

I contacted ISP Provider (for the 3rd time!) and here is what I got:

DNS:
nsc1.cv.gv.shawcable.net 64.59.160.13
nsc2.cv.gv.shawcable.net 64.59.160.15

Modem IP address:
70.66.26.159

I got default gateway and netmask via ipconfig command (ISP Provider says that I can only get these from my computer):

70.66.24.1 default gateway
255.255.252.0 netmask

I used the above info in Linux network setting - still can't connect to internet.

Any ideas how to fix it?
Reply With Quote
Reply

Tags
browser, load, page, web

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
LAMP - page does not load properly pedenski Using Fedora 1 26th July 2012 07:31 PM
web browser won't load budds Using Fedora 12 23rd September 2004 04:01 AM


Current GMT-time: 04:55 (Wednesday, 19-06-2013)

TopSubscribe to XML RSS for all Threads in all ForumsFedoraForumDotOrg Archive
logo

All trademarks, and forum posts in this site are property of their respective owner(s).
FedoraForum.org is privately owned and is not directly sponsored by the Fedora Project or Red Hat, Inc.

Privacy Policy | Term of Use | Posting Guidelines | Archive | Contact Us | Founding Members

Powered by vBulletin® Copyright ©2000 - 2012, vBulletin Solutions, Inc.

FedoraForum is Powered by RedHat