Whats Telnet for?


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Whats Telnet for?
# 15  
Old 07-01-2006
Quote:
Originally Posted by Corona688
ssh is the modern equivalent of telnet. It does the same thing over a secure channel, instead of sending passwords in plaintext and such.
Ha? telnet uses TELNET protocol to communicate with another machine (RFC854)
e.g. you can recieve HTTP response:
Code:
$ telnet www.unix.com 80
Trying 144.202.242.190...
Connected to www.unix.com (144.202.242.190). Escape character is '^]'.
GET
(hit Enter)

ssh is a remote login program, e.g.
Code:
$ ssh Alexander@localhost
The authenticity of host 'localhost (127.0.0.1)' can't be established. RSA key fingerprint is 61:59:36:90:f1:88:e1:c4:ce:80:1c:23:63:4f:94:06.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added 'localhost' (RSA) to the list of known hosts.
Alexander@localhost's password:
Last login: Sat Jul  1 12:46:34 2006
$ exit
Connection to localhost closed.


Last edited by Hitori; 07-01-2006 at 06:49 PM..
# 16  
Old 07-01-2006
Lightbulb telnet-ssl

if you want a 'secure channel' look for telnet-ssl (you can even connect to https://...)
# 17  
Old 07-02-2006
... telnet is a tool for broadcasting passwds... you tell the net what your passwd is.

Last edited by System Shock; 07-02-2006 at 04:14 AM..
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Difference Between Krb5-telnet And Ekrb5-telnet

Hi, I want to know the difference between these two services. Both are under xinetd. Both are used for enabling and disabling Telnet service. So, can somebody please explain me the difference between the two ? Thanks in advance :) (0 Replies)
Discussion started by: kashifsd17
0 Replies

2. UNIX for Dummies Questions & Answers

Automatically login in the telnet from present telnet

Hi, I was writing one script which includes to switch to the another telnet automatically from the present telnet server. I was using rlogin but firstly it takes the same user name of the present telnet and secondly it is prompting for the password. But i want to switch to the another telnet... (2 Replies)
Discussion started by: Prateek
2 Replies

3. Homework & Coursework Questions

Whats wrong with the following

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: ls -ld htdocs drwxr-x--- 3 root root 8192 2006-11-19 10:41 htdocs How would a host administrator... (1 Reply)
Discussion started by: Larry_1
1 Replies

4. Shell Programming and Scripting

##*_ - whats this?

Hi all, could you please tell me whats this stands ##*_ 0##*/ i knew this alone if some more is there please tell me that also. (3 Replies)
Discussion started by: Arunprasad
3 Replies

5. Shell Programming and Scripting

whats this NAME=${0##*/}

hi all, i found NAME=${0##*/} in a script. i given this coomand in my unix box(presently in ksh). echo ${0##*/} it returned ksh. the purpose of the above is to return the shell name or more than that. do you have any more information like this, please share with me. one more query... (7 Replies)
Discussion started by: Arunprasad
7 Replies

6. Shell Programming and Scripting

Webpage to Telnet via Perl and Expect: Telnet problem?

Somewhat long story: I have a simple Perl CGI script that uses Expect to Telnet to a device and grab some data, and then spits it back to Perl for display on the Webpage. This works for many devices I've tried, but one device just fails, it keeps rejecting the password on this device, only... (1 Reply)
Discussion started by: jondo
1 Replies

7. What is on Your Mind?

Whats Behind Your Name?

Looking at the member list, there are alot of interesting names, some unique, some bizarre, and some that are just plain. How did you come by your name? Why did you choose your label? Me? Well, I wish I could change mine. I chose Google because thats how I stumbled upon this site. I wasn't sure... (66 Replies)
Discussion started by: google
66 Replies

8. Post Here to Contact Site Administrators and Moderators

Whats the go?

woofie, Your posts are being deleted because your use of profanity. I am close to changing your status to read only. In fact, if you argue with the mods again, I will ban you from these boards. Neo (1 Reply)
Discussion started by: Neo
1 Replies

9. Shell Programming and Scripting

Whats does this mean

Found this piece of code written in ksh. I have no ideas what do the stuff like ${SRF##*\.} do. SUFFIX=${SRF##*\.} if ; then SUFFIX="" fi I have encountered similar expressions in other programs also. Any pointers on where to learn more about these... (1 Reply)
Discussion started by: jyotipg
1 Replies
Login or Register to Ask a Question