- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- DNS Reverse lookup
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
06-06-2001 08:16 AM
06-06-2001 08:16 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2001 08:33 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2001 09:00 AM
06-06-2001 09:00 AM
Re: DNS Reverse lookup
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2001 09:01 AM
06-06-2001 09:01 AM
Re: DNS Reverse lookup
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2001 09:13 AM
06-06-2001 09:13 AM
Re: DNS Reverse lookup
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2001 11:40 AM
06-06-2001 11:40 AM
Re: DNS Reverse lookup
- KS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2001 12:15 PM
06-06-2001 12:15 PM
Re: DNS Reverse lookup
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2001 04:06 PM
06-06-2001 04:06 PM
Re: DNS Reverse lookup
nslookup -type=soa 168.192.in-addr.arpa. ?
Is the zone configured in named.boot?
Does the serial for the zone need to be incremented?
Is the zone properly delegated?
Was named HUP'd?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-08-2001 01:43 PM
06-08-2001 01:43 PM
Re: DNS Reverse lookup
If not, create a /etc/named.data directory.
create a file called param, or anything.
add this to param.
-d
-s your name server
-n 192.168
-d mn.
-n ?.?
-d be.
-n ?.?
-r your name server
Save the file, and do this,
cd /etc/named.data; hosts_to_named -f param
sig_named restart
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-08-2001 03:13 PM
06-08-2001 03:13 PM
SolutionIn this isolated network, how many name servers are you running? Just the one root master? Or does each subdomain have a master server?
If just the one, the issue should be fairly trivial. The zone file for 168.192.in-addr.arpa would look like this:
$ORIGIN 168.192.in-addr.arpa.
@ IN SOA host.domain.com. hostmaster.domain.com. ( a b c d e )
IN NS host.domain.com.
1.1 IN PTR host.domain.com.
2.1 IN PTR host.mn.domain.com.
2.2 IN PTR host.be.domain.com.
But if you're maintaining the subdomains separately on other servers, then the root needs to delegate from both zones:
$ORGIN domain.com.
@ IN SOA ...
IN NS host.domain.com.
host IN A 192.168.1.1
mn IN NS host.mn.domain.com.
host.mn IN A 192.168.1.2
be IN NS host.be.domain.com.
host.be IN A 192.168.2.2
$ORIGIN 168.192.in-addr.arpa.
@ IN SOA ...
IN NS host.domain.com.
1.1 IN PTR host.domain.com.
1 IN NS host.mn.domain.com.
2.1 IN PTR host.mn.domain.com.
2 IN NS host.be.domain.com.
2.2 IN PTR host.be.domain.com.
I typed this up pretty quick so I'd expect errors.