what is telnet?
Answers were Sorted based on User's Feedback
Answer / swamynaidu kollu
Telnet (Telecommunication network) is a network protocol
used on the Internet or local area network (LAN) connections
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / sushma
using this command we can connect to remote host computer
through telnet protocol.It allows all application level
permission
syntax- $telnet[options][protocol]
Ex-$telnet 192.1.4.191
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / suitable
telnet - user interface to the TELNET protocol
The telnet command is used to communicate with another
host using the TELNET protocol. If telnet is invoked
without the host argument, it enters command mode,
indicated by its prompt ( telnet>). In this mode, it
accepts and executes the commands. If it is invoked
with arguments, it performs an open command with those
arguments.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / sudipto
Telnet is a command in UNIX to login to a different machine
from the current machine
| Is This Answer Correct ? | 0 Yes | 0 No |
What will the following command do?
What is a command and examples?
in UNIX,How do you check for processes started by particular user suppose the user name is 'suresh'?
what do you understand by 'building block primitive'?
Is there any method to erase all files in the current directory, along with its all sub-directories, by using only one command?
what is exact definition of operating system?
can we use cat command as an editor ..???
How do I delete files from command prompt?
Explain how to use grep command to list find the records of a file containing 10 different strings?
What does the command '$ls | wc –l > file1' do?
The command grep first second third /usr/you/myfile a) prints lines containing the words first, second or third from the file /usr/you/myfile b) searches for lines containing the pattern first in the files second, third, and /usr/you/myfile and prints them c) searches the files /usr/you/myfiel and third for lines containing the words first or second and prints them d) replaces the word first with the word second in the files third and /usr/you/myfile e) None of the above
Give a regular expression that finds two things, try to come up with regular expressions that find each individually using "egrep" command?