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 December 20th, 2003, 08:38 AM
rvamerongen rvamerongen is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Dec 2003
Posts: 77 rvamerongen User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 Day 11 h 36 m 57 sec
Reputation Power: 5
Responsible person record

Hello everyone,

I was wondering if anybody could tell me how to create a associated TXT record which is needed for RP record?

I'm not aware from any samples available and I'm not sure what to type and how to go about doing this.

I am using the dns from win2k

Thanks in advanced to anybody who can help me out,

Rene

Reply With Quote
  #2  
Old December 20th, 2003, 09:36 AM
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
Here's an example zone transfer from my server. It includes the RP record and the text domain.

http://www.dollardns.net/cgi-bin/dn...=AXFR&submit=DS

Here's a type ANY lookup for the example.com root domain. It shows you an RP record. Click the link "contact.example.com" and you'll see just the TXT records under the text domain.

http://www.dollardns.net/cgi-bin/dn...e=ANY&submit=DS

And that's how it works. It is the most common usage of RP text domains - for contact information. Another example can be found at yahoo.com:

http://www.dollardns.net/cgi-bin/dn...e=ANY&submit=DS

Once again click the contact.yahoo.com link for contact info.

In the master file it looks something like this:
Code:
$ORIGIN example.com.
...
@		RP	SilentRage.example.com. contact

contact		TXT	"SilentRage" (
			"123 Example Lane Apt. 456"
			"Little Rock, AR, 72205" )

		TXT	"Phone: (501) 555-1212"

		TXT	"Email: SilentRage@example.com"
__________________
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

Last edited by SilentRage : April 17th, 2004 at 10:23 AM. Reason: updated links

Reply With Quote
  #3  
Old December 20th, 2003, 10:25 AM
rvamerongen rvamerongen is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Dec 2003
Posts: 77 rvamerongen User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 Day 11 h 36 m 57 sec
Reputation Power: 5
Hi SilentRage

thank you for your very quick reply. I did look at your pages.

In the mean while I keep trying to let it work, please dont forget that Iam using win2k and if I understands you are using Bind.

In my first zone D1.net I have admin.D1.net as administrator contact. You can set this in the wizard.
When I make a new zone 'D2.com' with domains then win dns uses the admin.D1.net as default. In the zone properties I see the possibilty to change this contact to a different one, of cource if exists. If not I can create a RP record inside my D2.com zone but here it goes wrong at least for my feelings.
I did create a MB record with the name 'admin' and with the host name mail.D2.com.
Then I create a RP record with 'parent domain = D2.com', 'Host or domain = same as parent domain', 'mailbox of RP = D2.com' selected by browsing to my new MB record. Ok, I can type the name by hand but I get back 'record format is corrupt' when i want to save. It looks like that RP uses the data from MB but not the name. But the MB ask for a host not a mailbox! The mailbox name I have to type and this is there. So here I am confused. Some idea about this?

BTW I did misread and the TXT is optional and not needed. My fault.

Reply With Quote
  #4  
Old December 20th, 2003, 12:39 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
Not only is the TXT records optional, but the text domain is optional as well. The RFC 1183 which introduced the RP record states that the text domain may be denoted by a "." for the root domain to indicate that no text domain exists. Something like the below:

@ RP SilentRage.example.com. .

The MB record is completely useless. Don't bother creating one.

And Microsoft DNS Server stores the domain information in master formatted files. You can raw edit those files to change your zone information if the GUI is being a whore.

Reply With Quote
  #5  
Old December 20th, 2003, 05:23 PM
rvamerongen rvamerongen is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Dec 2003
Posts: 77 rvamerongen User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 Day 11 h 36 m 57 sec
Reputation Power: 5
Thank you

I will change this by hand.
I hope to set up tommorow ( today ) a mail server. and check if it works.

But there should be a way of doing this by GUI. I need to read some more books.

Reply With Quote
Reply

Viewing: Dev Shed ForumsSystem AdministrationDNS > Responsible person record


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 4 hosted by Hostway