telnet連接linux主機
如何使用telnet連接linux主機
作者:馬鵬
歸檔:學習筆記
2017/8/1
telnet連接linux服務器
1.1 檢查系統是否安裝telnet服務
[root@localhost etc]# rpm -qa |grep telnet rpm –qa 查看軟件是否安裝
telnet-server-0.17-48.el6.x86_64
1.2 沒有安裝使用yum安裝即可
[root@localhost xinetd.d]# yum install telnet-server 安裝telnet服務
1.3 檢查telnet當前狀態
[root@localhost etc]# chkconfig |grep telnet
telnet: off
如果為off需要將其改為on
[root@localhost xinetd.d]# chkconfig telnet on
[root@localhost xinetd.d]# chkconfig |grep telnet
telnet: on
1.4 重啟xinetd服務
[root@localhost xinetd.d]# /etc/init.d/xinetd restart 重啟xinetd服務
Stopping xinetd: [FAILED]
Starting xinetd: [ OK ]
1.5 關閉防火墻
[root@localhost ~]# /etc/init.d/iptables stop 關閉防火墻
[root@localhost ~]# /etc/init.d/iptables status 檢查狀態
iptables: Firewall is not running.
1.6 因為linux默認不容許 root用戶以telnet方式登錄系統,需要改/etc/securetty
[root@localhost etc]# mv securetty securetty.bak
將securetty重命名後即可使用root來登陸
1.7 檢查root是否可以用telnet登陸
localhost.localdomain login: root
Password:
Last login: Sun Jul 30 22:59:36 from 10.0.0.1
[root@localhost ~]# ls
anaconda-ks.cfg index.html install.log install.log.syslog
[root@localhost ~]# pwd
/root
telnet連接linux主機