- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: route statement
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-20-2003 12:42 PM
02-20-2003 12:42 PM
Here is the command I am using:
route add 64.212.167.0 netmask 255.255.255.128 63.167.19.11 1
Here is the error:
netmask: bad value
It is a valid network and netmask.
Thanks in advance,
John Booth
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2003 12:45 PM
02-20-2003 12:45 PM
Re: route statement
Try this:
route add 64.212.167.0 netmask 255.255.255.128 63.167.19.11 2
BTW, you should refrain from posting "real" ip's in any kind of forum.
Regards,
RZ
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2003 12:47 PM
02-20-2003 12:47 PM
Re: route statement
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2003 12:47 PM
02-20-2003 12:47 PM
SolutionUse ndd to override HP's still old method of verifying the subnets.
ndd -set /dev/ip ip_check_subnet_addr 0
Then try again.
Edit /etc/rc.config.d/netconf and use the examples to set this permanently so that it will survive the reboots.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2003 12:50 PM
02-20-2003 12:50 PM
Re: route statement
RZ
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2003 12:52 PM
02-20-2003 12:52 PM
Re: route statement
and still got the same error with bad netmask.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2003 12:55 PM
02-20-2003 12:55 PM
Re: route statement
If you need to maintain network security, you may need to communicate with one of us via email with actual network setup information.
Or perhaps more appropriate for people that have service contracts, open a support call.
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
02-20-2003 01:06 PM
02-20-2003 01:06 PM
Re: route statement
Use "net" before 64.212.167.0
route add net 64.212.167.0 netmask 255.255.255.128 63.167.19.11 1
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2003 01:10 PM
02-20-2003 01:10 PM
Re: route statement
Thanks,
john
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2003 01:20 PM
02-20-2003 01:20 PM
Re: route statement
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2003 01:22 PM
02-20-2003 01:22 PM
Re: route statement
Add the following entries.
ROUTE_DESTINATION[1]="net 64.212.167.0"
ROUTE_GATEWAY[1]="63.167.19.11 "
ROUTE_MASK[1]="255.255.255.128"
ROUTE_COUNT[1]="1"
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2003 01:29 PM
02-20-2003 01:29 PM
Re: route statement
TRANSPORT_NAME[0]=ip
NDD_NAME[0]=ip_check_subnet_addr
NDD_VALUE[0]=0
-Sri