Add OTA port to firewall script (#1397)

This commit is contained in:
Butterscotch!
2025-04-19 12:22:14 -04:00
committed by GitHub
parent bf9a7fe7f4
commit 8e7070d257

View File

@@ -23,6 +23,9 @@ call :AddRule "SlimeVR TCP 21110 outgoing" "dir=out action=allow protocol=TCP lo
rem OpenJDK Platform Binary access
call :AddRule "SlimeVR OpenJDK Platform incoming" "dir=in action=allow program=%~dp0jre\bin\java.exe enable=yes"
call :AddRule "SlimeVR OpenJDK Platform outgoing" "dir=out action=allow program=%~dp0jre\bin\java.exe enable=yes"
rem ESP8266 OTA default port
call :AddRule "SlimeVR UDP 8266 incoming" "dir=in action=allow protocol=UDP localport=8266 enable=yes"
call :AddRule "SlimeVR UDP 8266 outgoing" "dir=out action=allow protocol=UDP localport=8266 enable=yes"
echo Done!
pause