-1
ネットワーク上の別のマシンをデバッグしたいが、そこに入るためには1つ以上のSSHトンネルを通過する必要がある。複数のSSHホップ間でトラフィックをリモートからキャプチャする方法は?
現在:
# SSH into one machine
ssh -p 22 [email protected]_ip -i ~/.ssh/00_id_rsa
# From there, SSH into the target machine
# Note that this private key lives on this machine
ssh -p 1234 [email protected]_ip -i ~/.ssh/01_id_rsa
# Capture debug traffic on the target machine
tcpdump -n -i eth0 -vvv -s 0 -XX -w tcpdump.pcap
しかし、それは、連続的に.pcap
出ていることをコピーするための痛みです。 wiresharkがインストールされているローカルマシンにpcapを直接書き込む方法はありますか?