- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: IP forwarding
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
05-08-2001 08:38 AM
05-08-2001 08:38 AM
IP forwarding
we want to disable the IP Forwarding in a HP9000 L class server running HP-UX 11.
Any idea how can we do it ??
Regards,
Andres
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-08-2001 05:46 PM
05-08-2001 05:46 PM
Re: IP forwarding
To list current settings
# ndd -get /dev/ip ip_forwarding
To set to new value
# ndd -set /dev/ip ip_forwarding 0
The changes will be lost after a reboot unless you modify /etc/rc.config.d/nddconf file. To make the chages last add an entry similar to this in your nddconf file.
TRANSPORT_NAME[0]=ip
NDD_NAME[0]=ip_forwarding
NDD_VALUE[0]=0
ndd -c will apply changes from the nddconf.
For more information
'man ndd' and 'ndd -h ip_forwarding'
hope this helps
-denver
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2001 06:55 AM
05-16-2001 06:55 AM
Re: IP forwarding
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2001 12:15 PM
05-17-2001 12:15 PM
Re: IP forwarding
The ndd set is not permanent but you can easily add it to one of the existing rc scripts or create a new one.
I hope help you !
Regards...
Abel Berger
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2001 02:30 PM
05-17-2001 02:30 PM
Re: IP forwarding
- - -
##########
# main #
##########
case $1 in
start_msg)
print "Configure LAN interfaces"
exit $OKAY
;;
stop_msg)
print "Unconfigure LAN interfaces"
exit $OKAY
;;
stop)
exit $OKAY
;;
start)
/usr/contrib/bin/nettune -s ip_forwarding 0
;; # fall through
- - -
I haven't tested that solution myself, but it looks like it would work.
Regards,
Fabio Yamaia
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-18-2001 05:52 AM
05-18-2001 05:52 AM
Re: IP forwarding
Very nice !
I go to keep this for me.
Regards,
Abel Berger