1754975 Members
3321 Online
108828 Solutions
New Discussion юеВ

Re: open port 25

 
Ragni Singh
Super Advisor

open port 25

In linux, what command would you use to open port 25 for outbound mail. How do I check it.

service sendmail, shows its running but we can't seem to send e-mail out.

Points will be assigned.
3 REPLIES 3
Ragni Singh
Super Advisor

Re: open port 25

in the /etc/sysconfig/sendmail, change daemon from no to yes, restart sendmail.
Ralf Hildebrandt
Valued Contributor

Re: open port 25

a) You'd have to check if "iptable" are maybe blocking outbound connections ("iptables -L")

b) Then you'd have to check if your routers or firewalls are blocking port 25 outbound

c) Then you'd have to check if your ISP is blocking port 25 outbound

In any case you can use:

% telnet mail.charite.de 25

to check if you can create outbound connections.

Postfix/BIND/Security/IDS/Scanner, you name it...
{-_-}
New Member

Re: open port 25

Sanjit,



netstat -nap | grep :25 and see if there are any local connections listening on that port. Daemons (such as sendmail) will typically open and close ports as needed without any user intervention needed. Good luck with your issue.




ken