- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Changing IP addresses for a network
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
09-17-2001 11:16 AM
09-17-2001 11:16 AM
Changing IP addresses for a network
Any help would be greatly appreciated.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-17-2001 11:20 AM
09-17-2001 11:20 AM
Re: Changing IP addresses for a network
One big file is /etc/hosts. This file has the server and clients name, alias, and ip address. If you change a static IP address for something, you have to make sure it is changed in here.
Mark
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-17-2001 11:20 AM
09-17-2001 11:20 AM
Re: Changing IP addresses for a network
I don't think you need to search your config files.
just change the ip for the lan card using
set_parms ipaddress
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-17-2001 11:25 AM
09-17-2001 11:25 AM
Re: Changing IP addresses for a network
I don't think any application work using strict ip-address. it generally gets its ip address using systemcalls gethostbyname gethotent gethostbyaddr etc.....
files to change when you want to change IP of HP-UX are
/etc/hosts, /etc/rc.config.d/netconf
But best way is to use command
#set_parms ip_address
#set_parms hostname
#set_parms addl_network (if you are changing anything else)
Or just type set_parms and it will gives you possible arguments.
Sachin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-17-2001 11:35 AM
09-17-2001 11:35 AM
Re: Changing IP addresses for a network
Modify DNS IP Change: /etc/resolv.conf
Modify Host IP Changes: /etc/hosts
Most applications do not hard code IP's. However, there may be some that use configuration files with hosts in them. If, when configured, the ip was used instead of the hostname, you may run into a little trouble. An example would be listener.ora for oracle. If the IP was used instead of the hostname, this file would need to be modified as well. It really depends on what applications you have loaded on the system and how they were setup.
...jcd...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-17-2001 11:44 AM
09-17-2001 11:44 AM
Re: Changing IP addresses for a network
As others have said, I'd use set_parms to set ip_address, hostname, and addl_network parameters. /etc/hosts should get changed and more importantly, /etc/rc.config.d/netconf which is used at boot time to set IP stuff.
If the HP is the server, then it should not be initiating the connections so no app should be specifying an IP address or hostname on the HP. On the other hand, the clients have to specify the host or IP address to connect to. Though well written apps should depend on hostname resolution, they don't always. In your case, it appears you should be checking the apps on the Windows clients.
Darrell
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-17-2001 11:55 AM
09-17-2001 11:55 AM
Re: Changing IP addresses for a network
Most of the application would be using the name of the server, if at all. An example would be the listener for an oracle database. So as long as your system name and ip is resolved, you should not have any problem. I don't think the ip address would be hardcoded in any application.
However your windows user may be using the server ip address to telnet, ftp etc to the hp box.
Rest i can't think of anything that you may be required to change.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-17-2001 12:07 PM
09-17-2001 12:07 PM
Re: Changing IP addresses for a network
Rob