记录 Telnet 会话

发布于 2024-12-22 06:19:16 字数 289 浏览 0 评论 0原文

我需要记录 telnet 会话。我尝试将管道安装到 T 恤上,但它在带有颜色的长 ls 上破裂了。

我刚刚找到了标志 -f (我需要其中的日志输出,因为会话没有结束),但我不确定如何应用一些控制字符(例如退格键)并删除其他人到脚本日志来获取干净的字符串。

是否还有其他具有日志记录功能的 telnet 客户端?或者其他一些解决方案(随着会话的进行连续记录,干净的普通纺织品没有 ctrl 字符以获得最终结果,以便人们回顾发生的事情,希望是一个易于安装/简单/依赖很少的解决方案)?

I need to log a telnet session. I tried piping to tee but it broke on a long ls with colors.

I just found the flag -f (I need the log output within as the the session goes not at the end), but I'm unsure how to apply some control characters (such as backspaces) and remove others to a script log to get a clean string.

Are there other telnet clients with logging? Or some other solution (logging continuously as session goes, clean plain textile without ctrl character for final results for people to look back at what happened, hopefully an easy to install/simple/few dependencies solution)?

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

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

发布评论

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

评论(1

拥抱影子 2024-12-29 06:19:16

事实证明,这是由于 tee 中的错误无法处理大量输入造成的。
我用了 a

plink -telnet address| tee file

代替,这似乎有效。

Turns out its due to a bug in tee being unable to handle large amounts of input.
I used a

plink -telnet address| tee file

instead and that seems to work.

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