• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS.

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