Link to home
Start Free TrialLog in
Avatar of aduhwale
aduhwale

asked on

DNS issues with sendmail

Hi ee,  I have a linux server running sendmail for about 40 users.  I have branch offices connected via dsl and a head office via international leased line.  All my branch offices have local mail accounts on my server .  This server sends mail and receives via my head office.  The dns server is the ip at my head office.  My problem is this, when my link goes down (head office)  no mail goes out .  This i understand.  But even local mail doesnt get delivered.  Is there anyway to make it possible for my local mail to be delivered when the link is down to my head office?
Avatar of de2Zotjes
de2Zotjes
Flag of Netherlands image

You can add an extra service to your linux server. You could have it run a dns-server, if you configure this dns to be a secondary nameserver for your own (internal) domains then mail delivery to local accounts should be able to continue if the link is down.

It is a good idea to do this anyway, because the nameserver will cache info that it looked up, so the load on the leased line will go down if you run a dns-server at your site.
Adding to the previous comment, but with respect to the modest number of mail sending users, keep an eye on memory consumption by both the DNS (eg: bind as a cache) and the number of sendmail processes.  Bind can be configured to limit memory consumption to a maximum.  Remember to modify the DNS lookup sequence in /etc/resolv.conf, and send a SIGHUP to the name daemon to reread the new configuration.  

Architecturally, you may prefer to have a box dedicated to serving DNS, since it limits memory growth and context switches to that box, and can limit the number of people who can or need to administer the box (people * change = risk = bad).

Another tidbit of information that you might find interesting is a cacheing subsustem called Squid, which handles DNS, HTTP, and some other things that can benefit performance by being cached.   See: http://www.squid-cache.org/
Avatar of aduhwale
aduhwale

ASKER

Hi guys, thanks for your responses.  I went into webmin to look at creating a dns server and was blown away by the number of options.  What is the easy way to setting this up?
You didn't mention which Linux you're using...

On my Redhat 7.3 system using Gnome, there's a configuration for defining local zones:
programs -> system -> DNS Configuration

However, you might be better served by information from the Internet Systems Consortium, which publishes the BIND name server.  Sometimes it's just easier to start with a standard cacheing DNS configuration and manually add the information for your local site to a new zone that is served by the cache.
http://www.isc.org/index.pl?/sw/bind/contributions.php

Hi.  again ,  I am using fedora core 2
Hi guys, still looking for  a simple  solution to dns woes.
ASKER CERTIFIED SOLUTION
Avatar of viznogoud
viznogoud

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Hi there.  I added this and then rebuilt sendmail.mc .  It would appear I was using some configuration that I hadnt rebuilt?  coz now my secondary mail server  (602 lansuit) is unable to send via this server,  I can pick pop mail from it but it rejects the smtp connections,  I took out the change I made to add mailer(local) dnl in case it was the cause but same thing.       I guess I forgot to save before I made these changes.  Add idea why sendmail will reject smtp connections from my secondary mail server?

Hi again.  I saw what I messed up,  it is now fixed and the solution above has worked!

Thanks
Great, glad to be of help.