{"id":463,"date":"2017-01-09T18:21:22","date_gmt":"2017-01-09T18:21:22","guid":{"rendered":"https:\/\/visworlditsolution.wordpress.com\/?p=463"},"modified":"2017-01-09T18:21:22","modified_gmt":"2017-01-09T18:21:22","slug":"how-to-configure-telnet-server-in-redhat-linux-part-1","status":"publish","type":"post","link":"https:\/\/linux.thingsomething.com\/index.php\/2017\/01\/09\/how-to-configure-telnet-server-in-redhat-linux-part-1\/","title":{"rendered":"How to configure Telnet Server in Redhat Linux part 1"},"content":{"rendered":"<p>hello guys today we will discuss about telnet .telnet is a remote login process .if we used telnet then we will login any system or server \u00a0in remotely. Here i show you how to configure telnet in Redhat Linux \u00a0.And how to access in windows so now we will start you just follow simple steps<\/p>\n<p>Step 1 &#8211; before we install telnet package through yum server if you want to know<a href=\"https:\/\/visworlditsolution.wordpress.com\/2016\/12\/26\/what-is-yum-and-how-to-create-in-redhat-linux-server\/\"> how to \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 configure yum in linux<\/a>\u00a0so please click on link and look \u00a0.so here i accept you configure yum in Linux .<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone wp-image-465\" src=\"https:\/\/visworlditsolution.files.wordpress.com\/2017\/01\/screenshot-4.png?w=300\" alt=\"telnet \" width=\"732\" height=\"437\" \/><\/p>\n<p><!--more--><\/p>\n<p>Step 2 .we will install telnet package through this commands<strong> #yum install telnet*\u00a0<\/strong><\/p>\n<p><span style=\"color:#008000;\"><strong>[root@localhost ~]# yum install telnet*<\/strong><\/span><\/p>\n<pre><span style=\"color:#339966;\"><strong>Loaded plugins: rhnplugin, security\nRepository 'a' is missing name in configuration, using id\nThis system is not registered with RHN.\nRHN support will be disabled.\na                                                                                      | 1.3 kB     00:00\nSetting up Install Process\nPackage 1:telnet-server-0.17-39.el5.i386 already installed and latest version\nPackage 1:telnet-0.17-39.el5.i386 already installed and latest version\nNothing to do\n[root@localhost ~]# yum remove telnet\nLoaded plugins: rhnplugin, security\n[root@localhost ~]# yum install *telnet\nLoaded plugins: rhnplugin, security\nRepository 'a' is missing name in configuration, using id\nThis system is not registered with RHN.\nRHN support will be disabled.\nSetting up Install Process\nResolving Dependencies\n--&gt; Running transaction check\n---&gt; Package telnet.i386 1:0.17-39.el5 set to be updated\n--&gt; Finished Dependency Resolution\nDependencies Resolved\n==============================================================================================================\n Package                  Arch                   Version                            Repository           Size\n==============================================================================================================\nInstalling:\n telnet                   i386                   1:0.17-39.el5                      a                    57 k\nTransaction Summary\n==========================================================================<\/strong><\/span>====================================\n<span style=\"color:#339966;\"><strong>Install      1 Package(s)\nUpdate       0 Package(s)\nRemove       0 Package(s)\nTotal download size: 57 k\nIs this ok [y\/N]:<span style=\"color:#008000;\"> y<\/span>\nDownloading Packages:\nRunning rpm_check_debug\nRunning Transaction Test\nFinished Transaction Test\nTransaction Test Succeeded\nRunning Transaction\n  Installing     : telnet                                                                                 1\/1\nInstalled:\n  telnet.i386 1:0.17-39.el5\nComplete!\n[root@localhost ~]#\n\n<\/strong><\/span><\/pre>\n<p>Step 3- then we will go to telnet configuration file \u00a0and change something setting<br \/>\n<span style=\"color:#008000;\"><strong>[root@localhost ~]# vim \/etc\/xinetd.d\/telnet<\/strong><\/span><\/p>\n<pre><span style=\"color:#339966;\"><strong>service telnet\n{\n        flags           = REUSE\n        socket_type     = stream\n        wait            = no\n        user            = root\n        server          = \/usr\/sbin\/in.telnetd\n        log_on_failure  += USERID\n        disable         = yes\n}\n~`\n~<\/strong><\/span>\n~\n~<\/pre>\n<p>Step 4 -here we look Disable is yes no we do change here .we will write no like this<\/p>\n<p><span style=\"color:#ff0000;\">Here we will go to insert mod through<\/span> <strong>\u00a0i<\/strong> <span style=\"color:#ff0000;\">( when we will press(<\/span><strong> i<\/strong> <span style=\"color:#ff0000;\">)<\/span><\/p>\n<pre><span style=\"color:#339966;\">service telnet\n{\n        flags           = REUSE\n        socket_type     = stream\n        wait            = no\n        user            = root\n        server          = \/usr\/sbin\/in.telnetd\n        log_on_failure  += USERID<\/span>\n       <strong> disable         = no<\/strong>\n<span style=\"color:#339966;\">}\n~\n~\n~\n~<\/span><span style=\"color:#008000;\"><strong>:wq<\/strong><\/span><\/pre>\n<p><span style=\"color:#ff0000;\">save \u00a0just file :wq (pres Esc :wq)\u00a0<\/span><\/p>\n<p>Step 5 &#8211; now we will start telnet service belong this commands<\/p>\n<p><span style=\"color:#008000;\"><strong>[root@localhost ~]# service xinetd restart<\/strong><\/span><\/p>\n<pre><span style=\"color:#339966;\"><strong>\nStopping xinetd:                                           [  OK  ]\nStarting xinetd:                                           [  OK  ]\n[root@localhost ~]#<\/strong><\/span><\/pre>\n<p>Step 5 now we will off our linux firewall through this commands<\/p>\n<p><span style=\"color:#008000;\"><strong>[root@localhost ~]# iptables -F<\/strong><\/span><br \/>\n<span style=\"color:#008000;\"><strong> [root@localhost ~]# setenforce 0<\/strong><\/span><\/p>\n<p>Step 6 here we should telnet user so we create one user for telnet<\/p>\n<p><span style=\"color:#008000;\"><strong>[root@localhost ~]# useradd joon<\/strong><\/span><br \/>\n<span style=\"color:#008000;\"><strong> [root@localhost ~]# passwd joon<\/strong><\/span><br \/>\nChanging password for user joon.<br \/>\n<span style=\"color:#339966;\">New UNIX password:<\/span><span style=\"color:#008000;\"><strong>12345<\/strong><\/span><br \/>\nB<span style=\"color:#339966;\">AD PASSWORD: it is too short<\/span><br \/>\n<span style=\"color:#339966;\">Retype new UNIX password<\/span>:5 <span style=\"color:#008000;\"><strong>1234<\/strong><\/span><br \/>\n<span style=\"color:#339966;\">passwd: all authentication tokens updated successfully.<\/span><\/p>\n<p>Step 7 now our telnet is complete . then we will \u00a0go our windows system and on telnet Clint feature<\/p>\n<p><strong><span style=\"color:#0000ff;\">control panel &gt; programs &gt;turn \u00a0windows features \u00a0on or off<img loading=\"lazy\" decoding=\"async\" class=\"alignnone wp-image-464\" src=\"https:\/\/visworlditsolution.files.wordpress.com\/2017\/01\/screenshot-6.png?w=300\" alt=\"Telnet Client \" width=\"535\" height=\"455\" \/> <\/span><\/strong><\/p>\n<p>when we click on turn \u00a0windows features \u00a0on or off\u00a0then \u00a0features windows in open we will select Telnet clits and click<\/p>\n<p>Step 7 now open pur windows commands prompt and just type linux ip address .we can look our linux ip address through \u00a0<span style=\"color:#008000;\"><strong>#ifconfig\u00a0<\/strong><\/span><\/p>\n<p>step 8 &#8211; we type below commands in windows commands prompts<\/p>\n<p><span style=\"color:#0000ff;\"><strong>telnet 192.168.0.101 \u00a0 \u00a0 \u00a0<\/strong><\/span> (this is mu linux ip address )<\/p>\n<p><span style=\"color:#0000ff;\">username: \u00a0joon<\/span><\/p>\n<p><span style=\"color:#0000ff;\">password: 12345<\/span><\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>hello guys today we will discuss about telnet .telnet is a remote login process .if we used telnet then we will login any system or &hellip; <span class=\"ml-btn\"><a href=\"https:\/\/linux.thingsomething.com\/index.php\/2017\/01\/09\/how-to-configure-telnet-server-in-redhat-linux-part-1\/\" class=\"more-link\">Read More<\/a><\/span><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"_uf_show_specific_survey":0,"_uf_disable_surveys":false,"footnotes":""},"categories":[8,14],"tags":[97,115,153],"class_list":["post-463","post","type-post","status-publish","format-standard","hentry","category-linux-rhel5","category-server-configuration","tag-how-to-configure-telnet-in-linux","tag-how-to-create-telnet-in-redhat-linux-server","tag-how-to-on-telnet-features-in-linux"],"aioseo_notices":[],"_links":{"self":[{"href":"https:\/\/linux.thingsomething.com\/index.php\/wp-json\/wp\/v2\/posts\/463"}],"collection":[{"href":"https:\/\/linux.thingsomething.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/linux.thingsomething.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/linux.thingsomething.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/linux.thingsomething.com\/index.php\/wp-json\/wp\/v2\/comments?post=463"}],"version-history":[{"count":0,"href":"https:\/\/linux.thingsomething.com\/index.php\/wp-json\/wp\/v2\/posts\/463\/revisions"}],"wp:attachment":[{"href":"https:\/\/linux.thingsomething.com\/index.php\/wp-json\/wp\/v2\/media?parent=463"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linux.thingsomething.com\/index.php\/wp-json\/wp\/v2\/categories?post=463"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linux.thingsomething.com\/index.php\/wp-json\/wp\/v2\/tags?post=463"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}