关于如何阻止使用网络端口或当前正在使用的网络端口的任何想法?例如,假设我想阻止使用端口 23。通过使用,我的意思是允许连接到它或从它连接。
提前致谢。
该解决方案需要通过命令行完成,但是您可以使用 python 的 os 库来运行脚本。此链接也是一个类似的问题(只是使用不同的端口),因此您可以调整该命令,然后通过以下脚本运行它
import os
# specify the command prompt command you need to be run
command = 'netsh advfirewall firewall add rule name="BlockAIM" protocol=TCP dir=out remoteport=23 action=block'
# assign variable to the command
output = os.popen2(command)
# To get output call output.read()
以下脚本阻止传出请求,因此您需要使用 dir=in 重复该过程