Sel*_*tin 3 networking rhel bonding tcpdump wireshark
我正在使用 RedHat (6.5) 绑定,我的活动界面是eth5
.
运行以下命令,我无法看到由我的 NIC IP 地址发起的流量:
tcpdump -i eth5 src host actual_ip_address_of_external_client
Run Code Online (Sandbox Code Playgroud)
我也只能通过以下命令(使用wireshark)查看源流量:
tcpdump -i eth5 src host actual_ip_address_of_external_client -w /tmp/<outputfile>
Run Code Online (Sandbox Code Playgroud)
可能是什么问题?
要监控host_a
和之间的双向流量,host_b
您可以使用:
# tcpdump -nli eth6 host host_a and host_b
Run Code Online (Sandbox Code Playgroud)