我是Debian的新手。我在Debian 6上打开了FTP端口(21)(系统的http服务器是Nginx)。我如何通过服务或某种方式停止或禁用端口?命令/etc/init.d/proftpd stop
无效,它显示在控制台bash: /etc/init.d/proftpd: No such file or directory
中,因为proftpd
不存在。
答案 0 :(得分:0)
输入此命令netstat -tnlp
,您可以在端口21上找到正在运行的进程。
然后你可以自己做一些工作。
答案 1 :(得分:0)
如果你懒得停止服务运行,你可以写一个iptables规则
sbin/iptables -A INPUT -p tcp --destination-port {PORT-NUMBER-HERE} -j DROP