- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Increasing Broadcast Message size
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
08-02-2004 03:32 AM
08-02-2004 03:32 AM
Increasing Broadcast Message size
I have a K420 server running HPUX 10.20. (No cracks please, I know it's ancient. ;) Currently the broadcast messages that are being sent out are approx 1232K, but the max size configured on the K420 is 1024K so the messages are getting split in 2 and bogging down the network with excess broadcasts.
I'm pretty sure there is a way to increase the max size of the broadcast messages, but as of yet, have not found where to make the change. I would really appreciate any help available in increasing the message size.
tks in advance
Cathy Squires
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-02-2004 03:40 AM
08-02-2004 03:40 AM
Re: Increasing Broadcast Message size
You'll have to do a man page or further research, because I don't know which parameter it is.
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
08-02-2004 03:52 AM
08-02-2004 03:52 AM
Re: Increasing Broadcast Message size
ndd doesn't exist on 10.20. On 10.20 the "equivalent" tool is nettune. I checked the available parameters with nettune and didn't see anything that would likely affect broadcast packet size.
Just to be sure, what MTU size is configured for the interface sending these broadcast packets? (check with lanadmin -m
Dave
I work at HPE
HPE Support Center offers support for your HPE services and products when and how you need it. Get started with HPE Support Center today.
[Any personal opinions expressed are mine, and not official statements on behalf of Hewlett Packard Enterprise]

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-02-2004 03:54 AM
08-02-2004 03:54 AM
Re: Increasing Broadcast Message size
Dave
I work at HPE
HPE Support Center offers support for your HPE services and products when and how you need it. Get started with HPE Support Center today.
[Any personal opinions expressed are mine, and not official statements on behalf of Hewlett Packard Enterprise]

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-02-2004 04:44 AM
08-02-2004 04:44 AM
Re: Increasing Broadcast Message size
Thanks for the info, but the MTU size = 1500. Anyplace else I can check? I'm looking on this end, but info on 10.20 is getting really scarce.
ecs
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-03-2004 01:13 AM
08-03-2004 01:13 AM
Re: Increasing Broadcast Message size
Just a little curious:
Are these Ethernet broadcasts, or are they IP broadcasts?
You also said 1232K/1024K ? Do you mean 1232 bytes or 1232 Kilobytes?
Here some possible help from nettune:
ip_forward_directed_broadcasts:
If ip_forward_directed_broadcasts is 0, we will check if the destination address in the packet matches with any of the broadcast addresses of all interfaces in the system and inhibits any forwarding.
If ip_forward_directed_broadcasts is 1, and the destination address of the packet does not match the addresses of the interface that it comes in, the packet will be passed to ip_forward().
Default Values:
This value can only be turned on or off.
ON:1
OFF: 0
Default: 1
Usable Commands:
Get the actual value of this tunable:
nettune -l ip_forward_directed_broadcasts
Turn of the forwarding:
nettune -s ip_forward_directed_broadcasts 0
---------------------
ip_forwarding:
This tunable controls the way a hosts forwards packets.
If someone sends a packet to this host he tries to figure out if it is possible for him to put it out on another interface to bring the packet nearer to it's destination.
This is done due to the routing information that exist on the host.
In most cases if two interfaces are configured for a host, these two interfaces are connected to different subnets.
So IP-forwarding makes sense here, because packets were sent to this host to get delivered into another subnet.
Default Values:
This value could only be turned on or off.
ON: 1
OFF: 0
Default: 1 (ON)
Usable Commands:
Get the actual setting for ip_forwarding:
nettune -l ip_forwarding
Turn off the ip_forwarding:
nettune -s ip_forwarding 0
-------------------------
Hope that helps, Brian Hackley