HPE GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Loopback as IP or gateway?
Operating System - HP-UX
1834001
Members
1765
Online
110063
Solutions
Forums
Categories
Company
Local Language
back
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
back
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
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Go to solution
Topic Options
- 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
06-15-2001 01:56 PM
06-15-2001 01:56 PM
I am setting up a generic image (HP-UX 10.20+Applications) to be used on any given processor that may need recovery in the field. The only difference among the processors is the networking info.
If I remember correctly, there is a way to configure IP address and/or route gateway so the machine won't take forever booting up. Is this still possible? After the machine is booted I will login from the console and update the networking configuration.
If I remember correctly, there is a way to configure IP address and/or route gateway so the machine won't take forever booting up. Is this still possible? After the machine is booted I will login from the console and update the networking configuration.
Solved! Go to Solution.
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-15-2001 02:03 PM
06-15-2001 02:03 PM
Re: Loopback as IP or gateway?
Hi Daniel:
I assume that you are using Ignite to install the server, perhaps cloning it from an Ignite make_tape_recovery tape. If this is the case, you can select the advanced installation feature and elect to run /sbin/set_parms after installation. In disaster recovery tests using Ignite recovery tapes, I have found that this is a great way to get-up-and-running and then address network issues secondarily.
Later, when you are ready to setup networking, do:
# /sbin/set_parms ip_address #...for IPaddress...
# /sbin/set_parms addl_netwrk #...for gateways, DNS, NIS...
...JRF...
I assume that you are using Ignite to install the server, perhaps cloning it from an Ignite make_tape_recovery tape. If this is the case, you can select the advanced installation feature and elect to run /sbin/set_parms after installation. In disaster recovery tests using Ignite recovery tapes, I have found that this is a great way to get-up-and-running and then address network issues secondarily.
Later, when you are ready to setup networking, do:
# /sbin/set_parms ip_address #...for IPaddress...
# /sbin/set_parms addl_netwrk #...for gateways, DNS, NIS...
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-15-2001 02:22 PM
06-15-2001 02:22 PM
Re: Loopback as IP or gateway?
Thanks James,
Yes, you are correct, I am planning on using ignite (make_recovery -A) to create the image. And I was also planning on using set_parms to secondarily address the networking issues. However, I'm not familiar with the "advanced installation feature" you mentioned. Could you please explain it to me? Also, is make_tape_recovery different from make_recovery? I thought I would just set the IP or default route to 127.0.0.1 prior to creating the image in order to speed up the boot process upon recovery and then go in and set_parms accordingly.
Yes, you are correct, I am planning on using ignite (make_recovery -A) to create the image. And I was also planning on using set_parms to secondarily address the networking issues. However, I'm not familiar with the "advanced installation feature" you mentioned. Could you please explain it to me? Also, is make_tape_recovery different from make_recovery? I thought I would just set the IP or default route to 127.0.0.1 prior to creating the image in order to speed up the boot process upon recovery and then go in and set_parms accordingly.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-15-2001 04:20 PM
06-15-2001 04:20 PM
Solution
Hi (again) Daniel:
With regard to Ignite, download the latest version from the site below. 'make_tape_recovery' is the replacement for the older (less robust) 'make_recovery'. For vg00, I use the following:
# make_tape_recovery -x inc_entire=vg00 -I -v -a /dev/rmt/0mn
Notice the new 'inc_entire' option. This allows you to collect data from volume groups other than vg00. 'vgexport' map files of all volume groups are captured by 'make_tape_recovery' and placed on its tape regardless. Ignite will use these to 'vgimport' non-vg00 volumes during a recovery. This is nice if you are merely using Ignite to resize or repair vg00.
For current Ignite software, go to:
http://www.software.hp.com/products/IUX/download.html
When booting from the tape thusly created, the Ignite process will be interactive because you specified the "-I" option.
If you are familiar with the syntax of the old 'make_recovery', don't confuse its '-i' option with the '-I' option of 'make_tape_recovery'. The '-I' option of 'make_tape_recovery' is the *same* as the '-i' option of 'make_recovery'. '-I' causes the Ignite process to be interactive when booting from tape.
By making the tape this way, you will be prompted for an interactive installation. Choose "install", and select the "advanced options" tab to resize filesystems and/or set a variety of configuration options. It's that simple.
Regards!
...JRF...
With regard to Ignite, download the latest version from the site below. 'make_tape_recovery' is the replacement for the older (less robust) 'make_recovery'. For vg00, I use the following:
# make_tape_recovery -x inc_entire=vg00 -I -v -a /dev/rmt/0mn
Notice the new 'inc_entire' option. This allows you to collect data from volume groups other than vg00. 'vgexport' map files of all volume groups are captured by 'make_tape_recovery' and placed on its tape regardless. Ignite will use these to 'vgimport' non-vg00 volumes during a recovery. This is nice if you are merely using Ignite to resize or repair vg00.
For current Ignite software, go to:
http://www.software.hp.com/products/IUX/download.html
When booting from the tape thusly created, the Ignite process will be interactive because you specified the "-I" option.
If you are familiar with the syntax of the old 'make_recovery', don't confuse its '-i' option with the '-I' option of 'make_tape_recovery'. The '-I' option of 'make_tape_recovery' is the *same* as the '-i' option of 'make_recovery'. '-I' causes the Ignite process to be interactive when booting from tape.
By making the tape this way, you will be prompted for an interactive installation. Choose "install", and select the "advanced options" tab to resize filesystems and/or set a variety of configuration options. It's that simple.
Regards!
...JRF...
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP