- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Ignite UX query
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
06-27-2003 12:50 AM
06-27-2003 12:50 AM
Ignite UX query
I'm hoping somebody can help. I am implementing an automated schedule whereby weekly ignite images are taken from all of our servers and stored on the central ignite server. I have simply set up a cron job on each client to push the images to the ignite server at a specific time. We have recently implemented a management LAN to segregate certain traffic. The problem I have is that I want to ensure that when I run a make_net_recovery from the client it uses the secondary LAN card to do this. Does anyone know how I ensure this is the case.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2003 12:54 AM
06-27-2003 12:54 AM
Re: Ignite UX query
route add net 94.22.44 netmask 255.255.255.0 94.22.22.1
Also, try editing /etc/rc.config.d/netconf, adding another route entry.
Share and Enjoy! Ian
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2003 04:11 AM
06-27-2003 04:11 AM
Re: Ignite UX query
If you can get past this router issue then use the server to call the 2nd ip address of the client. Make sure the two ip's are in different subnets.
If you use dynamic routing assign preferences and filter traffic into the 2nd ip.
http://docs.hp.com/cgi-bin/fsearch/framedisplay?top=/hpux/onlinedocs/B9106-90011/B9106-90011_top.html&con=/hpux/onlinedocs/B9106-90011/00/00/43-con.html&toc=/hpux/onlinedocs/B9106-90011/00/00/43-toc.html&searchterms=dynamic%7croute%7cgated&queryid=
Direct connect with a cross over cable to the 2nd nic. If you've got enough ports on the ignite server. There are quad port LAN cards, for instance.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2003 04:26 AM
06-27-2003 04:26 AM
Re: Ignite UX query
1) Checks connectivity to the server.
2) If there is no connectivity, adds the route.
3) Once successfully making sure there is connectivity, runs make_net_recovery -s IP_of_ignite_server
The key scripting technique is checking the outcome of the first two steps
ping ignite_server try two pings, wait 30 seconds
return_code=$?
if [ return_code ne 0 ]
then
add route
route_rc=$?
else
make_net_recovery
fi
Once the script works interactively, schedule it in cron
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
06-27-2003 04:48 AM
06-27-2003 04:48 AM