LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 04-10-2009, 09:44 PM   #1
pching
Member
 
Registered: Jan 2008
Location: Maryland US
Distribution: right now WindowsXP
Posts: 40

Rep: Reputation: 15
Cannot ping Fedora 7 from other machines


Hi,

I just installed Fedora 7 (with firewall disabled) and got its IP address assigned as 192.168.122.1.

What I found out is this Fedora 7 can ping other machines.
But my other machine canot ping this Fedora 7.

Can some one explain to me why this is happening?

Thank you!

Philip
 
Old 04-10-2009, 10:07 PM   #2
John VV
LQ Muse
 
Registered: Aug 2005
Location: A2 area Mi.
Posts: 17,624

Rep: Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651
Quote:
I just installed Fedora 7
You do know that fedora 7 has been unsupported for almost a year now ( End of Life was June 2008 ) , and that fedora 10 is the current and fedora 11 will be out in about 1 month
 
Old 04-11-2009, 02:05 AM   #3
billymayday
LQ Guru
 
Registered: Mar 2006
Location: Sydney, Australia
Distribution: Fedora, CentOS, OpenSuse, Slack, Gentoo, Debian, Arch, PCBSD
Posts: 6,678

Rep: Reputation: 122Reputation: 122
It's probably just your firewall settings.

ping requires icmp access. See http://www.cyberciti.biz/tips/linux-...icmp-ping.html if you aren't using the gui firewall interface
 
Old 04-11-2009, 04:45 PM   #4
pching
Member
 
Registered: Jan 2008
Location: Maryland US
Distribution: right now WindowsXP
Posts: 40

Original Poster
Rep: Reputation: 15
Hi to billymayday,
Thanks for giving the link to iptables which has command lines for ping.

A friend of mine told me to try "/sbin/iptables -F" which will do clean up.
But I am hesitate to do taht - because I really don't know what I am doing.

Philip


Hi to John VV,

Thank you for reminding me that Fedora 7 is out of date.
I am just playing with it. Can I update the system to Fedora 10 on-line
and do it automatacally?

Philip
 
Old 04-11-2009, 07:13 PM   #5
John VV
LQ Muse
 
Registered: Aug 2005
Location: A2 area Mi.
Posts: 17,624

Rep: Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651
Quote:
Thank you for reminding me that Fedora 7 is out of date.
I am just playing with it. Can I update the system to Fedora 10 on-line
and do it automatacally?
7 to 10 or 11 . The answer is no to an update .Do a fresh install of fedora 10 or 11 ( in a month)

there are WAY to many changes in fedora 8, 9 and 10 for that to work reasonably well . It might but i would put it at 95% chance of a fubar'ed computer .

Doing a fresh install is also the recommended method
 
Old 04-11-2009, 09:22 PM   #6
pching
Member
 
Registered: Jan 2008
Location: Maryland US
Distribution: right now WindowsXP
Posts: 40

Original Poster
Rep: Reputation: 15
Hi John VV,

Yes. Do a fresh installation make sense (because people are saling Linux CDs).

Thanks.

Philip
 
Old 04-12-2009, 02:33 AM   #7
John VV
LQ Muse
 
Registered: Aug 2005
Location: A2 area Mi.
Posts: 17,624

Rep: Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651
Quote:
(because people are saling Linux CDs).
What you want to buy it ?
here is a iso for a dvd and cd ( Free )
http://fedoraproject.org/en/get-fedora
 
Old 04-12-2009, 04:39 AM   #8
billymayday
LQ Guru
 
Registered: Mar 2006
Location: Sydney, Australia
Distribution: Fedora, CentOS, OpenSuse, Slack, Gentoo, Debian, Arch, PCBSD
Posts: 6,678

Rep: Reputation: 122Reputation: 122
Quote:
Originally Posted by pching View Post
Hi to billymayday,
Thanks for giving the link to iptables which has command lines for ping.

A friend of mine told me to try "/sbin/iptables -F" which will do clean up.
But I am hesitate to do taht - because I really don't know what I am doing.

Philip


Hi to John VV,

Thank you for reminding me that Fedora 7 is out of date.
I am just playing with it. Can I update the system to Fedora 10 on-line
and do it automatacally?

Philip
flushing iptables just clears the rules. Do you really want a firewall-less system?
 
Old 04-12-2009, 09:54 AM   #9
pching
Member
 
Registered: Jan 2008
Location: Maryland US
Distribution: right now WindowsXP
Posts: 40

Original Poster
Rep: Reputation: 15
Since you guys are really nice, I want to ask more questions:

To John VV:
I buy Linux CDs to save me some time. Because I am sure I can use the CD to start the installation process. However, the LQ download is too complicated because there are so many choices to make: torrent, live.iso, DVD.iso, ...
What is "torrent" means? What Do I need for?
What is "live.iso"? If I just want to install a plan Linux server, can I use live.iso to install? Sorry for these basic questions.

Philip


To billymayday:
At this time I really don't care about firewall. My goal is to later integrate some wiki software with my web documents. I need other machines to be able to maccess this experimental Fedora server.

I did flushing yesterday and still cannot ping.

I also follow the following recommendation (from your link) and still cannot ping:

SERVER_IP="192.168.122.1"
iptables -A INOUT -p icmp --icmp-type 8 -s 0/0 -d $SERVER_IP -m state --state NEW,ESTABLISHED,RELATED -j ACCEPT

iptables -A OUTPUT -p icmp --icmp 0 -s $SERVER_IP -d 0/0 -m state --state ESTABLISHED,RELATED -j ACCEPT

My next choice is to reinstall for Fedora 10.

Thank you!

Philip
 
  


Reply



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 Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
BCM4318 Ad-hoc: Can't ping between machines 3x3cut0r Linux - Wireless Networking 1 03-16-2007 08:18 AM
How come I can ping between machines, but not get internet? ozymandias Linux - Networking 5 09-11-2005 04:20 PM
machines with different submasks can ping each other, why? learnfast Linux - Newbie 1 03-11-2005 09:11 AM
Cannot ping between 2 machines on same router acampbell Linux - Wireless Networking 8 02-24-2004 03:27 AM
Ping between machines triplem Linux - Networking 1 04-14-2003 05:17 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 06:45 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration