- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: telnetd
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
08-22-2001 07:24 AM
08-22-2001 07:24 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2001 07:34 AM
08-22-2001 07:34 AM
Solutionwhen you do "ps -ef" and get a list like the following:
root 11456 17500 0 Aug 20 pts/tU 0:00 telnetd
root 1836 17500 0 07:01:17 pts/td 0:00 telnetd
root 24377 17500 0 05:25:53 pts/ta 0:00 telnetd
root 3592 17500 0 07:18:09 pts/ti 0:00 telnetd
root 9298 17500 0 08:13:03 pts/tI 0:00 telnetd
root 17409 17500 0 09:21:45 pts/t7 0:00 telnetd
you can then do:
who -u | grep pts/t7
and find out which user is using that specific connection.
the "root" in the list does not mean that a user logged in as root with that connection.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2001 07:35 AM
08-22-2001 07:35 AM
Re: telnetd
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2001 07:37 AM
08-22-2001 07:37 AM
Re: telnetd
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2001 07:56 AM
08-22-2001 07:56 AM
Re: telnetd
Have a good day
Chris
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2001 08:53 AM
08-22-2001 08:53 AM
Re: telnetd
telnetd is a daemon servicing for telnet using the tcp protocol. In my system, many users are using telnet to access the unix box from their own PC which running on NT platform. That is why we see so many telnetd when do ps, my system has already run in this manner for long time, I don't think you need concern anything in this situation.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-23-2001 08:27 AM
08-23-2001 08:27 AM
Re: telnetd
If you care about the security of your system the answer is _yes_, you _should_ be concerned!
Obivously many users are connecting to your machine using telnet.
Now telnet has the bad habit of transmitting the password unencrypted when logging in - just as any data being transmitted while the connection is up. If someone can sniff the packets between the two machines he/she can easily get access to any account...
You should look into the SSH Suite - you'll get encrypted transmission etc. I'd recommend the OpenSource Version OpenSSH.
Checkout http://www.openssh.com/
Cheers,
Enno