• We value your experience with Plesk during 2024
    Plesk strives to perform even better in 2025. To help us improve further, please answer a few questions about your experience with Plesk Obsidian 2024.
    Please take this short survey:

    https://pt-research.typeform.com/to/AmZvSXkx
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

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