telnetdubuntu打开telnet服务具体步骤

telnetd  时间:2021-07-14  阅读:()

如何启动ubuntu下的telnet服务

步骤如下: 在终端输入命令:sudo apt-get install d d 安装成功后,系统会显示有相应得提示 运行: sudo vi /etc/d.conf 并加入以下一行 stream tcp nowait d /usr/sbin/tcpd /usr/sbin/d 输入sudo vi /etc/d.conf并加入内容: # Simple configuration file for d # # Some defaults, and include /etc/d.d/ defaults { # Please note that you need a log_type line to be able to use log_on_ess # and log_on_failure. The default is the following : # log_type = SYSLOG daemon info instances = 60 log_type = SYSLOG authpriv log_on_ess = HOST PID log_on_failure = HOST cps = 25 30 } includedir /etc/d.d sudo vi /etc/d.d/并加入以下内容: # default: on # description: The server serves sessions; it uses # unencrypted username/password pairs for authentication. service { disable = no flags = REUSE socket_type = stream wait = no user = root server = /usr/sbin/d log_on_failure += USERID } 重启机器或重启网络服务sudo /etc/init.d/d restart 使用TELNET客户端远程登录; ifconfig -a //// 显示本机地址。

怎么设置root用户使用telnet远程登录linux

1.启用root 默认ubuntu的超级管理员用户(root)是被禁止掉了的,我首先得启用它。

输入命令:sudo passwd,然后输入root密码。

2.安装服务 输入命令:sudo apt-get install d d 3.启用服务 修改 /etc/d.conf文件,只需取消下面一行注释掉即可。

# stream tcp nowait d /usr/sbin/tcpd /usr/sbin/d 4.允许root用户登录 有两种方法: (1)输入命令:mv /etc/securetty /etc/securetty.bak (2)修改/etc/pam.d/login这个文件。

只需将下面一行注释一下即可。

#auth required lib/security/pam_securetty.so

hosts deny 怎么解决

hosts.allow与hosts.deny设置方法如下:   这两个文件均在/etc/目录下,其中优先级为先检查hosts.deny,再检查hosts.allow,后者设定可越过前者限制,例如:   1.限制所有的ssh,   除非从218.64.87.0——127上来。

  hosts.deny:   in.sshd:ALL   hosts.allow:   in.sshd:218.64.87.0/255.255.255.128   2.封掉218.64.87.0——127的   hosts.deny   in.sshd:218.64.87.0/255.255.255.128   3.限制所有人的TCP连接,除非从218.64.87.0——127访问   hosts.deny   ALL:ALL   hosts.allow   ALL:218.64.87.0/255.255.255.128   4.限制218.64.87.0——127对所有服务的访问   hosts.deny   ALL:218.64.87.0/255.255.255.128   其中冒号前面是TCP daemon的服务进程名称,通常系统   进程在/etc/d.conf中指定,比如in.ftpd,d,in.sshd   其中IP地址范围的写法有若干中,主要的三种是:   1.网络地址——子网掩码方式:   218.64.87.0/255.255.255.0   2.网络地址方式(我自己这样叫,呵呵)   218.64.(即以218.64打头的IP地址)   3.缩略子网掩码方式,既数一数二进制子网掩码前面有多少个“1”比如:   218.64.87.0/255.255.255.0《====》218.64.87.0/24

怎么设置mss的telnet的密码?

openmss 的 d 不检查密码,需要密码登入的话,安装 ssh。

默认的 root 口令为空,用 tmpuserchgpw 修改 root 口令,否则不能使用 root 身份登入。

等 ssh 工作正常后,killall d。

如何启动linux的telnet服务

1。

如果安装了、-server的rpm包,就跳到2。

,否则安装这个包。

2。

修改服务配置文件 vi /etc/d.d/ service {disable = yes flags = REUSE socket_type = streamwait = nouser = root server = /usr/sbin/d log_on_failure += USERID}将disable=yes行前加#,或者改为disable=no 3。

重新启动d守护进程 由于服务也是由d守护的,所以安装完-server,要启动服务就必须重新启动d [root@localhost root]#service d restart 4。

关闭系统的防火墙 linux系统默认的防火墙是“high”。

(方法:[root@localhost root]# setup 选择:“firewall configuration” 选择:security level——“no firewall”) 5。

如果想允许root以登入linux主机?因为 不是很安全,自然预设的情況之下就是无法允许 root 以 登入 Linux 主机!想要开放 root 以 登入 Linux 主机的话,可以这样做: 在 auth required /lib/security/pam_securetty.so 这行前加 # ,即把这行注释掉就行

ubuntu打开telnet服务具体步骤

1. sudo apt-get install d d   2. 安装成功后,系统也会有相应提示,   sudo vi /etc/d.conf并加入以下一行    stream tcp nowait d /usr/sbin/tcpd /usr/sbin/d   3. sudo vi /etc/d.conf并加入以下内容:   # Simple configuration file for d   #   # Some defaults, and include /etc/d.d/   defaults   {   # Please note that you need a log_type line to be able to use   log_on_ess   # and log_on_failure. The default is the following :   # log_type = SYSLOG daemon info   instances = 60   log_type = SYSLOG authpriv   log_on_ess = HOST PID   log_on_failure = HOST   cps = 25 30   }   includedir /etc/d.d   4. sudo vi /etc/d.d/并加入以下内容:   # default: on   # description: The server serves sessions; it uses   # unencrypted username/password pairs for authentication.   service   {   disable = no   flags = REUSE   socket_type = stream   wait = no   user = root   server = /usr/sbin/d   log_on_failure += USERID   }   5. 重启机器或重启网络服务sudo /etc/init.d/d 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/d.d/   service   {   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/d   server =/usr/sbin/d   server_args =-a none   log_on_failure +=USERID   }   service   {   disable =no   bind =140.116.142.196   only_from=140.116.0.0/16   no_ess=140.116.32.{10,26}   #上面三行设置外部较为严格的限制   instance =10   umask =022   nice =10   flags =REUSE   socket_type=stream   wait =no   user =root   #server =/usr/sbin/d   server =/usr/sbin/d   log_on_failure +=USERID   }   9.加设防火墙iptables:   如果想要针对192.168.0.0/24这个网段及61.xxx.xxx.xxx这个IP进行开放,   可以增加下面几行规则:   /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   d:192.168.0.1,192.168.0.2,192.168.0.3,192.168.0.4,192.168.0.5:allow   *原文地址* /ic.php?t=85766&sid=0bc7ab9a2c7c0418b   site : /u1/39518/showart_415036.html   *UBUNTU开启TELNET服务*   1. sudo apt-get install d d   2. 安装成功后,系统也会有相应提示(好象710才有,610就没看到),   sudo vi /etc/d.conf并加入以下一行    stream tcp nowait d /usr/sbin/tcpd /usr/sbin/d   3. sudo vi /etc/d.conf并加入以下内容:   # Simple configuration file for d   #   # Some defaults, and include /etc/d.d/   defaults   {   # Please note that you need a log_type line to be able to use   log_on_ess   # and log_on_failure. The default is the following :   # log_type = SYSLOG daemon info   instances = 60   log_type = SYSLOG authpriv   log_on_ess = HOST PID   log_on_failure = HOST   cps = 25 30   }   includedir /etc/d.d   4. sudo vi /etc/d.d/并加入以下内容:   # default: on   # description: The server serves sessions; it uses   # unencrypted username/password pairs for authentication.   service   {   disable = no   flags = REUSE   socket_type = stream   wait = no   user = root   server = /usr/sbin/d   log_on_failure += USERID   }   5. 重启机器或重启网络服务sudo /etc/init.d/d restart   6. 使用TELNET客户端远程登录;ifconfig -a显示本机地址;

Friendhosting,美国迈阿密机房新上线,全场45折特价优惠,100Mbps带宽不限流量,美国/荷兰/波兰/乌兰克/瑞士等可选,7.18欧元/半年

近日Friendhosting发布了最新的消息,新上线了美国迈阿密的云产品,之前的夏季优惠活动还在进行中,全场一次性45折优惠,最高可购买半年,超过半年优惠力度就不高了,Friendhosting商家的优势就是100Mbps带宽不限流量,有需要的朋友可以尝试一下。Friendhosting怎么样?Friendhosting服务器好不好?Friendhosting服务器值不值得购买?Friendho...

RackNerd($199/月),5IP,1x256G SSD+2x3THDD

我们先普及一下常识吧,每年9月的第一个星期一是美国劳工节。于是,有一些服务商会基于这些节日推出吸引用户的促销活动,比如RackNerd有推出四款洛杉矶和犹他州独立服务器,1G带宽、5个独立IP地址,可以配置Windows和Linux系统,如果有需要独立服务器的可以看看。第一、劳工节促销套餐这里有提供2个套餐。两个方案是选择犹他州的,有2个方案是可以选择洛杉矶机房的。CPU内存SSD硬盘配置流量价格...

无忧云:洛阳/大连BGP云服务器38.4元/月,雅安物理机服务器315元/月起,香港荃湾CN2限时5折优惠

无忧云怎么样?无忧云是一家成立于2017年的老牌商家旗下的服务器销售品牌,现由深圳市云上无忧网络科技有限公司运营,是正规持证IDC/ISP/IRCS商家,主要销售国内、中国香港、国外服务器产品,线路有腾讯云国外线路、自营香港CN2线路等,都是中国大陆直连线路,非常适合免备案建站业务需求和各种负载较高的项目,同时国内服务器也有多个BGP以及高防节点,目前商家开启了夏日清凉补贴活动,商家的机器还是非常...

telnetd为你推荐
科来网络分析系统科来网络分析系统 6.0 专家版 (演示)的功能微信收款语音播报怎么设置怎么设置农商银行的收钱语音播报?开票系统国税承认的开票系统有哪些weakhashmapWeakHashMap和HashMap的区别云图片简单易学画的云彩图片备忘录模式华为荣耀5X怎么在手机上新建一个备忘录索引超出了数组界限索引超出了数组界限是怎么回事啊?民生电商陆金所、民生电商哪个更适合投资?ruby语言Ruby是一种什么样的语言,主要用来做什么,现在有一家公司让我从java转ruby,我很犹豫?相似图片搜索怎么找手机上的一张相似图片?
香港虚拟主机 apache虚拟主机 域名网 域名抢注工具 cn域名个人注册 大硬盘 cpanel主机 国外服务器网站 优key 56折 创宇云 长沙服务器 好看qq空间 数字域名 169邮箱 腾讯实名认证中心 绍兴电信 厦门电信 万网空间管理 免费个人主页 更多