- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: telnetd - Urgent
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
01-06-2002 07:19 AM
01-06-2002 07:19 AM
telnetd - Urgent
We connect to customer site through Internet. I use Reflection X for this purpose. The problem is if stop working with the x-term after logging into the customer site for a while. It just hangs. I have to kill the session and relogin again.
Any suggestions are helpful.
Regards,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-06-2002 04:41 PM
01-06-2002 04:41 PM
Re: telnetd - Urgent
that's usually DNS timeouts!
Almost all telnetd's today to reverse name lookups about their clients, and if your client station has no DNS name, you will experience the DNS timeouts - 30s or more!
Put that client's hostname and ip-address into the server's "/etc/hosts" and modify its "/etc/nsswitch.conf", to first check locally:
hosts: files[NOTFOUND=continue] dns
HTH,
Wodisch
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-06-2002 11:44 PM
01-06-2002 11:44 PM
Re: telnetd - Urgent
I have made entries as mentioned. But the problem I see is that it is not using "files" (nsswitch.conf) for hostname resolution.
My hosts entry in nsswitch.conf is as follows.
"hosts: files dns"
It is always referring to DNS Server.
Lokks like the server is using IPV6.
Thanks,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-07-2002 10:35 PM
01-07-2002 10:35 PM
Re: telnetd - Urgent
any other inputs ?
Thanks,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2002 04:28 AM
01-08-2002 04:28 AM
Re: telnetd - Urgent
If your configuration is through xinetd, you can put in the telnet file a line with server_args = -n and restart the xinetd.
I hope this helps
Frank.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-09-2002 08:16 PM
01-09-2002 08:16 PM
Re: telnetd - Urgent
Since you are using Refelction X to connect to the server it may not be a problem with telnet daemon. Why cant we think in the sense of X-windows.
Once you connect to the server if you should get the login screen in ur Reflection X.
If u r getting this screen then x windows login manager is working perfectly and if not restart the login manager "dtlogin"
After successfully logging in to the server your reflection hangs then it can be a problem with Session manager or the Window manager. Try restarting ur session manager "dtsession" and window manager "dtwm"
Hope this helps
Regds
Ramesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2002 02:48 AM
03-18-2002 02:48 AM
Re: telnetd - Urgent
it can also be a firewall which cuts idle connections after some time.
The easiest way would be to send some keep-alive-pakets, but I do not know if Reflection supports that...
Christoph
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2002 08:15 AM
03-18-2002 08:15 AM
Re: telnetd - Urgent
The firewall has a timer on each connection going out. Whenever there is activity, the timer is reset back up. But when the timer goes away, information about the connection goes away, and you experience the hangups you mentioned.
You you have access to the firewall, you can change the timers, but it will affect all outbound connections.
Another workaround is when you know you will be away for a while, start up a ping.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2002 08:28 AM
03-18-2002 08:28 AM
Re: telnetd - Urgent
One thing that happens to me at home (through ISDN) is that the router drops the connections after some period of inactivity.
One solution is to start two windows, run your stuff in one, and in the other start this:
ping -i 15
That will ping every 15 seconds (on a Linux box anyway, other vendors ping commands may or may not have the -i option) and keep your connection open.
Something to try...