You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
# **telnet**
## 说明
**telnet命令** 用于登录远程主机, 对远程主机进行管理。telnet因为采用明文传送报文, 安全性不好, 很多Linux服务器都不开放telnet服务,
而改用更安全的ssh方式了。但仍然有很多别的系统可能采用了telnet方式来提供远程登录, 因此弄清楚telnet客户端的使用方式仍是很有必要的
## 选项
```markdown
用法: telnet [-4] [-6] [-8] [-E] [-L] [-S tos] [-a] [-c] [-d] [-e char] [-l user]
[-n tracefile] [-b hostalias ] [-r]
[host-name [port]]
-8: 允许使用8位字符资料, 包括输入与输出
-a: 尝试自动登入远端系统
-b< 主机别名>:使用别名指定远端主机名称
-c: 不读取用户专属目录里的.telnetrc文件
-d: 启动排错模式
-e< 脱离字符>:设置脱离字符
-E: 滤除脱离字符
-f: 此参数的效果和指定"-F"参数相同
-F: 使用Kerberos V5认证时, 加上此参数可把本地主机的认证数据上传到远端主机
-k< 域名>: 使用Kerberos认证时, 加上此参数让远端主机采用指定的领域名, 而非该主机的域名
-K: 不自动登入远端主机
-l< 用户名称>:指定要登入远端主机的用户名称
-L: 允许输出8位字符资料
-n< 记录文件>:指定文件记录相关信息
-r: 使用类似rlogin指令的用户界面
-S< 服务类型>: 设置telnet连线所需的ip TOS信息
-x: 假设主机有支持数据加密的功能, 就使用它
-X< 认证形态>:关闭指定的认证形态
```
## 实例
```bash
telnet 192.168.2.10
```