- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: timeout ftp client
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
12-04-2003 12:56 AM
12-04-2003 12:56 AM
timeout ftp client
I need, when a network crash occours, the ftp client connection terminate in the set timeout.
Thanks in advance.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2003 01:44 AM
12-04-2003 01:44 AM
Re: timeout ftp client
As much as I know, the timeout is set on the side of the ftpd and not in the client.
greetings,
Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2003 01:50 AM
12-04-2003 01:50 AM
Re: timeout ftp client
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2003 03:13 AM
12-04-2003 03:13 AM
Re: timeout ftp client
Use the flag -T in your ftpd daemon.
It sets the maxtimeout for client connections.
Cheers,
Dieter Degrendele
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2003 03:35 AM
12-04-2003 03:35 AM
Re: timeout ftp client
Works well for my users. and applies to all users and you can modify it based upon the user id if you want to make it more complex.
# set TMOUT
if [ $LOGNAME != "root" -a $LOGNAME != "oracle" ]
then
if [ "$TMOUT" != 7200 ]
then
if [ $LOGNAME = "applmgr" ]
then
TMOUT=3600; export TMOUT
else
TMOUT=7200; readonly TMOUT; export TMOUT
fi
fi
fi
Of course you must have a kill script with this variable as the input to validate a user.