打开telnet服务
㈠ 在linux中如何开启telnet服务
查看telnet server是否安装
rpm -qa | grep telnet-server
如果没有,则安装:
yum install telnet-server -y
开启telnet服务:回
chkconfig telnet on
启动答telnet服务:
service xinetd reload
㈡ 2008怎么打开telnet服务
Windows server 2008的telnet组件在默认是不安装的,使用telnet服务需要自己开启。
步骤:专
1、打开“服务器管理属器”,并在管理界面中(左侧)打开“功能”项;
2、点击右侧的“添加功能”;
3、勾选“Telnet客户端“,点击 下一步;
4、确认安装界面,点击”安装“;
5、安装完成后,即可在Ms-dos启用。
㈢ 如何用DOS命令打开本地的telnet服务
三 使用系统自来带的工具SC.exe
使用命源令 sc config tlntsvr start= auto (注意在start=之后有个空格), 以下是解图:
C:\Documents and Settings\lenovo>sc config tlntsvr start= auto
[SC] ChangeServiceConfig SUCCESS
C:\Documents and Settings\lenovo>net start telnet
Telnet 服务正在启动 .
Telnet 服务已经启动成功。
㈣ WIN7如何开启telnet服务
开启复步骤如下制:
1、点击开始,点击运行,输入appwiz.cpl,点击确定;
㈤ ubuntu打开telnet服务具体步骤
1. sudo apt-get install xinetd telnetd
2. 安装成功后,系统也会有相应提示,
sudo vi /etc/inetd.conf并加入以下一行
telnet stream tcp nowait telnetd /usr/sbin/tcpd /usr/sbin/in.telnetd
3. sudo vi /etc/xinetd.conf并加入以下内容:
# Simple configuration file for xinetd
#
# Some defaults, and include /etc/xinetd.d/
defaults
{
# Please note that you need a log_type line to be able to use
log_on_success
# and log_on_failure. The default is the following :
# log_type = SYSLOG daemon info
instances = 60
log_type = SYSLOG authpriv
log_on_success = HOST PID
log_on_failure = HOST
cps = 25 30
}
includedir /etc/xinetd.d
4. sudo vi /etc/xinetd.d/telnet并加入以下内容:
# default: on
# description: The telnet server serves telnet sessions; it uses \
# unencrypted username/password pairs for authentication.
service telnet
{
disable = no
flags = REUSE
socket_type = stream
wait = no
user = root
server = /usr/sbin/in.telnetd
log_on_failure += USERID
}
5. 重启机器或重启网络服务sudo /etc/init.d/xinetd restart
6. 使用TELNET客户端远程登录即可进行非root用户访问。
7.使用root登录: mv /etc/securetty /etc/securetty.bak 这样root可以登录
了。也可这样:
修改/etc/pam.d/login这个文件。只需将下面一行注释掉即可。
#auth required lib/security/pam_securetty.so
8. 详细配制/etc/xinetd.d/telnet
service telnet
{
disable =no
bind =192.168.1.2
only_from=192.168.1.0/24
#上面这两行说明仅提供内部网段!
Instance =UNLIMITED
Nice =0
Flags =REUSE
socket_type=stream
wait =no
user =root
#server =/usr/sbin/telnetd
server =/usr/sbin/in.telnetd
server_args =-a none
log_on_failure +=USERID
}
service telnet
{
disable =no
bind =140.116.142.196
only_from=140.116.0.0/16
no_access=140.116.32.{10,26}
#上面三行设置外部较为严格的限制
instance =10
umask =022
nice =10
flags =REUSE
socket_type=stream
wait =no
user =root
#server =/usr/sbin/telnetd
server =/usr/sbin/in.telnetd
log_on_failure +=USERID
}
9.加设防火墙iptables:
如果想要针对192.168.0.0/24这个网段及61.xxx.xxx.xxx这个IP进行telnet开放,
可以增加下面几行规则:
/sbin/iptables -A INPUT -p tcp -i eth0 -s 192.168.0.0/24 --dport 23 -j
ACCEPT
/sbin/iptables -A INPUT -p tcp -i eth0 -s 61.xxx.xxx.xxx --dport 23 -j
ACCEPT
/sbin/iptables -A INPUT -p tcp -i eth0 --dport 23 -j DROP
10.加设防火墙/etc/hosts.allow(deny)机制:
上面开放了192.168.0.0/24这个网段,但是如果您只想让其中的
192.168.0.1~192.168.0.5进入,可以设置如下 :
vi /etc/hosts.allow
in.telnetd:192.168.0.1,192.168.0.2,192.168.0.3,192.168.0.4,192.168.0.5:allow
*原文地址*
http://forum.ubuntu.org.cn/viewtopic.php?t=85766&sid=
site : http://blog.chinaunix.net/u1/39518/showart_415036.html
*UBUNTU开启TELNET服务*
1. sudo apt-get install xinetd telnetd
2. 安装成功后,系统也会有相应提示(好象710才有,610就没看到),
sudo vi /etc/inetd.conf并加入以下一行
telnet stream tcp nowait telnetd /usr/sbin/tcpd /usr/sbin/in.telnetd
3. sudo vi /etc/xinetd.conf并加入以下内容:
# Simple configuration file for xinetd
#
# Some defaults, and include /etc/xinetd.d/
defaults
{
# Please note that you need a log_type line to be able to use
log_on_success
# and log_on_failure. The default is the following :
# log_type = SYSLOG daemon info
instances = 60
log_type = SYSLOG authpriv
log_on_success = HOST PID
log_on_failure = HOST
cps = 25 30
}
includedir /etc/xinetd.d
4. sudo vi /etc/xinetd.d/telnet并加入以下内容:
# default: on
# description: The telnet server serves telnet sessions; it uses \
# unencrypted username/password pairs for authentication.
service telnet
{
disable = no
flags = REUSE
socket_type = stream
wait = no
user = root
server = /usr/sbin/in.telnetd
log_on_failure += USERID
}
5. 重启机器或重启网络服务sudo /etc/init.d/xinetd restart
6. 使用TELNET客户端远程登录;ifconfig -a显示本机地址;
㈥ 开启TELNET服务的命令是什么
开启TELNET服务的命令如下:
sc config tlntsvr start= auto自动
sc config tlntsvr start= disabled已禁用
sc config tlntsvr start= demand手动
注意=后面有个空格
(6)打开telnet服务扩展阅读:
Telnet安全回隐患
虽然Telnet较为简单实答用也很方便,但是在格外注重安全的现代网络技术中,Telnet并不被重用。原因在于Telnet是一个明文传送协议,它将用户的所有内容,包括用户名和密码都明文在互联网上传送,具有一定的安全隐患,因此许多服务器都会选择禁用Telnet服务。
如果我们要使用Telnet的远程登录,使用前应在远端服务器上检查并设置允许Telnet服务的功能。
㈦ 如何通过命令开启Windows7 Telnet功能
操作过程如下:抄
第一步:单击开始菜单,在搜索框输入“CMD”命令
第二步:右键单击CMD选择“以管理员身份运行”命令。
// <![CDATA[ var sogou_ad_id=431932; var sogou_ad_height=250; var
sogou_ad_width=250; // ]]>
第三步:在命令行提示符窗口输入“pkgmgr /iu:”TelnetClient””命令即可激活Telnet客户端(如图1)。
通过命令激活Telnet客户端
如果你希望通过控制面板激活Telnet,那么操作过程如下:
第一步:单击开始菜单,在搜索框输入“appwiz.cpl”命令。
第二步:单击“打开或关闭Windows功能”,接着在弹出的“Windows功能”窗口,找到“Telnet服务器”和“Telnet客户端”,将其勾选,确定即可(如图2)。
㈧ 在linux中如何开启telnet服务
如果安装了telnet、telnet-server的rpm包,就跳到2。,否则安装这个包。
修改telnet服务配置文件
vi /etc/xinetd.d/telnet
service telnet{disable = yes
flags = REUSE
socket_type = streamwait = nouser = root
server = /usr/sbin/in.telnetd
log_on_failure += USERID}将disable=yes行前加#,或者改专为属disable=no
重新启动xinetd守护进程
由于telnet服务也是由xinetd守护的,所以安装完telnet-server,要启动telnet服务就必须重新启动xinetd
[root@localhost root]#service xinetd restart
关闭系统的防火墙
linux系统默认的防火墙是“high”。
(方法:[root@localhost root]# setup
选择:“firewall configuration”
选择:security level——“no firewall”)
㈨ xp操作系统如何开启telnet服务
1、双击桌来面上的控制面板的图标源。
㈩ 电脑如何打开telnet功能
进入控制面板,选择程序与功能,在右侧选启动和关闭windows功能,钩选 Telnet Client 确定 退出即可在 命令模式中使用了。