• 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!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    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.

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