Windows 中的自动化 telnet 会话不起作用

发布于 2024-12-23 01:38:16 字数 400 浏览 0 评论 0原文

您好,我创建了一个文件 temp.txt ,其内容如下

root
root123
ls -lrt
exit

,然后我在 dos 中执行以下命令

c:\>telnet machine_ip < temp.txt

,输出是

Welcome to the Microsoft Telnet client
Escape character is 'ctrl+]'
C:\> Telnet>

如何使用此方法在 Windows 中自动执行 telnet 会话。我无法使用任何其他 exe(putty.exe) 或工具来执行此操作。我必须使用windows xp中可用的东西。如果还有其他方法,也请建议我。

Hi I have created a file temp.txt with the the content as below

root
root123
ls -lrt
exit

and then I am excuting the below command in dos

c:\>telnet machine_ip < temp.txt

Output is

Welcome to the Microsoft Telnet client
Escape character is 'ctrl+]'
C:\> Telnet>

How to automate the telnet session in windows with this method. I cant use any other exe(putty.exe) or tool to do this. I have to use the available things in windows xp. Suggest me also if any other way is there.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

回眸一笑 2024-12-30 01:38:16

我不确定您是否可以将用户名密码传递给telnet程序来自文本文件

您可以创建一个vbs脚本并使用sendkeys传递用户名密码。

创建一个 batch 脚本,启动盒子的 telnet 会话,然后从 batch 脚本调用 vbs 脚本使用

CSCRIPT //NoLogo //B "C:\Path\to\Script>script.vbs"

希望这有帮助!

I am not sure if you can pass the username and password to telnet program from a text file.

You can create a vbs script and use sendkeys to pass username and password.

Create a batch script which starts a telnet session of a box and then call the vbs script from the batch script using

CSCRIPT //NoLogo //B "C:\Path\to\Script>script.vbs"

Hope this helps!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文