- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- FTP Bandwidth
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-06-2004 06:17 AM
02-06-2004 06:17 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2004 07:48 AM
02-06-2004 07:48 AM
Re: FTP Bandwidth
none that I am aware of on the host. This is a feature that can be implemented in the network though (traffic shaping or CBFWQ seem to be concepts I hear from our networkers about this).
Greetings, Martin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2004 10:18 AM
02-06-2004 10:18 AM
Re: FTP Bandwidth
You can change process priorities on either the ftp client processes or the ftp server process, but that would only help if the surge in network traffic coincided with surge in CPU activity on the VMS host, and it wouldn't be very robust even if it more or less worked.
You can ratchet down the size of the ftp send and receive buffers with
$ DEFINE /SYSTEM /EXEC TCPIP$FTP_WNDSIZ nnnn
where nnnn is a size in bytes. I don't know what the default is, but try something really tiny like 256 and see if that throttles down the traffic to an acceptable level. I suppose that could actually make things worse by sending a greater number of packets even though they'd be smaller. But worth a try I'd think.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2004 07:02 PM
02-06-2004 07:02 PM
Re: FTP Bandwidth
every change on TCP/IP suite has effect on other service too, so you can't limit ftp without limit telnet, etc.
You can indirectly set low priority level, addind $ SET PROC/PRIO=1 in LOGIN.COM of your FTP dir (usually
SYS$SYSDEVICE:[TCPIP$FTP]); but this mode hasn't a big impact.
If you server is only ftp server you can limit TCP/IP.
Bye
Antoniov
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-08-2004 11:30 PM
02-08-2004 11:30 PM
Re: FTP Bandwidth
Default is 64K windows and thus the sender will transmit at high rate, the receiver will ack e.g. every 100 packets.
With 1.5K windows, speed is reduced to 50% but overhead is higher because every packet is acked.
With 0.5 windows, speed is reduced to 30% but still more overhead.
(btw : I also tested the service param /sock=(rec=xx,send=yy) with 1500 bytes and this gave no results)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-09-2004 12:49 AM
02-09-2004 12:49 AM
Re: FTP Bandwidth
good news!
Antoniov
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-09-2004 01:23 AM
02-09-2004 01:23 AM
Re: FTP Bandwidth
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-09-2004 08:58 PM
02-09-2004 08:58 PM
Re: FTP Bandwidth
$ mc sysman class add ftp /cpu=0-23=1%
$ set proc /id=xxx /class=ftp
where xxx is the id of TCP$FTP_1
then start ftp session (make sure old ftp processes are gone)
I tried this on a Alpha station 500 and thruput was ony 25% of the normal thruput.
Of course, with (future) fast cpu's it will be difficult to implement because the cpu usage without limits I saw was about 5% (10Mbit).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-12-2004 10:03 AM
02-12-2004 10:03 AM
Re: FTP Bandwidth
The specific problem I'm trying to resolve is an FTP transfer of a large file (~225MB). Once the transfer is initiated we start getting failures to communicate between various of our OpenVMS systems. We used to transer these files using DECnet, but now we are using FTP instead. The DECnet transfers didn't cause us any problems.
Does the tcpip$ftp_wndsiz logical have to be defined on the initiating or receiving end (or both) of the FTP connection?
I have to stay with OpenVMS 7.2-1 and TCPIP V5.1 ECO 3 only.
Thank you for your help!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-15-2004 06:32 PM
02-15-2004 06:32 PM
Re: FTP Bandwidth
Once the transfer is initiated we start getting failures to communicate between various of our OpenVMS systems. We used to transer these files using DECnet, but now we are using FTP instead. The DECnet transfers didn't cause us any problems.
...
If you're tansferring files between VM Ssystems AND DECNet didn't cause problems, where TCPIPO does, my advise would be: Stick to Decnet.
Another cause of your problem might be the NIC setting. We did have severe problems with FTP only due to the fact the NIC was set to "Auto-negotiate". It isn't, you'd better avoid it (I've never seen the use for it for non-chnaging network connections). Set NIC and switch to 100Mb, Full duplex, switch to half-duplex if that causes problems as well.
OpenVMS Developer & System Manager
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-15-2004 08:24 PM
02-15-2004 08:24 PM
Re: FTP Bandwidth
Is there a firewall in place ?
There is no reason why FTP shouldn't work, whatever the window size.
We are using ftp to transfer files of 1GB and more.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-16-2004 03:23 AM
02-16-2004 03:23 AM
Re: FTP Bandwidth
Greetings, Martin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-18-2004 08:13 AM
02-18-2004 08:13 AM
Re: FTP Bandwidth
After more research, I think the problem we are having lies with the CISCO routers. We should be using the "Weighted Fair Queueing" option, but I don't think we are.
Anyway, I will be pursuing the problem through router settings.
Thanks to all!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-18-2004 09:29 AM
02-18-2004 09:29 AM
Solutionthis is certainly the best. We use CBWFQ (Class based weighted fair queing) on WAN lines to make sure FTP transfers do no bog down our transactional workload.. It does take some effort to setup from what I've gathered, but seems to work fine once in place.
Greetings, Martin