gpt4 book ai didi

debugging - 如何记录 ssh 调试信息?

转载 作者:行者123 更新时间:2023-12-03 08:40:01 24 4
gpt4 key购买 nike

我需要将 ssh 调试信息的输出写入文件。这个

ssh -v root@172.16.248.xx > result.txt
ssh -v root@172.16.248.xx 2>&1 > result.txt

不起作用,文件 result.txt 为空,但在屏幕上我看到一堆调试行,例如:
OpenSSH_5.3p1 Debian-3ubuntu7, OpenSSL 0.9.8k 25 Mar 2009
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Applying options for *
debug1: Connecting to 172.16.248.xx [172.16.248.xx] port 22.
debug1: Connection established.
debug1: permanently_set_uid: 0/0
etc

有没有办法将这些行重定向到文件?

最佳答案

您必须在命令行上更改重定向的顺序:

ssh -v root@172.16.248.xx >result.txt 2>&1

要不就:
ssh -v root@172.16.248.xx 2>result.txt

关于debugging - 如何记录 ssh 调试信息?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7533661/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com