• Inviting everyone who uses WordPress management tools in Plesk
    The Plesk team is conducting a 60-minute research session that includes an interview and a moderated usability test.
    To participate, please use this link .
    Your experience will help shape product decisions and ensure the tools better support real-world use cases.

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