Slide

  • LINUX

    LINUX:In 1969 AT&T made a decision to withdraw Multics and go with GECOS (General Electric Comprehensive Operating Supervisor / System), with AT & T in Bells Lab when Multics was withdrawn some of the programmers named Ken Thompson and Dennis Ritchie decided to rewrite operating system in order to support low cost computer..To Know More

    CLICK HERE

  • MICROSOFT

    MICROSOFT:Microsoft was established to develop and sell BASIC interpreters for the Altair 8800. It rose to dominate the home computer operating system market with MS-DOS in the mid-1980s,followed by the Microsoft Windows line of operating systems. To Know More

    CLICK HERE

  • CISCO

    CISCO:During the early 1980s, there was a married couple namely Len and Sandy Bosack who used to work in two different departments of computer located in Stanford University. This couple was facing problem in making their computers communicate with each other To Know More

    CLICK HERE

showinfo=1

Telnet Server And Client Config


Telnet Server And Client Config


Telnet server is used to login into another system. You can use the telnet command to log in remotely to another system on your network. The system can be on your local area network or available through an Internet connection.Telnet operates as if you were logging in to another system from a remote terminal. You will be asked for a login name and password. In effect, you are logging in to another account on another system. In fact, if you have an account on another system, you could use Telnet to log in to it.


Configurations Files

1. /etc/xinetd.d/telnet - Main Configuration File.

2. /etc/securetty - Contains list of the consoles allow to access for users to used log in remotely to another system.

3. /etc/hosts - Contains list of IP address allow to access telnet session from another systems.


Configuring Telnet Server.



[root@server1 ~]# yum install telnet*        …….
Loaded plugins: refresh-packagekit, rhnplugin
This system is not registered with RHN.
RHN support will be disabled.
Server | 1.3 kB 00:00
Setting up Install Process
Resolving Dependencies
--> Running transaction check
---> Package telnet.i686 1:0.17-46.el6 set to be updated
---> Package telnet-server.i686 1:0.17-46.el6 set to be updated
--> Processing Dependency: xinetd for package: 1:telnet-server-0.17-46.el6.i686
--> Running transaction check
---> Package xinetd.i686 2:2.3.14-29.el6 set to be updated
--> Finished Dependency Resolution
Dependencies Resolved
===========================================================================
Package Arch Version Repository Size
===========================================================================
Installing:
telnet i686 1:0.17-46.el6 Server 56 k
telnet-server i686 1:0.17-46.el6 Server 36 k
Installing for dependencies:
xinetd i686 2:2.3.14-29.el6 Server 121 k

Transaction Summary
===========================================================================
Install 3 Package(s)
Upgrade 0 Package(s)

Total download size: 213 k
Installed size: 409 k
Is this ok [y/N]: y
Downloading Packages:
(1/3): telnet-0.17-46.el6.i686.rpm | 56 kB 00:00
(2/3): telnet-server-0.17-46.el6.i686.rpm | 36 kB 00:00
(3/3): xinetd-2.3.14-29.el6.i686.rpm | 121 kB 00:00
-----------------------------------------------------------------------------------------------------------------------------
Total 5.2 MB/s | 213 kB 00:00
Running rpm_check_debug
Running Transaction Test
Transaction Test Succeeded
Running Transaction
Installing : 2:xinetd-2.3.14-29.el6.i686 1/3
Installing : 1:telnet-server-0.17-46.el6.i686 2/3
Installing : 1:telnet-0.17-46.el6.i686 3/3

Installed:
telnet.i686 1:0.17-46.el6 telnet-server.i686 1:0.17-46.el6

Dependency Installed:
xinetd.i686 2:2.3.14-29.el6
Complete!


[root@server1 ~]#vi /etc/xinetd.d/telnet    …….
# default: on
# description: The telnet server serves telnet sessions; it uses \
# unencrypted username/password pairs for authentication.
service telnet
{
flags = REUSE
socket_type = stream
wait = no
user = root
server = /usr/sbin/in.telnetd
log_on_failure + = USERID
disable = yes
}

and modify this as follow

# default: on
# description: The telnet server serves telnet sessions; it uses \
# unencrypted username/password pairs for authentication.
service telnet
{
flags = REUSE
socket_type = stream
wait = no
user = root
server = /usr/sbin/in.telnetd
log_on_failure + = USERID
disable = no
}


:wq!           …….



[root@server1 ~]# vi /etc/securetty       …….
console
vc/1
vc/2
vc/3
vc/4
vc/5
vc/6
vc/7
vc/8
vc/9
vc/10
vc/11
tty1
tty2
tty3
tty4
tty5
tty6
tty7
tty8
tty9
tty10
tty11

and modify this as follow
console
vc/1
vc/2
vc/3
vc/4
vc/5
vc/6
vc/7
vc/8
vc/9
vc/10
vc/11
tty1
tty2
tty3
tty4
tty5
tty6
tty7
tty8
tty9
tty10
tty11
pts/0
pts/1
pts/2


:wq!     …….



[root@server1 ~]#vi /etc/hosts …….
add client's and own machine ip adsress

127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4
::1 localhost localhost.localdomain localhost6 localhost6.localdomain6
200.0.0.1
200.0.0.100



:wq! …….

[root@server1 ~]# service xinetd restart …….
Stopping xinetd: [FAILED]
Starting xinetd: [ OK ]
[root@server1 ~]# chkconfig --level 35 xinetd on …….




Configuring Telnet Client.

[root@client ~]# yum install telnet …….
Loaded plugins: refresh-packagekit, rhnplugin
This system is not registered with RHN.
RHN support will be disabled.
Client | 1.3 kB 00:00
Setting up Install Process
Resolving Dependencies
--> Running transaction check
---> Package telnet.i686 1:0.17-46.el6 set to be updated
--> Finished Dependency Resolution
Dependencies Resolved
===========================================================================
Package Arch Version Repository Size
===========================================================================
Installing:
telnet i686 1:0.17-46.el6 Client 56 k

Transaction Summary
===========================================================================
Install 1 Package(s)
Upgrade 0 Package(s)

Total download size: 56 k
Installed size: 102 k
Is this ok [y/N]: y
Downloading Packages:
telnet-0.17-46.el6.i686.rpm | 56 kB 00:00
Running rpm_check_debug
Running Transaction Test
Transaction Test Succeeded
Running Transaction
Installing : 1:telnet-0.17-46.el6.i686 1/1

Installed:
telnet.i686 1:0.17-46.el6
Complete!


[root@client Desktop]# telnet 200.0.0.1  …….
Trying 200.0.0.1...
Connected to 200.0.0.1.
Escape character is '^]'.
Red Hat Enterprise Linux Server release 6.0 (Santiago)
Kernel 2.6.32-71.el6.i686 on an i686
login: root …….
Password: * * * * * …….
Last login: Sat May 20 20:32:31 on pts/2


[root@server1 ~]# ll …….
total 112
drwxr-xr-x. 11 root root 4096 May 20 21:19 1
-rw-------. 1 root root 1500 Jan 1 2013 anaconda-ks.cfg
drwxr-xr-x. 2 root root 4096 May 20 20:46 Desktop
drwxr-xr-x. 2 root root 4096 May 22 2011 Documents
drwxr-xr-x. 2 root root 4096 May 22 2011 Downloads
-rw-r--r--. 1 root root 45367 Jan 1 2013 install.log
-rw-r--r--. 1 root root 10565 Jan 1 2013 install.log.syslog
drwxr-xr-x. 2 root root 4096 May 22 2011 Music
-rw-r--r-- 1 root root 21 May 20 22:33 new1
drwxr-xr-x. 2 root root 4096 May 22 2011 Pictures
drwxr-xr-x. 2 root root 4096 May 22 2011 Public
drwxr-xr-x. 2 root root 4096 May 22 2011 Templates
drwxr-xr-x. 2 root root 4096 May 22 2011 Videos
-rw-r--r-- 1 root root 0 May 20 2000 welcome

[root@server1 ~]# rm-rf welcome …….


[root@server1 ~]# ll …….
drwxr-xr-x. 11 root root 4096 May 20 21:19 1
-rw-------. 1 root root 1500 Jan 1 2013 anaconda-ks.cfg
drwxr-xr-x. 2 root root 4096 May 20 20:46 Desktop
drwxr-xr-x. 2 root root 4096 May 22 2011 Documents
drwxr-xr-x. 2 root root 4096 May 22 2011 Downloads
-rw-r--r--. 1 root root 45367 Jan 1 2013 install.log
-rw-r--r--. 1 root root 10565 Jan 1 2013 install.log.syslog
drwxr-xr-x. 2 root root 4096 May 22 2011 Music
-rw-r--r-- 1 root root 21 May 20 22:33 new1
drwxr-xr-x. 2 root root 4096 May 22 2011 Pictures
drwxr-xr-x. 2 root root 4096 May 22 2011 Public
drwxr-xr-x. 2 root root 4096 May 22 2011 Templates
drwxr-xr-x. 2 root root 4096 May 22 2011 Videos

[root@server1 ~]#cat > new …….
Welcome to ITTables …….
CTRL+D …….
[root@server1 ~]#ll …….
drwxr-xr-x. 11 root root 4096 May 20 21:19 1
-rw-------. 1 root root 1500 Jan 1 2013 anaconda-ks.cfg
drwxr-xr-x. 2 root root 4096 May 20 20:46 Desktop
drwxr-xr-x. 2 root root 4096 May 22 2011 Documents
drwxr-xr-x. 2 root root 4096 May 22 2011 Downloads
-rw-r--r--. 1 root root 45367 Jan 1 2013 install.log
-rw-r--r--. 1 root root 10565 Jan 1 2013 install.log.syslog
drwxr-xr-x. 2 root root 4096 May 22 2011 Music
-rw-r--r-- 1 root root 21 May 20 22:33 new1
drwxr-xr-x. 2 root root 4096 May 22 2011 Pictures
drwxr-xr-x. 2 root root 4096 May 22 2011 Public
drwxr-xr-x. 2 root root 4096 May 22 2011 Templates
drwxr-xr-x. 2 root root 4096 May 22 2011 Videos
-rw-r--r-- 1 root root 0 May 20 2000 welcome
[root@server1 ~]# exit …….
Logout
Connection closed by foreign host.

[root@client ~]# telnet 200.0.0.1 …….
Trying 200.0.0.1...
Connected to 200.0.0.1.
Escape character is '^]'.
Red Hat Enterprise Linux Server release 6.0 (Santiago)
Kernel 2.6.32-71.el6.i686 on an i686
login: user1 …….
Password:***** …….
Last login: Sat May 20 23:08:34 from 200.0.0.2
[user1@server1 ~]$

39 comments:

  1. I am really enjoying reading your well written articles. It looks like you spend a lot of effort and time on your blog. I have bookmarked it and I am looking forward to reading new articles.
    http://www.healthmatchco.com |

    ReplyDelete
  2. Its like you read my mind! You seem to know so much about this, like you wrote the book in it or something. I think that you could do with some pics to drive the message home a bit, but other than that, this is great blog. A great read.
    sddollhouse.com |

    ReplyDelete
  3. Hello, I enjoy reading all of your post. I wanted to write a little comment to support you.
    http://www.businessdevelopmenttoronto.com |

    ReplyDelete
  4. A very good and informative article indeed . It helps me a lot to enhance my knowledge, I really like the way the writer presented his views. I hope to see more informative and useful articles in future.
    www.autowhizal1.com |

    ReplyDelete
  5. Hello, i am glad to read the whole content of this blog and am very excited and happy to say that the webmaster has done a very good job here to put all the information content and information at one place.
    agilebusinessvalue.com |

    ReplyDelete
  6. Always thinking to do the same thing again and again , i am very thankful that i found this one..
    emrsoftwaresite |

    ReplyDelete
  7. This is such a great resource that you providing and you give it away for free.
    http://www.soupehe.com |

    ReplyDelete
  8. I recently came across your blog and have been reading along. I thought I would leave my first comment. I don't know what to say except that I have enjoyed reading. Nice blog. I will keep visiting this blog very often.
    schmeckts-dir |

    ReplyDelete
  9. Hi, i think that i saw you visited my blog so i came to “return the favor”.I am trying to find things to enhance my website!I suppose its ok to use a few of your ideas!!
    Business Analyst |

    ReplyDelete
  10. The Sword is based on this poster, but I`ve changed the pommel:
    http://www.sandiegofitnessclub.com |

    ReplyDelete
  11. Hello, i am glad to read the whole content of this blog and am very excited and happy to say that the webmaster has done a very good job here to put all the information content and information at one place.hflivehealthy.com |

    ReplyDelete
  12. Positive site, where did u come up with the information on this posting? I'm pleased I discovered it though, ill be checking back soon to find out what additional posts you include.
    www.timesntechnology.com |

    ReplyDelete
  13. Altima Butt Signals Pertaining to Beautiful Talks about Nighttime
    www.noma-auto.com |

    ReplyDelete
  14. Thanks. I always enjoy reading your posts - they are always humorous and intelligent.You can learn more:
    Saman Food |

    ReplyDelete
  15. Hello, I enjoy reading all of your post. I wanted to write a little comment to support you.
    www.autoscoloris.com |

    ReplyDelete
  16. My brother recommended I may like this blog. He was once totally right. This submit actually made my day. You can not believe just how a lot time I had spent for this information! Thanks!
    http://www.liveithealthyforlife.com |

    ReplyDelete
  17. Your blog is really nice. If I may share some insight, traffic studies on blogs show most people read blogs on Mondays. So it should encourage blogger to write new updates over the weekend primarily.
    hrmopenhome |

    ReplyDelete
  18. This comment has been removed by the author.

    ReplyDelete
  19. Such a very useful article. Very interesting to read this article.I would like to thank you for the efforts you had made for writing this awesome article.

    Discover our website bounty of free online games now!
    Our website has the biggest collection of free online games. Totally new games are added every day!

    age of War | gold Miner| unfair Mario | cubefield| tanki Online

    ReplyDelete
  20. With a Hotmail account, you can send and receive emails quickly and easily as well as login and use all Microsoft services.
    hotmail login | create new hotmail account
    Creating a Gmail account is quick and easy. You can follow the tutorial to sign up Gmail here.
    gmail login | gmail sign in | install google drive

    ReplyDelete

  21. شركة تنظيف خزانات بالمدينة المنورة وشقق بالمدينة المنورة شركة غسيل خزانات ومكافحة حشرات بالمدينة المنورة ونقل عفش بالمدينة المنورة مؤسسة صفوة المدينة
    شركة تنظيف خزانات بالمدينة المنورة
    شركة مكافحة حشرات بالمدينة المنورة مؤسسة صفوة المدينة انها الاولى فى مكافحة ورش الحشرات بالمدينة المنورة رش البق رش الصراصير مكافحة النمل الابيض بالمدينة المنورة
    شركة مكافحة حشرات بالمدينة المنورة

    ReplyDelete
  22. Andronite Enhanced You could rely upon your personal medical doctor to help you with this or can you may additionally look into in your personal. The crucial factor is that you make the selection to go forward and to stay with it. If you have a second of weak point, don't worry too much about it, simply go again heading in the right direction. http://musclesciencefacts.com/andronite-enhanced/

    ReplyDelete
  23. Wow, Its really wonderful to read this article,you can dowmload here more and more
    Auslogics boostspeed key
    Auslogics boostspeed key is another great program for optimizing your computer. Naturally, you can remove garbage from hard disks and the system registry, optimize installed applications on your computer, work with hidden Windows settings and so on.

    Wow, Its really wonderful to read this article,you can dowmload here more and more
    Microsoft office 365 product key
    Microsoft Office 365 is a complete set of tools and softwares present in an Office setup file. This is just the combined version of some online as well as offline office tools by Microsoft. Just in case of this archive, It is combined Microsoft office 2013 and everything in it, plus some online libraries and synchronization features added into one bundle.


    Its really wonderful to read this article,you can dowmload here more and more
    wondershare filmora 8.3.5.6 crack
    Filmora is an all-in-one home video editing production software that has powerful functionality and a fully stacked feature set. Filmora is a solid app that gives you the features and styles that have been previously only available to professional film makers that have a certain level of experience and the expensive applications to match.

    ReplyDelete
  24. Wow, Its really wonderful to read this article,you can dowmload here more and more
    Power ISO Free Download With Crack
    The interface of PowerISO is referred to as very intuitive and interactive. It is very easy to drag and drop files into the disc authoring interface. Copying and Erasing a disc is also a job of a few seconds with the help of this software. The best part is that you can mount up to 23 virtual drives at a time with PowerISO.

    PhpStorm 2017.2.4 Crack
    PhpStorm 2017.2.4 Crack is a fresher version of PHP language working software containing SQL editor. Having a number of unique plugins to operate and provides java codes manually.

    ReplyDelete
  25. Good answer back in return of this issue with real arguments and describing
    all on the topic of that. PowerArchiver 2018 Crack

    ReplyDelete
  26. Hello! Would you mind if I share your blog with my twitter group?

    There’s a lot of people that I think would really enjoy your content.

    Please let me know. Many thanks
    AnyDesk Full Crack v3.6.1 License Key

    ReplyDelete
  27. I am really enjoying reading your well written articles. It looks like you spend a lot of effort and time on your blog. I have bookmarked it and I am looking forward to reading new articles.

    ReplyDelete

Note:- Comment as: Option available to post without login select "Anonymous" from the drop down...........

For Latest Updates: Subscribe Now | | Test Your Knowledge, Take a Quiz now Click Here | | Site Best Viewed In Firefox

X