It appears from those logs you also have a non standard SME Server setup as "accept-it!" and "drop-it" have never been a part of a clean SME Server set up.
See snip from my logs
Feb 15 10:49:28 <server-name> denylog: IN=eth1 OUT= MAC=00 SRC=xxx.xxx.xxx.xxx DST=xxx.xxx.xxx.xxx LEN=64 TOS=00 PREC=0x00 TTL=127 ID=56882 CE DF PROTO=TCP SPT=3793 DPT=21 SEQ=1486997470 ACK=0 WINDOW=65535 SYN URGP=0
That was the tip I needed! Pretty embarrassing, but I did set up a little bit of iptables when setting up the ftp server a while ago. I just re-found this file:
/etc/e-smith/templates-custom/etc/rc.d/init.d/masq/40allowsome:
##allow 218.149 but log
/sbin/iptables -A INPUT -p tcp --dport 21 -m state --state NEW -j LOG --log-prefix accept-it!
/sbin/iptables -A INPUT -p tcp --dport 20 -m state --state NEW -j LOG --log-prefix accept-it!
/sbin/iptables -A INPUT -s 218.149.0.0/16 -j ACCEPT
/sbin/iptables -A INPUT -s 78.27.0.0/16 -j ACCEPT
/sbin/iptables -A INPUT -p tcp -m state --state NEW -j LOG --log-prefix drop-it!
/sbin/iptables -A INPUT -p tcp -m state --state NEW -j DROP
A good precaution.
I am sure it will work now:-)
Hans-Cees