Để thêm vào kịch bản bash tuyệt vời của Sebastian Haas. Tôi đã phải đơn giản hóa kịch bản của anh ấy vì nó thất bại trong dòng này tcpdump -l $@ | sed 's/^/[Interface:'"${BASH_REMATCH[0]:2}"'] /' &
.
Mặc dù nó không linh hoạt như tập lệnh gốc, nhưng nó có nhiều khả năng chạy trong hệ thống linux bị tước bỏ.
#!/bin/sh
interfaces="eth0 ip6tnl1" # Interfaces list separated by whitespace
#===================================================================================
#
# FILE: dump-stripped.sh
# USAGE: dump.sh [tcpdump-parameters]
# DESCRIPTION: tcpdump on any interface and add the prefix [Interace:xy] in
# front of the dump data. Simplified to work in more limited env.
# OPTIONS: similar to tcpdump
# REQUIREMENTS: tcpdump, sed, ifconfig, kill, awk, grep, posix regex matching
# AUTHOR: Sebastian Haas (Stripped down By Brian Khuu)
#
#===================================================================================
# When this exits, exit all background processes:
trap 'kill $(jobs -p) &> /dev/null && sleep 0.2 && echo ' EXIT
# Create one tcpdump output per interface and add an identifier to the beginning of each line:
for interface in $interfaces;
do tcpdump -l -i $interface -nn $@ | sed 's/^/[Interface:'"$interface"'] /' 2>/dev/null & done;
# wait .. until CTRL+C
wait;
Bạn cũng có thể quan tâm đến vé phát hành github hiện tại liên quan đến thiếu sót tính năng này trong https://github.com/the-tcpdump-group/tcpdump/issues/296 .
-e
Chỉ sử dụng in một địa chỉ MAC trên mỗi dòng. Đối với các gói đến, MAC nguồn không hữu ích trong việc xác định giao diện mà nó đến.