【telnet】開啟RHEL5.3 Linux的telnet服務
首先,不建議使用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 --
簡單記錄一下在紅帽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/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- linux開啟telnet服務Linux
- win10開啟telnet服務如何操作 win10怎麼開啟電腦telnet服務Win10
- 搭建Telnet服務
- solaris啟動ftp和telnet服務FTP
- ubuntu 14.04中開啟telnet服務步驟Ubuntu
- 配置turbo linux es11上的ftp(gssftp) and telnet服務,及讓root 直接telnet備記LinuxFTP
- centos6安裝telnet服務CentOS
- 怎樣開啟win7和vista系統的telnet服務Win7
- win10怎麼安裝telnet服務_win10新增telnet服務具體步驟Win10
- win10找不到telnet服務怎麼辦_win10沒有telnet服務如何找回Win10
- win10缺少telnet服務怎麼回事 win10沒有telnet服務如何安裝Win10
- debian 中使用 telnet 測試服務
- linux-telnetLinux
- [Linux]Redhat AS4開啟telnet過程[轉載]LinuxRedhat
- Linux安裝telnetLinux
- 每日一技|巧用 Telnet 除錯 Dubbo 服務除錯
- 修改linux telnet的埠portLinux
- win10系統如何配置telnet服務【圖文】Win10
- linux沒有telnet命令Linux
- linux下設定telnetLinux
- 如何在rhel5開戶telnet服務及如何處理亂碼
- 開啟WIN7作業系統的telnet功能Win7作業系統
- Telnet命令
- win10 1809開啟telnet伺服器操作方法_win10如何開啟telnet伺服器Win10伺服器
- 圖文詳細過程Linux 使用yum安裝telnet-server、telnet、xinetd以及telnet本機ipLinuxServer
- Linux伺服器---配置telnetLinux伺服器
- Mac之telnet報錯-bash: telnet: command not foundMac
- 【liunx】telnet命令
- Linux伺服器---安裝telnetLinux伺服器
- Linux伺服器—安裝telnetLinux伺服器
- suse linux 10 sp2_telnetLinux
- Linux中的curl,telnet,ping,nslookup 指令Linux
- redhat linux9.0 telnet的配置說明RedhatLinux
- Win10如何開啟telnet等一系列指令Win10
- 思科路由器:開啟telnet和ssh遠端登陸路由器
- linux 開啟PHP服務LinuxPHP
- 遠端telnet登入進linux(轉)Linux
- Telnet埠測試