在shell脚本中进行Telnet

前端之家收集整理的这篇文章主要介绍了在shell脚本中进行Telnet前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何在 shell脚本中运行telnet并在远程服务器上执行命令?

由于安全原因,我不希望在我的solaris机器上安装.
我也没有安装perl net :: telnet模块.

那么使用expect和perl我怎么能这样做?

我尝试了以下的东西,但它不起作用.

#!/usr/bin/sh
telnet 172.16.69.116 <<!
user
password
ls
exit
!

当我执行它时,这就是我得到的:

> cat tel.sh
telnet 172.16.69.116 <<EOF
xxxxxx
xxxxxxxxx
ls
exit
EOF
> tel.sh
Trying 172.16.69.116...
Connected to 172.16.69.116.
Escape character is '^]'.
Connection to 172.16.69.116 closed by foreign host.
>
您的某些命令可能会被丢弃.您可以使用普通脚本构造实现更好的控制,然后通过带有echo的管道发送所需的命令.将命令列表分组以进行一个“会话”: –
{
sleep 5
echo user
sleep 3
echo password
sleep 3
echo ls
sleep 5
echo exit
} | telnet 172.16.65.209
原文链接:https://www.f2er.com/bash/383529.html

猜你在找的Bash相关文章