Hi,
Someone can be able to explain me why port 465 works on my CSF Firewall ? I don't have set this port in TCP_OUT and TCP6_OUT. When I use below command, it works.
openssl s_client -connect smtp.gmail.com:465
In CSF I found in Firewall Configuration these parameters but I don't know how they compare to TCP_OUT
SMTP_BLOCK = ON
SMTP_ALLOWLOCAL = ON
SMTP_PORTS = 25,465,587
Port 465 is working but TCP_OUT and TCP6_OUT do not exist
-
- Junior Member
- Posts: 3
- Joined: 21 Dec 2022, 05:06
Re: Port 465 is working but TCP_OUT and TCP6_OUT do not exist
Remember that SMTP uses an OUT port to deliver emails, so, the command:
means that SMPT can use those ports to send info (on this case emails), so, that is why port 465 is open.SMTP_PORTS = 25,465,587
-
- Junior Member
- Posts: 3
- Joined: 21 Dec 2022, 05:06
Re: Port 465 is working but TCP_OUT and TCP6_OUT do not exist
Thank you for the explanation.