- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Possible TELNETD Issue
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
11-30-2004 08:13 AM
11-30-2004 08:13 AM
Possible TELNETD Issue
PHNE_29095 and PHNE_30695
The claim the HP is planning to release the patch under the 2nd patch ID in early 2005 but I'm not sure I believe it. Anyone else hear of these patches or seen this type of behaviour with TELNETD?
Thanks..
Tom - UNIX Sys Admin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-30-2004 08:26 AM
11-30-2004 08:26 AM
Re: Possible TELNETD Issue
I've had a few customers experience the same problem, when their users were running a telnet client over a VPN tunnel, and it turned out to be a TIMEOUT setting in the VPN Appliance or router.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-30-2004 08:30 AM
11-30-2004 08:30 AM
Re: Possible TELNETD Issue
Thanks for the response..
Tom
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-30-2004 08:39 AM
11-30-2004 08:39 AM
Re: Possible TELNETD Issue
I would play with the -z and -s telnetd options (especially the -z) in your /etc/inetd.conf line and see if that improves your behavior. Man telnetd for details.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-30-2004 08:39 AM
11-30-2004 08:39 AM
Re: Possible TELNETD Issue
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-30-2004 08:48 AM
11-30-2004 08:48 AM
Re: Possible TELNETD Issue
This was due to many small packets being transmitted back and forth between the terminal emulation and the application.
It could be that the Application your are running is doing the same thing. You can force telnetd, to wait and transmit larger packets by changing the /etc/inetd.conf to use the -TCP_DELAY option, which worked for us.
So the line in inetd.conf will look like this:
telnet stream tcp nowait root /usr/lbin/telnetd telnetd -TCP_DELAY
Then force a reread of inetd.conf file by running 'inetd -c'.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-30-2004 08:48 AM
11-30-2004 08:48 AM
Re: Possible TELNETD Issue
Thanks!
Tom
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-30-2004 09:18 AM
11-30-2004 09:18 AM
Re: Possible TELNETD Issue
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-30-2004 09:30 AM
11-30-2004 09:30 AM
Re: Possible TELNETD Issue
Thanks..
Tom