|
Extraordin-Air Team Final Project
|
|
|
Project #11 (first part)
Turn off all network services except: telnet, ssh, ftp, www, smtp
NOTE: other services were left running (or started) as needed by othe projects
-
Use "netstat -uta" to find out what is running
-
need to start telnet and ftp for this project item
change "disable" line in /etc/xinetd.d/telnet to no
change "disable" line in /etc/xinetd.d/wu-ftpd to no
-
restart inet "service xinetd restart"
-
Assume www will be started as part of the web page item
-
Assume appropriate NIS daemons will be started as part of the NIS item
-
Use "netstat -uta" to confirm that the items listed above were started
-
Modify /etc/sysconfig/ipchains to add:
-A input -s 192.104.59.45 -d 192.104.59.48 23 -p tcp -y -j ACCEPT
-A input -s 192.104.59.46 -d 192.104.59.48 23 -p tcp -y -j ACCEPT
-A input -s 192.104.59.47 -d 192.104.59.48 23 -p tcp -y -j ACCEPT
-A input -s 192.104.59.49 -d 192.104.59.48 23 -p tcp -y -j ACCEPT
-A input -s 192.104.59.45 -d 192.104.59.48 21 -p tcp -y -j ACCEPT
-A input -s 192.104.59.46 -d 192.104.59.48 21 -p tcp -y -j ACCEPT
-A input -s 192.104.59.47 -d 192.104.59.48 21 -p tcp -y -j ACCEPT
-A input -s 192.104.59.49 -d 192.104.59.48 21 -p tcp -y -j ACCEPT
|
|
|
|