- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How to reverse DNS lookup for all related domain n...
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
01-29-2007 05:51 PM
01-29-2007 05:51 PM
How to reverse DNS lookup for all related domain name and alias?
For example, domain name: "www.hp.com" points to IP: 10.10.100.100, and "www" has several alias pointing to the same IP address, like "aaa.hp.com", "bbb.hp.com" and even "ccc.hhpp.com".
If all these alias are in one DNS database, how can I find out ALL these domain names from the single IP address.
That is, from "10.10.100.100" to all:
www.hp.com
aaa.hp.com
bbb.hp.com
ccc.hhpp.com
Can "dig" do this?
Thanks a lot!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2007 06:33 PM
01-29-2007 06:33 PM
Re: How to reverse DNS lookup for all related domain name and alias?
dig can do most of what you ask, but you're going to have to look at the man page and experiement.
To get dig on your system install BIND 9.2 from http://software.hp.com
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
01-30-2007 01:13 AM
01-30-2007 01:13 AM
Re: How to reverse DNS lookup for all related domain name and alias?
Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-30-2007 02:13 AM
01-30-2007 02:13 AM
Re: How to reverse DNS lookup for all related domain name and alias?
host -l domain.com
or
dig domain.com -t cname
To get domain.com you have to first reverse lookup:
dig -x 10.10.100.100
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-30-2007 02:15 AM
01-30-2007 02:15 AM
Re: How to reverse DNS lookup for all related domain name and alias?
host -l -t cname domain.com
Rgds...Geoff