- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Backup IP address is "unpingable"
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
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
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
тАО12-04-2006 03:37 AM
тАО12-04-2006 03:37 AM
Backup IP address is "unpingable"
I hope you can help me with this one. I'm quite new to HP so I feel I might be missing something really obvious.
I've built a new HPUX 11.11 server called senegal. This server will run backup client software. The main lan (senegal) works fine but the backup lan (senegali4 ; IP=10.141.70.120) is only pingable from senegal but nowhere else on the company network, in particularthe backup server (ngtsvshdc001). In order for the backup software to work ngtsvshdc001 must be able to ping senegali4.
I've checked what I think are all of the obvious things on senegal .... /etc/hosts, resolv.conf, nsswitch.conf, netconf and can't see anything obviously wrong.
All of our backups take place via the .70 subnet. While on ngtsvshdc001 I can ping other servers on the .70 subnet fine but not senegali4.
The onsite engineer has taken his laptop down to the computer room and unplugged the backup cable from the back of the server, plugged it into his laptop and configured his laptop to have an IP of 10.141.70.120. I then pinged that IP address from ngtsvshdc001 and it pinged out OK; which infers there is nothing wrong with the network cabling I think.
I've attached a file with output from both senegal and ngtsvshdc001 that might aid resolution. Many thanks for your help in advance.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-04-2006 03:42 AM
тАО12-04-2006 03:42 AM
Re: Backup IP address is "unpingable"
is necessary that its server of backup is if communicating with its server client saw net or saw SAN. so that ok functions.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-04-2006 03:56 AM
тАО12-04-2006 03:56 AM
Re: Backup IP address is "unpingable"
#netstat -r
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-04-2006 03:57 AM
тАО12-04-2006 03:57 AM
Re: Backup IP address is "unpingable"
Try adding ROUTE_DESTINATION[1] and ROUTE_GATEWAY[1] statements to /etc/rc.config.d/netconf. Then, from the console, restart networking services:
# /sbin/init.d/net stop
# /sbin/init.d/net start
PCS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-04-2006 04:00 AM
тАО12-04-2006 04:00 AM
Re: Backup IP address is "unpingable"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-04-2006 04:44 AM
тАО12-04-2006 04:44 AM
Re: Backup IP address is "unpingable"
route add
this above command is not a good one as it points to an interface on the same server as the gateway, instead of an actual network device, such as a router. If you know the default gateway IP address on this backup network (usually network folks place them as the .1 or .254 addresses in the last octet of ip address but check with them to be sure if you want to go this route) and replace the 10.141.70.120 in the above command with this gateway ip address.
after verifying that it is working, you can make this change permanent by adding it into your /etc/rc.config.d/netconf file as follows:
ROUTE_DESTINATION[1]="
ROUTE_MASK[1]=""
ROUTE_GATEWAY[1]="10.141.70.120"
ROUTE_COUNT[1]="1"
ROUTE_ARGS[1]=""
again it is better to put the gateway on the ROUTE_GATEWAY line, and place this block right under the "default" route block and stop and start the network services as indicated above.
Looking at the netconf file in your attachment, I have a sneaking suspicion that your default gateways are all placed in .254 addresses but to make sure, check with your network folks to see if 10.141.70.254 is your default gateway for the backup lan.
Hope this helps
UNIX because I majored in cryptology...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-04-2006 04:58 AM
тАО12-04-2006 04:58 AM
Re: Backup IP address is "unpingable"
You need ot make sure you have a entry for both gateways. Check the /etc/rc.config.d/netconf file. you may net to stop and restart the network.
#/sbin/init.d/net stop
# /sbin/init.d/net start
sp,