【telnet】開啟RHEL5.3 Linux的telnet服務

secooler發表於2010-03-04
首先,不建議使用telnet方式登入Linux,但是配置telnet的方法還是要掌握的。
簡單記錄一下在紅帽RHEL5.3上配置telnet的過程。

1.確認所需的包已經安裝
[root@secDB ~]# rpm -qa | grep -i telnet
telnet-server-0.17-39.el5
telnet-0.17-39.el5

telnet是預設被安裝的。
如果沒有安裝,可以到安裝介質的光碟中找到對應的安裝包,使用“rpm -ivh”命令進行安裝。

2.修改telnet服務配置檔案
[root@secDB ~]# 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         = no #將這裡的“yes”修改為“no”
}
~
~

3.重啟xinetd守護程式
[root@secDB ~]# service xinetd restart
Stopping xinetd:                                           [  OK  ]
Starting xinetd:                                           [  OK  ]

或使用如下的方法重啟
[root@secDB ~]# /etc/init.d/xinetd restart
Stopping xinetd:                                           [  OK  ]
Starting xinetd:                                           [  OK  ]

4.設定隨開機啟動
[root@secDB ~]# chkconfig --add telnet
[root@secDB ~]# chkconfig telnet on

確認是否為隨開機啟動
[root@secDB ~]# chkconfig --list telnet
telnet          on

OK,調整完畢。

5.測試telnet登入資料庫伺服器
C:\>telnet 172.17.193.211
Trying 172.17.193.211...
Connected to 172.17.193.211.
Escape character is '^]'.
Red Hat Enterprise Linux Server release 5.3 (Tikanga)
Kernel 2.6.18-128.el5 on an x86_64
login: oracle
Password:
Last login: Thu Mar  4 12:38:11 from 10.142.8.207
ora10g@secDB /home/oracle$ sqlplus / as sysdba

SQL*Plus: Release 10.2.0.3.0 - Production on Thu Mar 4 12:56:13 2010

Copyright (c) 1982, 2006, Oracle.  All Rights Reserved.


Connected to:
Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - 64bit Production
With the Partitioning, Oracle Label Security, OLAP and Data Mining Scoring Engine options

sys@ora10g> select * from v$version;

BANNER
----------------------------------------------------------------
Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - 64bi
PL/SQL Release 10.2.0.3.0 - Production
CORE    10.2.0.3.0      Production
TNS for Linux: Version 10.2.0.3.0 - Production
NLSRTL Version 10.2.0.3.0 - Production

成功。

6.去除無法telnet到root使用者的限制
1)預設情況下是不允許telnet到root使用者的
C:\>telnet 172.17.193.211
Trying 172.17.193.211...
Connected to 172.17.193.211.
Escape character is '^]'.
Red Hat Enterprise Linux Server release 5.3 (Tikanga)
Kernel 2.6.18-128.el5 on an x86_64
login: root
Password:
Login incorrect

login:

這裡不是應為密碼輸入錯誤導致的登入不進去,而是系統限制。

2)處理方法
使用mv備份的方式刪除“/etc/securetty”檔案
[root@secDB ~]# mv /etc/securetty /etc/securetty.bak

3)再次測試
C:\>telnet 172.17.193.211
Trying 172.17.193.211...
Connected to 172.17.193.211.
Escape character is '^]'.
Red Hat Enterprise Linux Server release 5.3 (Tikanga)
Kernel 2.6.18-128.el5 on an x86_64
login: root
Password:
Last login: Thu Mar  4 12:39:19 from 10.142.8.207
[root@secDB ~]# id
uid=0(root) gid=0(root) groups=0(root),1(bin),2(daemon),3(sys),4(adm),6(disk),10(wheel),105(pkcs11)

root使用者telnet登入成功。

7.小結
本文透過一個小實驗給大家展示了在紅帽5.3上telnet的配置方法。供參考。

Good luck.

secooler
10.03.04

-- The End --

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/519536/viewspace-628647/,如需轉載,請註明出處,否則將追究法律責任。

相關文章