• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.

Firewall - UDP ports

R

R3N3GADE

Guest
Hi,

I need to open some UDP ports on the plesk firewall.
I understand I have to edit the "pfwmng.js" in admin/bin.

This is the default config:
PHP:
var PortsUDP = new Array ("0", 53, 53, 0, 123, 123);
I wanted to open port 7777. So I changed it to:
PHP:
var PortsUDP = new Array ("0", 53, 53, 0, 123, 123, 7777, 7777);
That didnt work, but this did:
PHP:
var PortsUDP = new Array (123, 123, 7777, 7777);
Do I need to have the "0" & "53" in there?
 
Back
Top