• 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.

IDENTD and SMTP

W

wildbill442

Guest
I've tried searching for this on the forums and got inconsistant results hence this post..

Users on my network are complaining that it takes 30-45seconds to establish a SMTP connection with our plesk mail server. This is being caused by the IDENT Auth built into SMTP.. If I reject with-tcp-reset, packets that match the following conditions:

src-address=mailserver protocol=tcp dst-port=25

in the forward chain of my edge router users on remote networks don't see the delay, as expected. Users on the same subnet however still see the delay.

I've tried inputing this rule in the input/output/forward chains of the plesk server, but it doesn't seem to be rejecting the packets. It's almost like the plesk software is ignoring the IPTABLES rules, because I don't see them appear in the GUI. Nor do I have an option to use REJECT in the GUI... You can't just silently drop the IDENT packets otherwise the connection has to timeout still causing the delay...

SO, anyone have a solution for this? Why aren't my IPTABLES filter rules working? here's the exact syntax

iptables -A OUTPUT -p tcp --dport 113 -j REJECT --reject-with tcp-reset
 
I was using the wrong reject message.. tcp-reset wasn't working, so I tried icmp-host-prohibited, and it works like a charm!

Here's the syntax for you IPTABLES users:

iptables -I OUTPUT 1 -p tcp --dport 113 -j REJECT --reject-with icmp-host-prohibited
 
Back
Top