Linux 7에서 tcpdump를 사용하여 RX 삭제 패킷을 모니터링하는 방법은 무엇입니까?
아니면 다른 방법이 있을까요?
그렇다면 RX 오프라인이란 무엇입니까?
eth1에 대한 ifconfig 결과:
# ifconfig -a | grep RX | grep dropped
RX errors 0 dropped 123136 overruns 0 frame 0
RX errors 0 dropped 140938047 overruns 0 frame 0
RX errors 0 dropped 0 overruns 0 frame 0
# ifconfig -a | grep RX | grep dropped
RX errors 0 dropped 123136 overruns 0 frame 0
RX errors 0 dropped 140938083 overruns 0 frame 0 <-------------- after second
RX errors 0 dropped 0 overruns 0 frame 0
답변1
실시간으로 시청하고 싶다면 다음을 사용하세요.
watch -tn 1 "ifconfig -a | grep -A 5 eth1 | grep 'RX packets' | sed 's/^.* dropped:\\([0-9]\\{1,\\}\\) .*\$/\1/g'"
여기가 맞다답변왜 이런 일이 발생합니까?