Firewall for Windows: Difference between revisions
From KlavoWiki
Jump to navigationJump to search
No edit summary |
No edit summary |
||
(2 intermediate revisions by the same user not shown) | |||
Line 4: | Line 4: | ||
netsh advfirewall firewall add rule name="Minecraft-UDP" dir=in action=allow protocol=UDP localport=25565 | netsh advfirewall firewall add rule name="Minecraft-UDP" dir=in action=allow protocol=UDP localport=25565 | ||
netsh advfirewall firewall add rule name="Rust" dir=in action=allow protocol=UDP localport=28015 | netsh advfirewall firewall add rule name="Rust" dir=in action=allow protocol=UDP localport=28015 | ||
</pre> | |||
<pre> | |||
netsh advfirewall firewall add rule name="ICMP Allow ICMPv6 Echo Request" protocol=icmpv6:128,any dir=in action=allow | |||
netsh advfirewall firewall add rule name="ICMP Allow ICMPv4 Echo Request" protocol=icmpv4:8,any dir=in action=allow | |||
</pre> | |||
<pre> | |||
netsh advfirewall firewall add rule name="SMB" dir=in action=allow protocol=TCP localport=445 | |||
</pre> | </pre> | ||
Latest revision as of 02:05, 10 November 2024
Allow Ports
netsh advfirewall firewall add rule name="Minecraft-TCP" dir=in action=allow protocol=TCP localport=25565 netsh advfirewall firewall add rule name="Minecraft-UDP" dir=in action=allow protocol=UDP localport=25565 netsh advfirewall firewall add rule name="Rust" dir=in action=allow protocol=UDP localport=28015
netsh advfirewall firewall add rule name="ICMP Allow ICMPv6 Echo Request" protocol=icmpv6:128,any dir=in action=allow netsh advfirewall firewall add rule name="ICMP Allow ICMPv4 Echo Request" protocol=icmpv4:8,any dir=in action=allow
netsh advfirewall firewall add rule name="SMB" dir=in action=allow protocol=TCP localport=445
To disable the firewall
netsh advfirewall set allprofiles state off
To enable the firewall
netsh advfirewall set allprofiles state on