diff options
Diffstat (limited to 'tests/nsh_sfc/sfc_scripts/start_tcpdump.sh')
-rwxr-xr-x | tests/nsh_sfc/sfc_scripts/start_tcpdump.sh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/nsh_sfc/sfc_scripts/start_tcpdump.sh b/tests/nsh_sfc/sfc_scripts/start_tcpdump.sh new file mode 100755 index 0000000000..46f8217e26 --- /dev/null +++ b/tests/nsh_sfc/sfc_scripts/start_tcpdump.sh @@ -0,0 +1,16 @@ +#!/bin/bash + +ROOTDIR=/tmp/openvpp-testing +PWDDIR=$(pwd) + +cd ${ROOTDIR}/nsh_sfc_tests/sfc_scripts/ +sudo rm -f temp_packet.pcap + +sudo /usr/sbin/tcpdump -i $1 -c 1 -w temp_packet.pcap dst host $2 & + +if [ ! $? -eq 0 ]; then + echo "Start the tcpdump failed!!!" + exit 1 +fi + +cd ${PWDDIR} |