mirror of
https://github.com/the-tcpdump-group/tcpdump.git
synced 2024-11-24 18:43:39 +08:00
14 lines
209 B
Bash
14 lines
209 B
Bash
#!/bin/sh
|
|
|
|
uudecode isakmp4500.puu
|
|
|
|
echo -n test isakmp4...
|
|
../tcpdump -t -n -E "file esp-secrets.txt" -r isakmp4500.pcap >isakmp4.new
|
|
if diff isakmp4.new isakmp4.out
|
|
then
|
|
echo passed.
|
|
else
|
|
echo failed.
|
|
fi
|
|
|