如何禁用FTP端口(Debian)?

时间:2015-10-12 13:23:02

标签: nginx ftp debian port

我是Debian的新手。我在Debian 6上打开了FTP端口(21)(系统的http服务器是Nginx)。我如何通过服务或某种方式停止或禁用端口?命令/etc/init.d/proftpd stop无效,它显示在控制台bash: /etc/init.d/proftpd: No such file or directory中,因为proftpd不存在。

2 个答案:

答案 0 :(得分:0)

输入此命令netstat -tnlp,您可以在端口21上找到正在运行的进程。

然后你可以自己做一些工作。

答案 1 :(得分:0)

如果你懒得停止服务运行,你可以写一个iptables规则

sbin/iptables -A INPUT -p tcp --destination-port {PORT-NUMBER-HERE} -j DROP