码迷,mamicode.com
首页 > Web开发 > 详细

Linux 系统Telnet服务

时间:2016-03-01 00:57:14      阅读:233      评论:0      收藏:0      [点我收藏+]

标签:

Linux 系统Telnet服务

  telnet与ssh相比,安全性能并不高,但是在ssh版本升级或者其他的情况下还是需要开启这一项服务。linux提供服务是由运行在后台的守护进程daemon来执行的,telnet服务是由xinetd守护的。

  RedHat系统:

  开启telnet服务:

  1、检查telnet是否已经安装。

技术分享

  2、查看telnet服务是否开启,

  命令:chkconfig --list | grep telnet

技术分享

  3、开启telnet服务

  方法一:vi /etc/xinetd.d/telnet

     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

}

    将disable=yes行前加#,或者改为disable=no

  4、重新启动xinetd守护进程

  由于telnet服务也是由xinetd守护的,所以安装完telnet-server,要启动telnet服务就必须重新启动xinetd

[root@centos-64-min xinetd.d]# service xinetd restart

  5、关闭防火墙

1) 重启后生效 
开启: chkconfig iptables on 
关闭: chkconfig iptables off 

2) 即时生效,重启后失效 
开启: service iptables start 
关闭: service iptables stop 

  6、如果想允许以root身份登录telnet

  vi /etc/pam.d/login

在 auth required /lib/security/pam_securetty.so 这行前加 # ,即把这行注释掉就行

关闭telnet服务

(1)法一:vi /etc/xinetd.d/telnet 将distable = no 改成 disable = yes

    法二:chkconfig telnet off 如果需要设置telent服务不为开机自启动,使用命令chkconfig --del telnet

(2)使用命令service xinetd restart或者/etc/init.d/xinetd restart是更改生效

 删除telnet-server包:RPM -e telnet-server --nodeps      注释23端口: vi /etc/service.

 

Linux 系统Telnet服务

标签:

原文地址:http://www.cnblogs.com/King-Penguin/p/5229378.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!