Add the NSH SFC functional test cases.
[csit.git] / nsh_sfc_tests / sfc_scripts / start_tcpdump.sh
1 #!/bin/bash
2
3 ROOTDIR=/tmp/openvpp-testing
4 PWDDIR=$(pwd)
5
6 cd ${ROOTDIR}/nsh_sfc_tests/sfc_scripts/
7 sudo rm -f temp_packet.pcap
8
9 sudo tcpdump -i $1 -c 1 -w temp_packet.pcap dst host $2 >/dev/null 2>&1 &
10
11 cd ${PWDDIR}