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-25-2002 01:06 PM
10-25-2002 01:06 PM
named
I have an HP-UX server with address 142.61.xx.28 , I want to set up and test named with the 10.xxx.xxx.xxx addresses without changing the host itself! Is this possible? I have tried it - named seems to be running but the command
nslookup
says that the name server is not available
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-25-2002 01:26 PM
10-25-2002 01:26 PM
Re: named
/etc/named.boot
/etc/named.db directory
/etc/named.db/ zone files
/etc/named.db/ arpa files
man named to get it going and also don't forget about the hpux utiliy hosts_to_named to create the zone files for you from the /etc/hosts file.
Also check /var/adm/syslog/syslog.log for named errors that might give you a hint.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-28-2002 02:46 AM
10-28-2002 02:46 AM
Re: named
/etc/rc.config.d/netconf
find:
IP_ADDRESS[0]=142.61.xx.28
change to:
IP_ADDRESS[0]=10.xxx.xxx.xxx
reboot
Good luck
Adam
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-28-2002 03:09 AM
10-28-2002 03:09 AM
Re: named
You must then just configure multiplexing.
In the /etc/rc.config.d/netconf file
add an extra interface
INTERFACE_NAME[1]=lan0:1
IP_ADDRESS[1]=10.xxx.xxx.xxx
SUBNET_MASK=255.yyy.yyy.yyy
reboot
[1]<-- is one above your current land card number.
now you can do a nslookup
and then at the > prompt
type "server 10.xxx.xxx.xxx" and test.
PS. This aught to work ... I am assuming you have a simple networking enviroment. Also make sure the machine that conmnects to the new IP has an IP in the 10.xxx.xxx.xxx range that matches with the subnet mask.
Regards
Gerhard
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-28-2002 11:11 AM
10-28-2002 11:11 AM
Re: named
ifconfig lan0:5 10.1.1.1
But, did you stop/start named so it would find the new address and listen on it?
After doing a stop/start on 'named', execute:
netstat -an
You should see something like:
udp 0 0 10.120.212.53
udp 0 0 10.1.1.1.53
udp 0 0 127.0.0.1.53
udp 0 0 10.10.120.12.53
The above system has 3 aliases on the NIC:
netstat -ivn
Name Mtu ... Address
lan0 1500 ... 10.10.120.12
lan0:5 1500 ... 10.10.120.212
lan0:7 1500 ... 10.1.1.1
bv