Solved

FME Server Web UI and the Firewall

  • 25 October 2016
  • 2 replies
  • 29 views

Userlevel 3
Badge +13

What ports do I need to open on my firewall to ensure I have full functionality of the FME Server WebUI?

icon

Best answer by steveatsafe 25 October 2016, 01:47

View original

2 replies

Badge +11

For full functionality of the FME Server Web UI you'll need to open port 80 (if https port 443) and port 7078. Port 7078 is for topic monitoring which uses websockets.

Badge +8

Run from an elevated CMD or Powershell:

netsh advfirewall firewall add rule name="Open Port 80" dir=in action=allow protocol=TCP localport=80
netsh advfirewall firewall add rule name="Open Port 443" dir=in action=allow protocol=TCP localport=443
netsh advfirewall firewall add rule name="Open Port 7078" dir=in action=allow protocol=TCP localport=7078
 
netsh advfirewall firewall add rule name="Open Port 80" dir=out action=allow protocol=TCP localport=80
netsh advfirewall firewall add rule name="Open Port 443" dir=out action=allow protocol=TCP localport=443
netsh advfirewall firewall add rule name="Open Port 7078" dir=out action=allow protocol=TCP localport=7078

I don't know why this is left as an exercise to the user. It's straightforward once the command parameter synax is sorted out.

Reply