- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: No WAN access
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
02-26-2006 11:22 AM
02-26-2006 11:22 AM
No WAN access
I can ping to IPs into the same LAN, but ping to IPs in the WAN (out of the LAN) fails.
Any idea about it?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-26-2006 12:49 PM
02-26-2006 12:49 PM
Re: No WAN access
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-26-2006 04:44 PM
02-26-2006 04:44 PM
Re: No WAN access
as mentioned above, you need to identify you gateway to the IP which you trying to ping.
E.g. Extract from /etc/rc.config.d/netconf
ROUTE_DESTINATION[0]=default
ROUTE_MASK[0]=""
ROUTE_GATEWAY[0]=192.168.102.25
ROUTE_COUNT[0]=1
ROUTE_ARGS[0]=""
see also: man route
kind regards
yogeeraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-26-2006 04:45 PM
02-26-2006 04:45 PM
Re: No WAN access
One easy way to setup the default gateway IP address is using the following:
set_parms addl_netwrk
e.g.
===========================================
# set_parms addl_netwrk
___________________________________________________________________________
Additional Network Parameters: Subnetwork Mask and Default Gateway
This section enables you to specify the subnetwork mask and default
network gateway. This information is necessary if your network has
gateways and you wish to communicate beyond your local subnetwork.
You will need to know the following information:
* Subnetwork mask
* Default gateway IP address
_______________________________________________________________________________
Do you wish to specify this information?
Press [y] for yes or [n] for no, then press [Enter]
===========================================
hope this helps too!
kind regards
yogeeraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-26-2006 04:59 PM
02-26-2006 04:59 PM
Re: No WAN access
Note that if your your system appears to have 6 network interfaces installed. The procedure mentioned above will allow you to configure only the default network interface.
You must use SAM to configure additional network interface cards.
kind regards
yogeeraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-26-2006 10:10 PM
02-26-2006 10:10 PM
Re: No WAN access
On most firewalls ping is blocked.
So check with your firewall administrator that the ping protocol isn't blocked
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-28-2006 01:15 AM
02-28-2006 01:15 AM
Re: No WAN access
To check your interfaces run lanscan.
example:
host/>lanscan
Hardware Station Crd Hardware Net-Interface NM MAC HP DLPI Mjr
Path Address In# State NameUnit State ID Type Support Num
10/16/8 0x0010839680FC 1 UP lan1 UP 4 ETHER Yes 78
10/12/6 0x001083B93084 0 UP lan0 DOWN 5 ETHER Yes 52
check the interfaces configuration with ifconfig.
example:
host/>ifconfig lan1
lan1: flags=863
inet 201.1.1.6 netmask ffffff00 broadcast 201.1.1.255
If everything it's OK, check the connectivity to your WAN gateway with netstat.
example:
linc06/>netstat -rn
Routing tables
Destination Gateway Flags Refs Use Interface Pmtu PmtuTime
127.0.0.1 127.0.0.1 UH 0 2470319 lo0 4608
172.30.10.250 201.1.1.210 UGHD 0 67 lan1 1500
201.1.1.6 127.0.0.1 UH 049232370 lo0 4608
default 201.1.1.200 UG 421686500 lan1 1500
201.1.1 201.1.1.6 U 7 5075600 lan1 1500
201.1.215 201.1.215.1 U 0 0 x25_9 2048
According to the output, the gateway to reach the IP 172.30.10.250 is 201.1.1.210.
In your case ping to the gateway shouldn't have to fail, if it does check the cabling and configuration in the other edge. If you're not in charge of that, report the connectivity problem to the corresponding area.
Hope this can help
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-28-2006 01:44 AM
02-28-2006 01:44 AM
Re: No WAN access
Use the command
# route add default a.b.c.d
where a.b.c.d is the IP Address of your network, any subsequent routing for other networks will need to be configured on your Network router/ LAN switch.
If everything ahead is properly routed and ping is not blocked , you will be able to ping. For any troubleshooting, you may run
# traceroute j.k.l.m
where j.k.l.m is the IP address that you need to ping. This will help you and Network Admins know the path that is being taken to reach your destination IP Address.
rgds...Ashish