- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- sendmail using another IP address
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
03-17-2006 09:14 AM
03-17-2006 09:14 AM
I have a HPUX box that has 3 IP addresses (1 nic). 2 IP addresses are registered in the
public domain. Can I use 1 registered IP for
sendmail traffic? If so, what will be the line
in sendmial.cf? Any input is appreciated.
Thanks,
Lynn
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-17-2006 12:46 PM
03-17-2006 12:46 PM
SolutionOOAddr=1.2.3.4
Substituting your TCP/IP address for 1.2.3.4. This Sendmail option is explained in the "Options" chapter of the O'Reilly Sendmail book.
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2006 08:11 AM
03-18-2006 08:11 AM
Re: sendmail using another IP address
If other machines are going to use the HP-UX machine to send mail, you will need to authorize relay very carefuly in the /etc/mail/access file.
Format:
IP adrress RELAY
Example
192.168.0.15 RELAY
Don't authorize relay for all IP addresses or the spammers will figure it out and use your server to relay mail.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2006 09:39 AM
03-20-2006 09:39 AM
Re: sendmail using another IP address
I tried the OOAddr= option in sendmail.cf. Restarted sendmail, test mail
still can not go out to the internet. I suspect it's DNS issue. Somehow, the outgoing mail will go thr DNS to resolve the
recepient's mail server name... It timed out... Is there anyway to get around DNS?
I have not tried "access" file. How do I build this access.db if I modify access file?
Of course, I still need to figure what's wrong with DNS on this box. It has named
running but can not query external host.
Is there a external "relay" to DNS configuration?
At this point, I want to get mail to send
out. So please help if you have any idea. Thanks million!
Lynn
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2006 01:00 AM
03-21-2006 01:00 AM
Re: sendmail using another IP address
For a DNS server, you want to setup forwarders in your named.conf - these should be the DNS servers from your Internet Provider:
options {
directory "/etc/namedb";
forwarders {
X.X.X.1; X.X.X.2; // this is a comment };
forward only; // while in transition
};
Then restart named.
In /etc/nsswitch.conf - check hosts line - should be something like:
hosts: files [NOTFOUND=CONTINUE] dns
If hosts first, make sure you have the FQDN by your host name.
192.168.2.1 svr003 svr003.yourdomain.net
Rgds...Geoff