在Linux中,关闭端口的命令是使用iptables防火墙规则来实现的。具体的命令是:
sudo iptables -A INPUT -p tcp --dport <port_number> -j DROP
其中,<port_number>是要关闭的端口号。执行此命令后,将会阻止所有传入该端口的TCP连接。请注意,需要使用root权限或者以root用户身份执行此命令。
<port_number>