Secure Shellのリモートコマンド実行機能を利用し、標準出力へのサポート情報出力(report-to)をファイルにリダイレクト保存する手順を説明します。
$ ssh -t admin@192.168.0.1 'report-to stdout' > report.txt The authenticity of host '192.168.0.1 (192.168.0.1)' can't be established. RSA1 key fingerprint is 72:7c:cb:d9:30:28:c8:8e:30:7f:f2:3d:44:af:bc:bc. Are you sure you want to continue connecting (yes/no)? yes Warning: Permanently added '192.168.0.2' (RSA1) to the list of known hosts. admin@192.168.0.1's password: Connection to 192.168.0.1 closed. $
$ ls -l report.txt -rw-rw-r-- 1 user user 193025 Dec 14 12:42 report.txt $