hankviv / blog_issue

issue
2 stars 0 forks source link

telnet命令详解 #29

Open hankviv opened 4 years ago

hankviv commented 4 years ago

telnet命令是TELNET协议的用户接口,它支持两种模式:命令模式和会话模式,一般我们使用他来测试ip端口是否可用。

查看6379端口是否可用

$ telnet 118.12.2.1 6379
Trying 118.12.2.1...
telnet: connect to address 118.12.2.1: Connection refused

连接成功提示

$ telnet 118.12.2.1 6379
Trying 118.12.2.1...
Connected to 101.199.97.65.
Escape character is '^]'.
提示 使用 CTRL+] 退出到命令行模式。
telnet> quit
Connection closed.
使用quit命令退出。

telnet连接redis示例


$ telnet 10.21.11.11 6380
Trying 10.21.11.11...
Connected to 10.21.11.11.
Escape character is '^]'.
auth your_secert
+OK
keys *
*239
$46xxxxxx