• Debian 11 has reached its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.81 is the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

Firewall blocking out

O

omegauser

Guest
Hi,

Yesterday I have just activate the Plesk Firewall, configuring "allow all incomming" but now I can access to the control panel via 8443 port!!

Did I do something wrong?
How do I fix it??

Thanks!
 
Originally posted by omegauser
Hi,

Yesterday I have just activate the Plesk Firewall, configuring "allow all incomming" but now I can access to the control panel via 8443 port!!

Did I do something wrong?
How do I fix it??

Thanks!

I'm sorry, I don't understand. You said your configured "allow all incoming" but now you "can" access the control panel via port 8443.

It is my understanding that port 8443 is the port that Plesk uses to access the control panel, therefore if you "can" access it, you are correct.
 
Sorry,

I can't Access to my control panel.
It blocked my out, is my best guess.

How can I fix it?
 
Try running this script:

#/sbin/iptables -A INPUT -p tcp --dport 8443 -j ACCEPT

This will give access to anyone trying to connect to port 8443

If you prefer to limit access to your own ip address, use this:

#/sbin/iptables -A INPUT -p tcp --dport 8443 -s xx.xx.xx.xx -j ACCEPT
#/sbin/iptables -A INPUT -p tcp --dport 8443 -j DROP


Replace the "xx.xx.xx.xx" with your ip address.
 
Back
Top