- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How to drop source routed packets?
Categories
Company
Local Language
Forums
Discussions
Knowledge Base
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Forums
Discussions
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
05-24-2004 12:12 PM
05-24-2004 12:12 PM
This question if for all network gurus out there! How can I drop source routed packets? In Linux there are some files under the /proc virtual filesystem that allow me to change this.
I've been given a Nessus report regarding this issue on all my servers. I really have no idea how to turn it off on HP-UX.
Thanks in advance,
Jorge
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-24-2004 12:21 PM
05-24-2004 12:21 PM
Re: How to drop source routed packets?
Check out the ndd documentation and the explanation of ip_forward_src_routed parameter.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-24-2004 12:27 PM
05-24-2004 12:27 PM
Re: How to drop source routed packets?
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
05-24-2004 01:45 PM
05-24-2004 01:45 PM
Solutionis the best source for that sort of info but it assumes you know a lot about ndd. The parameter in ndd is ip_forward_src_routed which is a member of /dev/ip. The default value is 1 but you want it to be 0. There is a file /etc/rc.config.d/nddconf which you have to edit so that it stays after a boot but just to prove the concept you can change it on the fly with:
ndd -set /dev/ip ip_forward_src_routed 0
In the nddconf file you add three lines:
TRANSPORT_NAME[0]=ip
NDD_NAME[0]=ip_forward_src_routed
NDD_VALUE[0]=0
If you already have values in nddconf then use the next higher integer in the brackets.
Ron
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-24-2004 01:59 PM
05-24-2004 01:59 PM
Re: How to drop source routed packets?
Hey Ron! You made it too easy for me :) Thanks!