LinuxQuestions.org
Share your knowledge at the LQ Wiki.
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 07-13-2005, 12:01 PM   #1
Davin Church
LQ Newbie
 
Registered: Jul 2005
Posts: 5

Rep: Reputation: 0
Unhappy Inherited system security problem


Ok ... I'm lost. An old friend of mine passed away a few months ago and I've taken over responsibility for keeping his Red Hat system running. He was an expert in this area, but the majority of my *nix knowledge (what little there is) comes from a thousand years ago (well, more like the early 80's). So I'm quite lost here just trying to figure out what all the pieces are (and are named).

The system is running (and yes, I have the root password) and booting up tells me that I'm running Red Hat v2.4.20-8 (on a slow Intel box). (I'm afraid to patch or upgrade it until I'm more confident in what I'm doing.)

In the past, he had everything running nicely, and it had several services running on it including a small web site. He also had some kind of advanced (self-adjusting, I think) security installed on it to keep out the hackers and SKs. I don't want to undo all this hard (and good) work and try to rebuild everything from scratch. For one thing, I don't have time to re-learn this entire (new-to-me) world. Even though I'm an experienced programmer and knowledgable about many other things, there's just too much knowledge to try to absorb all at once.

The specific problem that I'm having at the moment is that the web site is inaccessible, and I need to get it up and running again fairly quickly. I can get at it from inside the home network just fine, but from outside the firewall I'm getting no response at all (it just times out). From these symptoms, and the fact that it used to be running fine, it sounds to me like Apache is working properly but that some security device has automatically turned off access from the outside world. However, I can't find where it might be getting blocked in order to repair it.

I think it's important to the problem that the connection is (currently) running on a dynamic IP address, and because of that all requests are being routed through NO-IP.com. I've checked NO-IP and everything seems to be fine there (correct addresses & such). However, that means (as I understand it) that NO-IP redirects all requests in real time, so that any incoming packets probably appear to originate from NO-IP's servers. If so, then that might easily explain why a security system might have auto-blocked such an address (if hacking attempts had all been labelled with it) and then why such a blockage would then affect all other users in the world.

There is a Linksys hardware firewall in front of the box, but it also seems to be correctly configured.

I've wandered around the system a bit (quite clumsily) and made a few non-discoveries:
* iptables has no rules
* ip6tables says it can't find the 'filter' table
* ipchains complains about being incompatible and refuses to run

So, my guess is that my next step is to figure out what is blocking external requests. (From there I can then research enough to figure out how to change it.) So, unless someone has a better idea or something else to try, here's the big question:

What can I do to figure out what security system is (auto-)blocking incoming packets?

TIA for any help I can get!
 
Old 07-13-2005, 01:01 PM   #2
shane25119
Member
 
Registered: Aug 2003
Location: Illinois
Distribution: Linux Mint XFCE
Posts: 654

Rep: Reputation: 53
I can't answer much but I'll take a stab at it.

For allowing the system to be seen from the outside world....

In the router check to see that port 80 forwarding is enabled for http requests to the local IP that the server is at.
 
Old 07-13-2005, 01:06 PM   #3
Davin Church
LQ Newbie
 
Registered: Jul 2005
Posts: 5

Original Poster
Rep: Reputation: 0
Quote:
Originally posted by shane25119
In the router check to see that port 80 forwarding is enabled for http requests to the local IP that the server is at.
Yes, it is. Any other ideas?
 
Old 07-13-2005, 02:22 PM   #4
shane25119
Member
 
Registered: Aug 2003
Location: Illinois
Distribution: Linux Mint XFCE
Posts: 654

Rep: Reputation: 53
One thing I have found, sometimes No-Ip will get the IP wrong. So you may want to login to no-ip and check that the IP listed there and the one you see in your router statistics page match.

If that fails try the following commands

killall no-ip
killall apache
apache
no-ip

This will have the effect of stopping No-IP and apache and starting them again, amazingly it actually works quite well.

Keep me posted on progress

Shane
 
Old 07-13-2005, 02:55 PM   #5
Davin Church
LQ Newbie
 
Registered: Jul 2005
Posts: 5

Original Poster
Rep: Reputation: 0
Quote:
Originally posted by shane25119
One thing I have found, sometimes No-Ip will get the IP wrong. So you may want to login to no-ip and check that the IP listed there and the one you see in your router statistics page match.
I've done that, and they match exactly.
Quote:
If that fails try the following commands

killall no-ip
killall apache
apache
no-ip

This will have the effect of stopping No-IP and apache and starting them again, amazingly it actually works quite well.
I can certainly give that a try. But I've rebooted the whole system a number of times -- are you expecting this to do something that rebooting hasn't already accomplished?
 
Old 07-13-2005, 03:33 PM   #6
Looking_Lost
Senior Member
 
Registered: Apr 2003
Location: Eire
Distribution: Slackware 12.0, OpenSuse 10.3
Posts: 1,120

Rep: Reputation: 45
I guess another couple of steps to check are:

Can you access the server from outside of the network using the external ip address rather than the website name?

Are there any entries in /etc/hosts.deny /etc/hosts.allow that might affect it ?

Apache isn't listening on 127.0.0.1 is it? (Guess it isn't though as you wouldn't be able to access it from inside the network from another computer)
 
Old 07-14-2005, 05:45 AM   #7
Davin Church
LQ Newbie
 
Registered: Jul 2005
Posts: 5

Original Poster
Rep: Reputation: 0
AHA! Found it!

It WAS NO-IP, after all. It turns out that what I thought they said they were routing to wasn't the routing address at all. So I've obviously got a failure to keep their system updated, and I can figure out how to deal with that, now that I know what to look for.

Thanks much for all your help!!!

(My next problem will be doing a trick with virtual hosting, splitting one incoming address+port into two machines based on host name. I'm hoping to deduce the right settings from the Apache docs.)
 
Old 07-14-2005, 11:53 AM   #8
shane25119
Member
 
Registered: Aug 2003
Location: Illinois
Distribution: Linux Mint XFCE
Posts: 654

Rep: Reputation: 53
There are other virtual hosts out there you can use other than No-Ip, just google for virtual hosts
 
Old 07-14-2005, 12:04 PM   #9
Davin Church
LQ Newbie
 
Registered: Jul 2005
Posts: 5

Original Poster
Rep: Reputation: 0
Quote:
Originally posted by shane25119
There are other virtual hosts out there you can use other than No-Ip, just google for virtual hosts
Thanks. I'll keep that in mind. But if things progress well enough, I'll be considering switching to a static IP for simplicity.
 
  


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
inherited permissions with NFS elbe3321 Linux - Networking 1 10-25-2005 12:13 AM
Here's a Doozy, just inherited a problem. jrwizzard Linux - Software 3 12-03-2004 08:19 PM
mqueue is 29GB. yes it's an inherited system pete-wilko Linux - Networking 0 07-09-2004 05:31 AM
Inherited computer with RedHat 5.2 no-login VividNewbie Linux - Newbie 5 12-04-2003 08:49 AM
inherited laptop centr0 General 3 04-23-2003 02:36 PM

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

All times are GMT -5. The time now is 10:28 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