- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Port 25
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2001 10:37 AM
10-10-2001 10:37 AM
I'm configuring one of my HPUX box(host1) to send out mails(within LAN). When I tried to send mails to user on another host (test01@host2.mydomain.com), it's OK when I verify with "sendmail -bv":
test01@host2.... deliverable: mailer smtp, host, user test01@host2.
but when I really sent it, I got this:
test01@host2... Deferred: Connection timed out with host2.mydomain.com
in host2, sendmail is runing, using ps -ef|grep sendmail, I got "sendmail: accepting connections on port 25"
when I tried port 25 on host2 from host1, using "telnet host2 25" I also got timeout, so why can't host1 talk to host2 through port 25?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2001 10:44 AM
10-10-2001 10:44 AM
Re: Port 25
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2001 10:46 AM
10-10-2001 10:46 AM
Re: Port 25
First make sure that
both hosts are in your etc/hosts file
and could you please post what you get when you do
sendmail -v test01@host2
try it both my hostname and ip
aslso check
/etc/services for this line
smtp 25/tcp # Simple Mail Transfer Protocol
make sure it is not commented out
Richard
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2001 11:15 AM
10-10-2001 11:15 AM
Re: Port 25
host1 is also a dns server, when I issue nslookup host2 on host1 it's ok.(they are in the same sub-net)
when I issue sendmail -v test01@host2, I got this:
test01@host2... Connecting to host2.mydomain.com. via smtp...
test01@host2... Deferred: Connection timed out with host2.mydomain.com.
The other thing is, I can telnet to port 25 of the host itself(in host1 "telnet host1 25", or in host2 "telnet host2 25" both suceeded), but if "telnet host2 25" on host1, I got timeout.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2001 11:22 AM
10-10-2001 11:22 AM
SolutionI am hoping that you are able to telnet
from each other.
Make sure your haven't commented out 25/tcp in your /etc/services file.
Make sure you are allowing SMTP in /var/adm/inetd.sec
Make sure you are not using any firewalls in between.
If the sendmail daemon is not active, you will get a connection refused message when telnet at the port 25.
It's most likely a firewall issue or /var/adm/inetd.sec issue (this also gives connection refused)
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2001 11:44 AM
10-10-2001 11:44 AM
Re: Port 25
I see you got it going ..
what specifly was the problem.
Richard
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-11-2001 10:59 AM
10-11-2001 10:59 AM
Re: Port 25
Ovidiu