Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
iptables
View unanswered posts
View posts from last 24 hours

 
Reply to topic    Gentoo Forums Forum Index Networking & Security
View previous topic :: View next topic  
Author Message
Gentoo20
n00b
n00b


Joined: 14 Sep 2004
Posts: 12

PostPosted: Tue Sep 28, 2004 5:54 pm    Post subject: iptables Reply with quote

When I run: nmap -sT -O localhost

this is the results:

Port State Service
22/tcp open ssh
25/tcp open smtp
111/tcp open sunrpc
631/tcp open ipp

When I run: iptables -n -L

None of the ports are listed. How are the ports openned?

Where else are open/closed ports controled from?
Back to top
View user's profile Send private message
GatoVolador
Apprentice
Apprentice


Joined: 16 Jun 2004
Posts: 268
Location: California, USA

PostPosted: Tue Sep 28, 2004 8:06 pm    Post subject: Reply with quote

Hello there,

Recall that iptables can only filter what gets to the ports in question, it doesn't actually open or close any ports. Generally, the services themselves open the ports that they need. For example, you see port 22 open because you're probably running the ssh daemon. Port 631 open indicates you're probably using cups. I forget the services that use smtp and sunrpc. If you really want to close these ports (which is a good idea if you don't use the services in question,) find the service to which they correspond and disable it, usually with something like
Code:
rc-update del <service-script-name> default
Service scripts are found in /etc/init.d and you can see what services are running in what boot level (that's what the default means in the rc-update del command above) by using
Code:
rc-update show


Hope that helps,
Jay
Back to top
View user's profile Send private message
Gentoo20
n00b
n00b


Joined: 14 Sep 2004
Posts: 12

PostPosted: Tue Sep 28, 2004 8:55 pm    Post subject: Reply with quote

OK. Thanks.

I need to get port 80 to forward to another server. This is what I have but is not working:

Code:
[root@RedHat01 root]# iptables -t nat -n -L                                     Chain PREROUTING (policy ACCEPT)
target     prot opt source               destination
DNAT       tcp  --  0.0.0.0/0            0.0.0.0/0          tcp dpt:80 to:x.x.x.x

Chain POSTROUTING (policy ACCEPT)
target     prot opt source               destination

Chain OUTPUT (policy ACCEPT)
target     prot opt source               destination
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Networking & Security All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum