- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Telnet times out after 60 minutes only for rem...
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-27-2003 08:48 AM
03-27-2003 08:48 AM
Telnet times out after 60 minutes only for remote intranet users
A user in the remote site can start a telnet session and after one hour exactly the service is disconnected. Packet capturing shows a "reset connection" was received at the client. As well, this occurs for win-sequel, sql+ or Oracle's OEM, again only for remote users.
If additional information is needed please let me know
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2003 09:01 AM
03-27-2003 09:01 AM
Re: Telnet times out after 60 minutes only for remote intranet users
Look for
# echo $TMOUT
it is a shell variable to auto logout after a grace periode.
Hope it helps,
Robert-Jan.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2003 09:09 AM
03-27-2003 09:09 AM
Re: Telnet times out after 60 minutes only for remote intranet users
I would suspect a timeout that is occurring for idle connections through a router. Without knowing your network equipment, it's difficult to know.
One thing that might work, is to have a daemon that pings remote hosts on a regular basis to kep the connections active but this may or may not suffice depending upon whether the router considers pings "interesting" traffic.
If for example, you are using a Cisco PIX VPN, your network guys might need to look at this parameter.
TIMEOUT XLATE HH:MM:SS CONN HH:MM:SS
(Timeout for translate and idle connections).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2003 09:28 AM
03-27-2003 09:28 AM
Re: Telnet times out after 60 minutes only for remote intranet users
This has all the earmarks of a Firewall/Router timeout.
And it probably is not idle-related. The sessions appear to have an absolute timeout value. Concentrate your efforts on the FWs involved in this remote access, then proceed to the next downstream router, etc.
Rgds,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2003 10:18 AM
03-27-2003 10:18 AM
Re: Telnet times out after 60 minutes only for remote intranet users
The connection from the data center to the remote site in question does not run through any firewalls or VPNs and is a T1 link that normally runs with a load of about 512kbps. (lack of "interesting traffic" to keep the link up is certainly not the issue) The network between the server and the user looks like this: HP server->Cisco 4006 switch->Cisco 3662 router->Cisco 2621 router->Cisco 4006 switch->user PC. There isn't any kind of proxying going on. We have done extensive packet analysis on this. The server sends a packet with the TCP Reset flag set at 1 hour plus or minus a few milliseconds. This problem applies to telnet, ftp, oracle apps on TCP1521. Also, it does NOT occur when using WRQ, Inc's Reflection s/w for VT100 (and we've verified by pkt capture that Reflection is not sending any keepalive packets).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2003 12:40 PM
03-27-2003 12:40 PM
Re: Telnet times out after 60 minutes only for remote intranet users
Off the top of my head, this should work:
#!/usr/bin/sh
ndd -get /dev/tcp "?" | grep "read" | while read X
do
Y=$(echo "${X}" | awk '{print $1}')
if [[ -n "${Y}" && "${Y}" != "?" ]]
then
echo "${Y}: \c"
ndd -get /dev/tcp ${Y}
fi
done
The idea is that we get a list of all ndd tcp paramters that are read or read and write and output each one.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2003 01:20 PM
03-27-2003 01:20 PM
Re: Telnet times out after 60 minutes only for remote intranet users
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2003 10:03 AM
04-08-2003 10:03 AM
Re: Telnet times out after 60 minutes only for remote intranet users
Thanks again for all help on this problem.