dos新版命令之防火墙

2019-10-15 11:23:01 浏览数 (1)

代码语言:javascript复制
net start MpsSvc           //开启服务

sc config MpsSvc start= auto   //开机启动

netsh advfirewall set allprofiles state on     //启用防火墙

netsh advfirewall firewall add rule name="Allow Ping" dir=in protocol=icmpv4 action=allow

netsh advfirewall firewall add rule name="FTP" protocol=TCP dir=in localport=20 action=allow

netsh advfirewall firewall add rule name="SSH" protocol=TCP dir=in localport=22 action=allow

netsh advfirewall firewall add rule name="Telnet" protocol=TCP dir=in localport=23 action=allow

netsh advfirewall firewall add rule name="SMTP" protocol=TCP dir=in localport=25 action=allow

netsh advfirewall firewall add rule name="TFTP" protocol=UDP dir=in localport=69 action=allow

netsh advfirewall firewall add rule name="POP3" protocol=TCP dir=in localport=110 action=allow

netsh advfirewall firewall add rule name="HTTPS" protocol=TCP dir=in localport=443 action=allow

netsh advfirewall firewall add rule name="Netbios-ns" protocol=UDP dir=in localport=137 action=allow

netsh advfirewall firewall add rule name="Netbios-dgm" protocol=UDP dir=in localport=138 action=allow

netsh advfirewall firewall add rule name="Netbios-ssn" protocol=TCP dir=in localport=139 action=allow

netsh advfirewall firewall add rule name="Netbios-ds" protocol=TCP dir=in localport=445 action=allow

netsh advfirewall firewall add rule name="HTTP" protocol=TCP dir=in localport=80 action=allow

netsh advfirewall firewall add rule name="HTTP" protocol=TCP dir=in localport=8080 action=allow

0 人点赞