- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: DNS SOA issue?
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
05-14-2009 12:21 AM
05-14-2009 12:21 AM
I.E.
www.example.com works
but
example.com does not.
could it need another SOA record or an i missing something everything i look at seems correct and everything else works fine.
andrew
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-14-2009 12:33 AM
05-14-2009 12:33 AM
Solution; zone file fragment for example.com
....
; SOA NS MX and other stuff
; define an IP that will resolve example.com
IN A 192.168.0.3
; you could also write the above line as
; example.com. IN A 192.168.0.3
www IN CNAME example.com. ; dot essential
; aliases www.example.com to example.com
; OR define another A record for www using same host
; this is the least number of changes and saves a CNAME
www IN A 192.168.0.3
mikap
good link :
http://www.zytrax.com/books/dns/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-14-2009 01:24 AM
05-14-2009 01:24 AM
Re: DNS SOA issue?
For example:
@ IN CNAME www.example.com.
Very often, the origin name of the zone (example.com here) is associated with www.
If your domain is supposed to receive mail using addresses like someone@example.com, you should have explicit MX record(s) for the origin name too, identifying the mail server host(s) that receive mail from the outside. (MXs have nothing to do with outgoing mail - the outgoing mail server may be completely different!)
@ IN MX 1 mail.example.com.
@ IN MX 2 backupmail.example.com.
It is technically possible to leave the origin name without an IP association (as you ended up doing), but usually it is not what people want.
MK
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-14-2009 02:50 AM
05-14-2009 02:50 AM
Re: DNS SOA issue?
SOA should have an SOA record that revers to example.com if you want that to resolve.
Maybe the owners of that domain DO NOT want it to resolve, hence its omission.
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
05-15-2009 08:24 PM
05-15-2009 08:24 PM
Re: DNS SOA issue?
Check below link for details,
http://www.charvolant.org/~doug/network/html/node10.html
If it helps, pls assign point.
Rgds//
Taifur
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-18-2009 01:55 AM
05-18-2009 01:55 AM
Re: DNS SOA issue?
regards
Andrew