Telnet的配置安装
1、下载yum源,并安装软件
[[email protected] ~]# wget http://mirrors.163.com/
[[email protected] ~]# yum -y install telnet*
2、修改telnet服务配置
[[email protected] ~]# vi /etc/xinetd.d/telnet
service telnet
{
disable = yes
flags = REUSE
socket_type = stream
wait = no
user = root
server = /usr/sbin/in.telnetd
log_on_failure += USERID
}
[[email protected] ~]# service xinetd restart
[[email protected] ~]# chkconfig telnet on
3、设置root用户远程登录telnet服务
默认情况下,系统是不允许root用户telnet远程登录的。如果要使用root用户直接登录
vi/etc/securetty 添加pts/0,要控制root同时telnet数量,就添加多少个pts/x,其中x为0-255的数字
[[email protected] ~]# echo ‘pts/2‘ >>/etc/securetty ("pts/2"意思是:允许几个用户同时连接)
[[email protected]ost ~]# echo ‘pts/3‘ >>/etc/securetty
[[email protected] ~]# service xinetd restart
4、关闭iptables防火墙
[[email protected] ~]# service iptables stop
iptables:将链设置为政策 ACCEPT:nat mangle filter [确定]
iptables:清除防火墙规则: [确定]
iptables:正在卸载模块: [确定]
5、修改防火墙设置,开放23端口通过 (备注)
编辑/etc/sysconfig/iptables文件,添加如下一行内容
[[email protected] ~]# vi /etc/sysconfig/iptables
-A INPUT -m state --state NEW -m tcp -p tcp --dport 23 -j ACCEPT。
6、然后重启防火墙
[[email protected] ~]# service iptables stop