Saturday, February 23, 2013

TELNET SERVER

What is TELNET? –
            TELNET is a user command and an underlying TCP/IP protocol for accessing remote computers. Through Telnet, an administrator or another user can access someone else's computer remotely. On the Web, HTTP and FTP protocols allow you to request specific files from remote computers, but not to actually be logged on as a user of that computer. With Telnet, you log on as a regular user with whatever privileges you may have been granted to the specific application and data on that computer.

The result of this request would be an invitation to log on with a UserID and a prompt for a password. If accepted, you would be logged on like any user who used this computer every day.

Configuring TELNET on Server computer
STEP 1 –
      At 1st we should run required RPMs for TELNET.

#yum   install   xinetd-2.3.14-10.el5.i386

STEP 2 –
        Now configure the following files....

#vi   /etc/xinetd.d/krb5-telnet 

 

  • Change the last line of the file...

Disable   =   No         or      Enable   =   yes

STEP 3 –
        Now restart the service...
#services   xinetd   restart
#services   xinetd   stop

                         ON CLIENT COMPUTER
STEP 1 –

For login remotely

#telnet   <IP of remote computer>
Username = ajay/root
Password = *******

                                   ~: Login successful :~

                     ON MICROSOFT COMPUTER

STEP 1 –

         Start ------------- program -------------- command prompt

C:\>telnet   <IP of remote computer>
Username – ajay/root
Password - *******

                                   ~: Login successful :~