• The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    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. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

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