• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

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