• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

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