hermes whatsapp hermes gateway New-NetFirewallRule -DisplayName "Web via WireGuard" -Direction Inbound `` -Protocol TCP -LocalPort 8080 -RemoteAddress 10.8.0.1 -Action Allow python -m http.server 8080 --bind 0.0.0.0 New-NetFirewallRule -DisplayName "Web via WireGuard" -Direction Inbound `` -Protocol TCP -LocalPort 8080 -RemoteAddress 10.8.0.1 -Action Allow Get-NetFirewallApplicationFilter |` Where-Object Program -like "*python*" |` Get-NetFirewallRule |` Select-Object DisplayName, Direction, Action, Enabled Get-NetFirewallApplicationFilter |` Where-Object Program -like "*python*" |` Get-NetFirewallRule |` Where-Object Action -eq "Block" |` Remove-NetFirewallRule Get-NetFirewallApplicationFilter |` Where-Object Program -like "*python*" |` Get-NetFirewallRule |` Select-Object DisplayName, Direction, Action, Enabled netstat -ano | findstr :8080 python -m http.server 8080 --bind 0.0.0.0 netstat -ano | findstr :8080 ping 10.8.0.1 Set-NetFirewallProfile -Profile Public -Enabled False Set-NetFirewallProfile -Profile Public -Enabled True New-NetFirewallRule -DisplayName "WireGuard Web 8080" -Direction Inbound `` -Protocol TCP -LocalPort 8080 -RemoteAddress 10.8.0.0/24 `` -Profile Any -Action Allow