- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: IP Aliasing and DNS
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
10-11-2002 11:27 AM
10-11-2002 11:27 AM
IP Aliasing and DNS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-11-2002 12:12 PM
10-11-2002 12:12 PM
Re: IP Aliasing and DNS
If you don't get an answer, you could ask
http://www.acmebw.com/askmrdns/archive.php?category=83
HTH
Steve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-11-2002 12:12 PM
10-11-2002 12:12 PM
Re: IP Aliasing and DNS
If you need to assign a different IP for this, you can use IP multplexing to assign another IP to an existing LAN card. An entry in the /etc/rc.config.d/netconf file for this would look like:
INTERFACE_NAME[5]=lan0:1
IP_ADDRESS[5]=10.1.1.123
SUBNET_MASK[5]=255.255.255.0
BROADCAST_ADDRESS[5]=10.1.1.255
INTERFACE_STATE[5]=up
DHCP_ENABLE[5]=0
lan0 would now have two IP's assigned to it.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-11-2002 01:35 PM
10-11-2002 01:35 PM
Re: IP Aliasing and DNS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-11-2002 01:38 PM
10-11-2002 01:38 PM
Re: IP Aliasing and DNS
Which version of BIND are you using? Have you reviewed the name server log for errors binding errors?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-11-2002 03:08 PM
10-11-2002 03:08 PM
Re: IP Aliasing and DNS
should show you something like
tcp 0 0 *.53 *.* LISTEN
Which says that named is listening for requests on all IPs for the given port.
If you're running 10.20 you're probably running a 4.x.x series named, which bound to ports using INADDR_ANY (listen on all IPs).
If you have a host with an ifaliased IP, make sure to point the db records for named to the IP (don't use CNAMES, make sure you have a revese name entry).
e.g.
Forward
A.B.COM IN A 1.2.3.4
NS1.B.COM IN A 1.2.3.5
Reverse
1.2.3.4 IN PTR A.B.COM.
1.2.3.5 IN PTR NS1.B.COM.
When you receive answers from this server, you'll get answers on the base IP, not the ifaliased IP, because of the way named binds to IPs in the 4.x.x series.