SunQuest
           DNS
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Dev Shed ForumsSystem AdministrationDNS

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
Stop making mediocre tutorials.The best tutorials are video! Camtasia Studio makes it easy to create engaging, buzz-building screen videos at any size, in any popular format. Download the free trial!
  #1  
Old August 8th, 2003, 04:25 PM
Yamadatroy Yamadatroy is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Aug 2003
Location: Hawaii
Posts: 8 Yamadatroy User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Setting up second email

Aloha. I have been having trouble setting up a test email server in DNS. We are using Groupwise 6.5 and our current domain is hpsi.net. I have another email server running Groupwise 6.0 that I want to set up as test.hpsi.net. We have a window 2000 server doing internal DNS and a Caldera Openlinux 3.1 server doing external DNS. In the master zone, I tried to setup the test.hpsi.net zone similar to how our current email server is setup but to no avail. Do I need to set it up as a slave. stub, or forward zone or can I just add the entries into the hpsi.net master zone? I can supply more information if anyone would be able to help me. I have found a lot of documentation on how to set up DNS for an email server but not too much for a subdomain like what I am trying to do. Any help would be greatly appreciated.

Reply With Quote
  #2  
Old August 8th, 2003, 06:47 PM
SilentRage's Avatar
SilentRage SilentRage is offline
DNS/BIND Guru
Dev Shed Specialist (4000 - 4499 posts)
 
Join Date: Jun 2003
Location: OH, USA
Posts: 4,193 SilentRage User rank is Second Lieutenant (5000 - 10000 Reputation Level)SilentRage User rank is Second Lieutenant (5000 - 10000 Reputation Level)SilentRage User rank is Second Lieutenant (5000 - 10000 Reputation Level)SilentRage User rank is Second Lieutenant (5000 - 10000 Reputation Level)SilentRage User rank is Second Lieutenant (5000 - 10000 Reputation Level)SilentRage User rank is Second Lieutenant (5000 - 10000 Reputation Level)SilentRage User rank is Second Lieutenant (5000 - 10000 Reputation Level) 
Time spent in forums: 1 Week 5 Days 14 h 27 m 56 sec
Reputation Power: 77
stick the new entry into the hpsi.net master zone file.

Currently you have the following records:

hpsi.net. MX 55 hpsi3.hpsi.net.

hpsi3.hpsi.net. A 66.192.213.69

The top one associates the email address *@hpsi.net with the server "hpsi3.hpsi.net". The second record states the IP address for that server. Add these records:

hpsi.net. MX 56 test.hpsi.net.

test.hpsi.net. A 12.23.34.45

The top record associates a second server for all email sent to *@hpsi.net. The number is larger than the number in the first record, so it is a secondary server. It will only be used if the top server is down. The second record specifies a (bogus in the example) IP address for that server.

If however you want to associate the test server with a test email domain you add the following:

test.hpsi.net. MX 56 test.hpsi.net.

test.hpsi.net. A 12.23.34.45

Now you're associating the server "test.hpsi.net" with email destined for *@test.hpsi.net. Once again, you need to give it an email address.

So does that answer your question?
__________________
Send me a private message if you would like me to setup your DNS for you for a price of your choosing. This is the preferred method if your DNS needs to be fixed/setup fast and you don't have the time to bounce messages back and forth on a forum. Also, check out these links:

Whois Direct | DNS Crawler | NS Trace | Compare Free DNS Hosts

Reply With Quote
  #3  
Old August 8th, 2003, 07:57 PM
Yamadatroy Yamadatroy is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Aug 2003
Location: Hawaii
Posts: 8 Yamadatroy User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
As you suggested, I added the following lines to the config file:
test.hpsi.net. IN MX 60 test1.test.hpsi.net
test.hpsi.net. IN A 66.192.213.83
test1.test.hpsi.net IN A 66.192.213.83

Now when I use nslookup to ur DNS server, I get the following output:
> server 192.168.1.1
Default Server: [192.168.1.1]
Address: 192.168.1.1

> set q=any
> test.hpsi.net
Server: [192.168.1.1]
Address: 192.168.1.1

test.hpsi.net internet address = 66.192.213.83
test.hpsi.net MX preference = 60, mail exchanger = test1.test.hpsi.net
hpsi.net nameserver = ns1.hpsi.net
hpsi.net nameserver = bm03.hpsi.net
test1.test.hpsi.net internet address = 66.192.213.83
ns1.hpsi.net internet address = 66.192.213.77
bm03.hpsi.net internet address = 66.192.213.66
> hpsi.net
Server: [192.168.1.1]
Address: 192.168.1.1

hpsi.net nameserver = ns1.hpsi.net
hpsi.net
primary name server = ns1.hpsi.net
responsible mail addr = webmaster.hpsi.net
serial = 2003080817
refresh = 10800 (3 hours)
retry = 3600 (1 hour)
expire = 432000 (5 days)
default TTL = 38400 (10 hours 40 mins)
hpsi.net MX preference = 50, mail exchanger = hpsi3.hpsi.net
hpsi.net nameserver = bm03.hpsi.net
hpsi.net internet address = 66.192.213.69
hpsi.net nameserver = ns1.hpsi.net
hpsi.net nameserver = bm03.hpsi.net
ns1.hpsi.net internet address = 66.192.213.77
hpsi3.hpsi.net internet address = 66.192.213.69
bm03.hpsi.net internet address = 66.192.213.66

However, I am still unable to send email to the test.hpsi.net domain. Is there a problem with naming the second email server in the test.hpsi.net subdomain instead of the hpsi.net domain? Would I be better off making a new master zone on the DNS server? How long does it usually take for other DNS servers to update their records when I make an update on mine?

Once again I humbly thank you for any help that you can give me regarding this problem. I really appreciate it.

Reply With Quote
  #4  
Old August 8th, 2003, 08:43 PM
SilentRage's Avatar
SilentRage SilentRage is offline
DNS/BIND Guru
Dev Shed Specialist (4000 - 4499 posts)
 
Join Date: Jun 2003
Location: OH, USA
Posts: 4,193 SilentRage User rank is Second Lieutenant (5000 - 10000 Reputation Level)SilentRage User rank is Second Lieutenant (5000 - 10000 Reputation Level)SilentRage User rank is Second Lieutenant (5000 - 10000 Reputation Level)SilentRage User rank is Second Lieutenant (5000 - 10000 Reputation Level)SilentRage User rank is Second Lieutenant (5000 - 10000 Reputation Level)SilentRage User rank is Second Lieutenant (5000 - 10000 Reputation Level)SilentRage User rank is Second Lieutenant (5000 - 10000 Reputation Level) 
Time spent in forums: 1 Week 5 Days 14 h 27 m 56 sec
Reputation Power: 77
Well I can't guarantee nothing until you make both of your DNS servers agree on what's up with your zone. :-) Check this out:

Zone Transfer of 'bm03.hpsi.net' (66.192.213.66)

http://serialcoders.sytes.net/cgi-b...=AXFR&submit=DS

Zone Transfer of 'ns1.hpsi.net' (66.192.213.77)

http://serialcoders.sytes.net/cgi-b...=AXFR&submit=DS

Reply With Quote
  #5  
Old August 8th, 2003, 10:32 PM
Yamadatroy Yamadatroy is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Aug 2003
Location: Hawaii
Posts: 8 Yamadatroy User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Thanks for the helpful advice. I have modified the DNS records so that both servers are the same. Do I have to make another zone for test.hpsi.net? Or is it ok to have it mentioned in the lower priority mx record? Once again, I want to thank you for all of your help. You are the man! Mahalo.

Reply With Quote
  #6  
Old August 8th, 2003, 11:06 PM
SilentRage's Avatar
SilentRage SilentRage is offline
DNS/BIND Guru
Dev Shed Specialist (4000 - 4499 posts)
 
Join Date: Jun 2003
Location: OH, USA
Posts: 4,193 SilentRage User rank is Second Lieutenant (5000 - 10000 Reputation Level)SilentRage User rank is Second Lieutenant (5000 - 10000 Reputation Level)SilentRage User rank is Second Lieutenant (5000 - 10000 Reputation Level)SilentRage User rank is Second Lieutenant (5000 - 10000 Reputation Level)SilentRage User rank is Second Lieutenant (5000 - 10000 Reputation Level)SilentRage User rank is Second Lieutenant (5000 - 10000 Reputation Level)SilentRage User rank is Second Lieutenant (5000 - 10000 Reputation Level) 
Time spent in forums: 1 Week 5 Days 14 h 27 m 56 sec
Reputation Power: 77
Since one domain doesn't have both MX records it does not matter what you use as the preference/priority number. And no, do not create a new zone for the test server.

So is your test mail domain working now? It should be, my tests say that it is.

Reply With Quote
  #7  
Old August 9th, 2003, 11:49 AM
Yamadatroy Yamadatroy is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Aug 2003
Location: Hawaii
Posts: 8 Yamadatroy User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
SilentRage,
Thanks for all of your help. I won't be going back in to the office until Monday, but I am pretty sure that it is working now. I can ping the subdomain now and emails that I send to the second email server are not getting bounced back. I will post on Monday to let you know. Mahalo.

Reply With Quote
  #8  
Old August 11th, 2003, 09:59 PM
Yamadatroy Yamadatroy is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Aug 2003
Location: Hawaii
Posts: 8 Yamadatroy User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Thank you very much. The subdomain email server is working perfectly now. I truly appreciate all of your help. I will be setting up a spamassassin server in a few days to test spam filtering on the subdomain and I may have a few questions for you at that time. Hopefully I'll be able to figure it out though. Thanks again for all of your help.

Reply With Quote
Reply

Viewing: Dev Shed ForumsSystem AdministrationDNS > Setting up second email


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 2 hosted by Hostway