- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- UCX small buffer depletion
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
03-28-2005 03:37 AM
03-28-2005 03:37 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-28-2005 06:45 AM
03-28-2005 06:45 AM
Re: UCX small buffer depletion
In a former life the programmers shipped out a new version of the app. Small buffer useage went from 400 to 3500 immediately and steadily increased. I ended up writing a script that increased small buffers by 10% if the current value was within 10% of the max. It won't fix your problem but it could be a workaround.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-28-2005 07:04 AM
03-28-2005 07:04 AM
Re: UCX small buffer depletion
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-28-2005 07:10 AM
03-28-2005 07:10 AM
Re: UCX small buffer depletion
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-28-2005 08:05 AM
03-28-2005 08:05 AM
Re: UCX small buffer depletion
The project was an electronic toll system. The developers rolled out an almost totaly re-written application and had changed how the incoming reads were processed. Of course they never conferred with the sysadmin or gave any heads ups notice.
Steve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-28-2005 08:29 AM
03-28-2005 08:29 AM
SolutionTry setting pmtu_enabled = 0
you can do this in UCX$SYSTARTUP.COM
Parhaps by
UCX SET PROTOCOL command or
syconfig -r inet pmtu_enabled=0
with it enabled (=1) you can get a routing entry for every client.
Purely Personal Opinion
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-29-2005 02:00 AM
03-29-2005 02:00 AM
Re: UCX small buffer depletion
Yes, it is UCX 4.2. This sounds like it could be the culprit. How can I see what the current value of "pmtu_enabled" is? I can't find this setting anywhere in UCX?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-29-2005 09:32 PM
03-29-2005 09:32 PM
Re: UCX small buffer depletion
Are there lots of routes shown by
UCX SHOW ROUTE
and is dynamic routing (RIP) enabled?
Purely Personal Opinion
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-30-2005 06:29 AM
03-30-2005 06:29 AM
Re: UCX small buffer depletion
Another thing you can do is modify the sizes of the buffers. I don't have UCX here so this is from memory. But you can set the small buffers to include packets of size n to o, medium buffers from p to q, large buffers r to s. Doing that you could shift the burden from small buffers.
Steve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-30-2005 07:30 AM
03-30-2005 07:30 AM
Re: UCX small buffer depletion
Does this mean that your route table is getting lots of dynamically created host routes?
Can you look at the flags on the route table entries shown by SHOW ROUTE and say how many are dynamic and how many are hosts. Since the WAN changes have you modified the static routes on your VMS system to correspond with the changed WAN?
Purely Personal Opinion
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-30-2005 07:56 AM
03-30-2005 07:56 AM
Re: UCX small buffer depletion
Route statistics
Created by redirects 1193
Modified by redirects 0
Wildcarded lookups 2484
Invalid redirect calls 73
Failed lookups 628
Maximum routes reached 0
So apparently I have not turned off dynamic routing, have I?
I have three static network routes defined, but one of them is 0.0.0.0. This was apparently added by one of our corporate "help desk" people when they and a contractor were reconfiguring the WAN router and LAN switches. I tried removing that network but then I could not connect to the VMS host (my PC is in a different class C). I think this is getting to the heart of the problem, they have not configured our local LAN switch correctly and we can not connect to the VMS host without going through the WAN router which I assume is where all the ICMP redirects are coming from.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-30-2005 08:56 PM
03-30-2005 08:56 PM
Re: UCX small buffer depletion
What does UCX SHOW ROUTE and SHOW ROUTE /PERM
say?
It does sound like your permenant routes need fixinf.
Purely Personal Opinion
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-31-2005 01:42 AM
03-31-2005 01:42 AM
Re: UCX small buffer depletion
"sho rout/perm" shows only the default of 0.0.0.0
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-31-2005 07:24 AM
03-31-2005 07:24 AM
Re: UCX small buffer depletion
should tell you if dynamic routing is
enabled.
Purely Personal Opinion
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-31-2005 07:46 AM
03-31-2005 07:46 AM
Re: UCX small buffer depletion
$ ucx sho config start routing
%UCX-E-CONFIGERROR, Error processing CONFIGURATION request
-RMS-E-RNF, record not found
(My go-to-guy at corporate had just told me how to check that)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-31-2005 08:08 AM
03-31-2005 08:08 AM
Re: UCX small buffer depletion
Do you know the routers you should be using?
Parhaps the default route should refer to the WAN router and then add specific routes for other subnets on the LAN?
You can add and remove routes in
UCX using the SET ROUTE command without restarting things then add them permenantly (so they get remembered) using SET ROUTE/PERM
Purely Personal Opinion