closing open ports


 
Thread Tools Search this Thread
Special Forums Cybersecurity closing open ports
# 1  
Old 09-24-2001
closing open ports

/* Linux Slackware */

Nmap shows the following ports open on the gateway.

21/tcp ftp
22/tcp ssh
23/tcp telnet
25/tcp smtp
37/tcp time
80/tcp http
113/tcp auth
515/tcp printer
587/tcp submission
1024/tcp kdm
6000/tcp x11

-------------------------------

i would like to close as many ports as possible, at the very least ftp and telnet.. Are there any other ports on this list that i should or should not close?? This is our gateway and its sole purpose is to provide internet connectivity for the office.

any advise is appriciated..

e0---
# 2  
Old 09-24-2001
I would also keep ssh open to allow for
remote monitoring and administration.
You may also wish to use ssh to "tunnel"
through to an internal system. It really
comes in handy when you get a call in the middle
of the night Smilie
# 3  
Old 09-24-2001
Re: closing open ports

If configured only for routing:


21/tcp ftp (COMMENT OUT IN INETD.CONF)
22/tcp ssh (KEEP THIS FOR REMOTE MGT)
23/tcp telnet (COMMENT OUT IN INETD.CONF)
25/tcp smtp (COMMENT OUT IN START UP SCRIPTS)
37/tcp time (YOU MAY WANT THIS FOR REMOTE MGT)
80/tcp http (YOU MAY WANT THIS FOR REMOTE MGT, OTHERWISE COMMENT OUT)
113/tcp auth (KEEP FOR OTHER DAEMONS TO USE)
515/tcp printer (COMMENT OUT IN STARTUP SCRIPTS)
587/tcp submission (COMMENT OUT IN STARTUP SCRIPTS)
1024/tcp kdm (COMMENT OUT IN STARTUP SCRIPTS)
6000/tcp x11 (COMMENT OUT IN START UP SCRIPTS)


Don't forget to enable route filtering and use FW (packet filtering) tools.
# 4  
Old 09-27-2001
stupid question, but

where can i find the inetd.conf file..


find / inetd.conf doesnt do it..


thanks

e0-
# 5  
Old 09-27-2001
normally inetd.conf is located in /etc


The find command should find it...

find / -name inetd.conf -print
# 6  
Old 09-27-2001
thanks, i got it..

Once I have made the changes, how do I apply them without restarting the machine???

e0--
# 7  
Old 09-27-2001
restart inetd process

Here it is-

So far everything is good, you just wanna re-start inetd...

In Linux, you could use the service comand, but normally, all you need to do is "ps -ef | grep inet", now get the PID of the inetd proc, take that and send it a "kill -SIGUSR1" (see your kill manpage for a better idea of what signal to send), this will force the inetd process to re-scan it's conf file.


As I said, READ the kill man page BEFORE doing this, make sure you get the right signal, otherwise, you may kill inetd completely, and not be able to telnet (or anything) in to restart it. Another good idea is to be at the console if you are re-configging network stuff, just for safety's sake.



Later,


loadc
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Closing open file descriptors from /proc/pid/fd

Hi guys, i need to write a shell script that will close file descriptors from /proc/pid/fd will calling exec 4<&- solve the problem ? thanks in advance :) (15 Replies)
Discussion started by: alpha_romeo
15 Replies

2. IP Networking

Open/close of ports

Hi, I have read some forum theads about the open and close ports. some points are clear and it is not working on my machine or something am i missing? I have commented out a port /etc/services, one application uses then when i use the telnet <hostname> <port_blocked> it shows connected..... (1 Reply)
Discussion started by: balamv
1 Replies

3. UNIX for Dummies Questions & Answers

open ports and services

just a quick question: a. whats the simplest command to check open port and the corresponding services? example: bash-2.05# netstat -an | grep LISTEN *.199 *.* 0 0 49152 0 LISTEN *.8989 *.* 0 0 49152 ... (1 Reply)
Discussion started by: lhareigh890
1 Replies

4. Shell Programming and Scripting

closing unwanted open ports using scripts

i have a text file i.e file1.txt which shows open ports on particular system. i have another text file i.e file2.txt which shows a list of allowed ports on a system. for eg: file2.txt 22/tcp ssh 23/tcp telnet. can i have a script which would compare these text files ,file1 and file2 ... (1 Reply)
Discussion started by: anand121
1 Replies

5. Solaris

Open ports in solaris 10

hi guys, may i know the exact steps to open a port in solaris.i have some rough idea - which is adding the port number in /etc/services. but i am not sure the correct conventions, steps or any other steps. kindly advise.thanks guys ! (1 Reply)
Discussion started by: cromohawk
1 Replies

6. Solaris

open ports solaris 8

Hello, I have a number of Solaris 8 Sun servers that have open ports that I cannot identify. I see some with 1013-1023 (which are reserved ports according to the IANA. Lsof does not identify these. I rebooted the server and they went off, but this morning I saw they were all back on again. Any... (1 Reply)
Discussion started by: csgonan
1 Replies

7. Shell Programming and Scripting

Check open ports every ...

Hello, i need a script (bash type maybe?..), which would check open ports on 127.0.0.1 and then compare open ports with "registered/allowed" port list and try to kill the program who uses unregistered ports. It would be great that script would be started lets say every 5 or 10 minutes. You see i... (2 Replies)
Discussion started by: MorchiuS
2 Replies

8. IP Networking

Closing out ports???

Hi all Is there a command that I can use to close out open ports? I did a netstat - a -p and got a long list of ports open (see sample below). I have disabled the some of the applications from /etc/services/. But there are still applications listening on certain ports. I need to know how to... (6 Replies)
Discussion started by: skotapal
6 Replies

9. Cybersecurity

firewall vs. closing ports

This may be kind of a stupid question, but here goes: Say I'm running a FreeBSD webserver (w/apache). I've managed to close ALL open ports (including SSH/telnet and portmapper), excepting '80' that apache is listening on. A netstat -a shows me nothing open. Discounting DoS/DDoS or holes in... (7 Replies)
Discussion started by: adam_crosby
7 Replies
Login or Register to Ask a Question