diff --git a/Makefile b/Makefile index 636f945..e843da6 100644 --- a/Makefile +++ b/Makefile @@ -1,22 +1,125 @@ # Test tshark's dissectors on small test files -TEST_CASES = $(wildcard tests/*/*.pdml) +.DEFAULT_GOAL := help +.SECONDEXPANSION: + +# Set home dir to empty dir +ifneq ("$(wildcard /tmp)","") + HOME=/tmp + else + HOME?=$(mktemp -d) +endif + +# List all available test directories +TEST_CASE_DIRS=$(wildcard tests/*/*) + +# Convert directories to test case names +TEST_CASES=$(foreach test,$(TEST_CASE_DIRS), $(test)/$(notdir $(test))) + +# Convert directories to test case names with output dir +TEST_CASES_OUTPUT=$(foreach test,$(TEST_CASE_DIRS), $(test)/output/$(notdir $(test))) + +# Editor backup files +EDITOR_BACKUP_FILES=$(wildcard *~) $(wildcard */*~) $(wildcard */*/*~) $(wildcard */*/*/*~) $(wildcard */*/*/*/*~) + +# List of versions for which we check and store different outputs +# When output is verified, current wireshark version's output is compared to same version's stored output or to the latest previous version +# - list should be ordered from the oldest to the newest version +SUPPORTED_VERSIONS?=2.0 2.2 2.3 2.4 2.5 +VERSION?= +SELECTED_VERSIONS=$(if $(VERSION),$(VERSION),$(SUPPORTED_VERSIONS)) TSHARK_EXECUTABLE?=tshark +TSHARK_VERSION=$(shell $(TSHARK_EXECUTABLE) --version | head -1 | cut -d' ' -f 3 | cut -d'.' -f1,2) + +VERBOSE?=no +TEST_FAIL_ON_ERROR?=yes + +%.pdml1.current: TESTDIR = $(patsubst %/,%,$(dir $(patsubst %/,%,$(dir $*)))) +%.pdml1.current: TESTNAME = $(notdir $*) +%.pdml1.current: $$(dir $$(subst /output,,$$@))/filter.xsl $$(wildcard $$(dir $$(subst /output,,$$@))/*.pcap*.gz) + @./scripts/sample_test.sh "$(TSHARK_EXECUTABLE)" "$(TESTDIR)/$(TESTNAME)" pdml1 $(VERBOSE) $(TEST_FAIL_ON_ERROR) $(SELECTED_VERSIONS) + +%.pdml2.current: TESTDIR = $(patsubst %/,%,$(dir $(patsubst %/,%,$(dir $*)))) +%.pdml2.current: TESTNAME = $(notdir $*) +%.pdml2.current: $$(dir $$(subst /output,,$$@))/filter.xsl $$(wildcard $$(dir $$(subst /output,,$$@))/*.pcap*.gz) + @./scripts/sample_test.sh "$(TSHARK_EXECUTABLE)" "$(TESTDIR)/$(TESTNAME)" pdml2 $(VERBOSE) $(TEST_FAIL_ON_ERROR) $(SELECTED_VERSIONS) + +%.text.current: TESTDIR = $(patsubst %/,%,$(dir $(patsubst %/,%,$(dir $*)))) +%.text.current: TESTNAME = $(notdir $*) +%.text.current: $$(dir $$(subst /output,,$$@))/filter.xsl $$(wildcard $$(dir $$(subst /output,,$$@))/*.pcap*.gz) + @./scripts/sample_test.sh "$(TSHARK_EXECUTABLE)" "$(TESTDIR)/$(TESTNAME)" text $(VERBOSE) $(TEST_FAIL_ON_ERROR) $(SELECTED_VERSIONS) + +%.pdml1: TESTDIR = $(patsubst %/,%,$(dir $(patsubst %/,%,$(dir $*)))) +%.pdml1: $$(dir $$(subst /output,,$$@))/filter.xsl $$(wildcard $$(dir $$(subst /output,,$$@))/*.pcap*.gz) + @./scripts/sample_make_output.sh "$(TSHARK_EXECUTABLE)" "$(TESTDIR)" pdml1 $(VERBOSE) + +%.pdml2: TESTDIR = $(patsubst %/,%,$(dir $(patsubst %/,%,$(dir $*)))) +%.pdml2: $$(dir $$(subst /output,,$$@))/filter.xsl $$(wildcard $$(dir $$(subst /output,,$$@))/*.pcap*.gz) + @./scripts/sample_make_output.sh "$(TSHARK_EXECUTABLE)" "$(TESTDIR)" pdml2 $(VERBOSE) -check_output = @(echo -n "Processing $(notdir $1)" && cd $(dir $1) && \ - $(TSHARK_EXECUTABLE) -T pdml -r $(subst .pdml,,$(notdir $1)) > $(notdir $2) 2>&1 && \ - xsltproc filter.xsl $(notdir $2) | diff $(notdir $1) - ) && echo " [OK]" +%.text: TESTDIR = $(patsubst %/,%,$(dir $(patsubst %/,%,$(dir $*)))) +%.text: $$(dir $$(subst /output,,$$@))/filter.xsl $$(wildcard $$(dir $$(subst /output,,$$@))/*.pcap*.gz) + @./scripts/sample_make_output.sh "$(TSHARK_EXECUTABLE)" "$(TESTDIR)" text $(VERBOSE) -all: test +tests_pdml1: $(foreach test, $(TEST_CASE_DIRS), $(test)/output/$(notdir $(test)).pdml1.current) -%.pdml.current: %.pdml % - $(call check_output, $<, $@) +tests_pdml2: $(foreach test, $(TEST_CASE_DIRS), $(test)/output/$(notdir $(test)).pdml2.current) -test: $(TEST_CASES:.pdml=.pdml.current) +tests_text: $(foreach test, $(TEST_CASE_DIRS), $(test)/output/$(notdir $(test)).text.current) + +%/output: %/output/$$(notdir $$*).pdml1.current %/output/$$(notdir $$*).pdml2.current %/output/$$(notdir $$*).text.current + @ + +tests: $(foreach test, $(TEST_CASE_DIRS), $(test)/output) + +make_outputs_pdml1: $(foreach test_case, $(TEST_CASE_DIRS), $(test_case)/output/$(notdir $(test_case))_$(TSHARK_VERSION).pdml1) + @ + +make_outputs_pdml2: $(foreach test_case, $(TEST_CASE_DIRS), $(test_case)/output/$(notdir $(test_case))_$(TSHARK_VERSION).pdml2) + @ + +make_outputs_text: $(foreach test_case, $(TEST_CASE_DIRS), $(test_case)/output/$(notdir $(test_case))_$(TSHARK_VERSION).text) + @ + +outputs: make_outputs_pdml1 make_outputs_pdml2 make_outputs_text + +verify_repository: + @$(foreach test_case, $(TEST_CASE_DIRS), ./scripts/sample_verify.sh "$(test_case)" $(VERBOSE) $(SELECTED_VERSIONS);) clean: - @rm -f $(TEST_CASES:.pdml=.pdml.current) + @rm -f $(TEST_CASES_OUTPUT:=.pdml1.current) + @rm -f $(TEST_CASES_OUTPUT:=.pdml1.current.tmp) + @rm -f $(TEST_CASES_OUTPUT:=.pdml1.current.tmp2) + @rm -f $(TEST_CASES_OUTPUT:=.pdml2.current) + @rm -f $(TEST_CASES_OUTPUT:=.pdml2.current.tmp) + @rm -f $(TEST_CASES_OUTPUT:=.pdml2.current.tmp2) + @rm -f $(TEST_CASES_OUTPUT:=.text.current) + @rm -f $(TEST_CASES_OUTPUT:=.text.current.tmp) + @rm -f $(TEST_CASES_OUTPUT:=.text.current.tmp2) + +clean-backups: $(EDITOR_BACKUP_FILES) + @rm -f $(EDITOR_BACKUP_FILES) + +maintainer-clean: clean clean-backups + +help: + @echo "Usage:" + @echo "make outputs create missing output files (.test, .pdml1, .pdml2)" + @echo "make verify_repository verifies whether each test is equipped with required files" + @echo "make tests test each sample output with current wireshark" + @echo "make all do verify_repository outputs tests in row" + @echo "" + @echo "you can use variables:" + @echo "TSHARK_EXECUTABLE=/path/to/tshark" + @echo "VERSION=2.0" + @echo "VERBOSE=yes" + @echo "TEST_FAIL_ON_ERROR=no" + @echo "e.g. make outputs TSHARK_EXECUTABLE=/path/to/tshark creates outputs with specified tshark and with its version" + @echo "e.g. make tests VERSION=2.0 test samples with current tshark, but compares its outputs with specified version" + +all: verify_repository outputs tests + +.PHONY: all maintainer-clean clean outputs verify_repository tests -.PHONY: clean diff --git a/README.md b/README.md index 8fad072..15185b9 100644 --- a/README.md +++ b/README.md @@ -5,21 +5,52 @@ and a collection of capture files. Running tests ------------- -Simply invoke `make` or `make -j4` for more parallelism. +Simply invoke `make tests` or `make tests -j4` for more parallelism. Adding a new test ----------------- -Create a new subdirectory under `tests/` with the following files: +Create a new subdirectory under `tests//`. is name of protocol +subjected to test (e.g. 'dns' or 'rtp.ed137a'). Use same name as display filter in wireshark. +Directory populate with the following files: - - FOO.pdml - the expected processed output (e.g. `dns.pcapng.pdml`). - - FOO - the source capture file (e.g. `dns.pcapng`). + - FOO.pcap.gz or FOO.pcapng.gz - the source file (noncompressed files shall not be used, e.g. 'dns-1.pcapng.gz') + - FOO.description - description of purpose the file is included (e.g. basic DNS query, RTP header with ED-137A header extension, packet missing in sequence) + - FOO.requirements - requirements, how tshark/wireshark should process the file (e.g. packet should be decoded by specification of ED-137B, PTT and SQL bits should be shown in packet info column). Requirements can describe non dissector related staff too (e.g. RTP Stream Analysis window should show warning about bad packet sequence, warning should be shown in yellow color). + - FOO.args - optional file, contains options for tshark to process file as expected (e.g. 'decode as' parameters) + - FOO_.pdml1 - the expected processed output from of tshark in PDML format for first pass (e.g. `dns-1_2.0.pcapng.pdml1`). Only first two levels of version number are used. + - FOO_.pdml2 - the expected processed output from of tshark in PDML format for second pass (e.g. `dns-1_2.0.pcapng.pdml1`). Only first two levels of version number are used. + - FOO_.text - the expected processed output from of tshark in TEXT format (e.g. `dns-1_2.0.pcapng.text`). Only first two levels of version number are used. + - FOO.no_pdml - optional file expressing that PDML output should not be checked (requirements probably describe GUI related requiremens only) + - FOO.no_text - optional file expressing that TEXT output should not be checked (requirements probably describe GUI related requiremens only) - filter.xsl - the post-processor. +Run make outputs to generate .pdml and .text and make verify_repository to check all required files before commit. + When proposing a new test, please include the source of the packet capture file in the commit message. The source could be a link to https://bugs.wireshark.org/ or https://wiki.wireshark.org/SampleCaptures for example. Try to keep capture files small and specific to a small number of protocols. +Options and variables to run framework +-------------------------------------- + +SUPPORTED_VERSIONS - list of versions checked during make or make outputs, when not specified, default in Makefile is used +VERSION - version used for make or make outputs, when not specified, tshark version is used +TSHARK_EXECUTABLE - path to tshark, when not specified, tshark in PATH is used +VERBOSE=yes - produce more verbose messages during processing +TEST_FAIL_ON_ERROR=no - do not stop on first error during tests + +make tests - run tests, compare output of latest stored .pdml and .text +make tests VERSION=2.0 - same as above, compare output with version 2.0 or previous +make test_pdml or make test_text - run tests for PDML or TEXT output only +make verify_repository - check whether each sample contains required files for at least one of checked versions +make verify_repository VERSION=2.0 - same above, check is made for specified version only +make outputs - generate .pdml and .text output for samples where files are missing, version is derived from version of used tshark +make outputs TSHARK_EXECUTABLE=path/tshark - same as above, but you can determine used tshark +make clean - removes temporary files after make test +make maintainer-clean - removes temporary files including editor backup files +make all - do verify_repository outputs tests in row + Architecture ------------ The initial desired features were: @@ -28,10 +59,11 @@ The initial desired features were: - Take a packet capture file and produce the expected "output". - Have a filter that strips layers or just keeps a single layer. - Allow preferences to be applied (SSL keys, port numbers, ...). - - Maybe check both single and second pass mode (tshark -2) to catch issues + - Check both single and second pass mode (tshark -2) to catch issues related to maintained state within a dissector. License ------- This project including the tools and capture files are provided under the terms of version 2 of the GPL or any later version. + diff --git a/doc/requirements.txt b/doc/requirements.txt new file mode 100644 index 0000000..903c693 --- /dev/null +++ b/doc/requirements.txt @@ -0,0 +1,51 @@ +1) Won't be good idea to ask for e.g. .description.txt and +.specification.txt for each sample? +=> done + +2) Won't be good idea to allow skip a sample from automatic testing +(because it is for GUI demonstration)? +=> .no_pdml => done +=> .no_txt => done + +3) There should be easy way how to describe which wireshark version +processed stored PDML file. +Probably different outputs should be stored for main branches (2.0, 2.2, +...). It is obvious that each version of wireshark will change (improve) +some outputs. Therefore older release will not be able to process it +correctly (PDML diff will fail). +I think that without output version you can't run regression tests +automatically. +=> _.pdml should be created => done +=> _.text should be created => done +=> output is validated to version of used tshark or older version => done + +4) There should be easy way how to run custom wireshark version without +modifying Makefile. I have multiple versions for testing. I think +environment variable solve it. +=> done + +5) There should be easy way how to describe which filter should be used +for preprocessing PDML. Now only filter.xsl is used. +=> filter.xsl in directory with sample is used => done + +6) Rules must be written. + +7) There should be a procedure which checks whether repository/new sample +contains expected information. Something like git review procedure for +wireshark source/gerrit. +=> make verify_repository + +8) Run -T text and -T pdml +=> done + +9) It should be possible to set parameters for tshark run (e.g. decode as). +=> optional file .args => done + +--------------------------- + +There are two levels of directory structure in tests/. It looks like /. First level is name of protocol which is tested. Second level is name/description of sample. +Protocol name shall be name of procotol which is going to be tested. The easiest way is to name is same way as display filter in wireshark names it - including upper layer protocols (e.g. rtp or rtp.ed137a). +Name of test depends on author, but should somehow describe the tested subject. When expected description (directory) is already there, add number to it (e.g. dns, dns-1, dns-2). + +Sample file should be stored as .pcap.gz or .pcapng.gz. + diff --git a/scripts/sample_make_output.sh b/scripts/sample_make_output.sh new file mode 100755 index 0000000..47976ea --- /dev/null +++ b/scripts/sample_make_output.sh @@ -0,0 +1,102 @@ +#!/bin/bash + +TSHARK_EXECUTABLE="$1" +SAMPLE_DIR="$2" +TYPE="$3" +VERBOSE="$4" +REQ_VERSION="$5" + +OUTPUT="" + +echo_history () { + echo -ne "${OUTPUT} $*" + OUTPUT="" +} + +echo_verbose () { + if [ "${VERBOSE}" == "yes" ]; then + echo -ne "$*" + else + OUTPUT="${OUTPUT} $*" + fi +} + +${TSHARK_EXECUTABLE} --version > /dev/null 2> /dev/null +if [ "$?" != "0" ]; then + echo_history "Executable for tshark doesn't exists (${TSHARK_EXECUTABLE})\n" + exit 0 +fi + +echo_verbose "Creating output '${TYPE}' for ${SAMPLE_DIR}:\n" +FILE=`basename "${SAMPLE_DIR}"` + +TSHARK_VERSION=`${TSHARK_EXECUTABLE} --version | head -1 | cut -d' ' -f 3 | cut -d'.' -f1,2` +if [ -n "${REQ_VERSION}" ]; then + if [ "${REQ_VERSION}" != "${TSHARK_VERSION}" ]; then + echo_history " FAILED, required tshark version do not match running version\n" + exit 1 + fi +fi + +cd "${SAMPLE_DIR}" + +if [ -f "${FILE}.pcap.gz" ]; then + FILE_PCAP="${FILE}.pcap.gz" +elif [ -f "${FILE}.pcapng.gz" ]; then + FILE_PCAP="${FILE}.pcapng.gz" +else + echo_history " No sample for ${SAMPLE_DIR}\n" + exit 0 +fi + +TSHARK_ARGS= +if [ -r "${FILE}.args" ]; then + TSHARK_ARGS=`cat "${FILE}.args"` +fi + +OUTPUT_FILE="output/${FILE}_${TSHARK_VERSION}.${TYPE}" + +XTYPE=${TYPE} +XARGS= +if [ "${TYPE}" == "pdml1" ]; then + XTYPE=pdml + XARGS= +elif [ "${TYPE}" == "pdml2" ]; then + XTYPE=pdml + XARGS=-2 +fi + +"${TSHARK_EXECUTABLE}" $TSHARK_ARGS -T ${XTYPE} ${XARGS} -r "${FILE_PCAP}" > "${OUTPUT_FILE}".tmp +if [ "$?" -eq "0" ]; then + if [ "${XTYPE}" == "pdml" ]; then + mv -f "${OUTPUT_FILE}.tmp" "${OUTPUT_FILE}.tmp2" + xsltproc filter.xsl "${OUTPUT_FILE}.tmp2" > "${OUTPUT_FILE}.tmp" + if [ "$?" -ne "0" ]; then + rm -f "${OUTPUT_FILE}.tmp" + rm -f "${OUTPUT_FILE}.tmp2" + echo_history " FAILED, file ${SAMPLE_DIR}/${OUTPUT_FILE}\n" + exit 1 + fi + rm -f "${OUTPUT_FILE}.tmp2" + fi + mv "${OUTPUT_FILE}.tmp" "${OUTPUT_FILE}" + echo_history " OK, file ${SAMPLE_DIR}/${OUTPUT_FILE}\n" + exit 0 +else + rm -f "${OUTPUT_FILE}.tmp" + echo_history " FAILED, file ${SAMPLE_DIR}/${OUTPUT_FILE}\n" + exit 1 +fi + +#* +#* Editor modelines - http://www.wireshark.org/tools/modelines.html +#* +#* Local variables: +#* c-basic-offset: 4 +#* tab-width: 4 +#* indent-tabs-mode: nil +#* End: +#* +#* vi: set shiftwidth=4 tabstop=4 expandtab: +#* :indentSize=4:tabSize=4:noTabs=true: +#* diff --git a/scripts/sample_test.sh b/scripts/sample_test.sh new file mode 100755 index 0000000..0a87497 --- /dev/null +++ b/scripts/sample_test.sh @@ -0,0 +1,135 @@ +#!/bin/bash + +TSHARK_EXECUTABLE="$1" +FILE="$2" +TYPE="$3" +VERBOSE="$4" +TEST_FAIL_ON_ERROR="$5" +shift +shift +shift +shift +shift + +exit_fail () { + if [ "${TEST_FAIL_ON_ERROR}" == "yes" ]; then + exit $1 + else + exit 0 + fi +} + +${TSHARK_EXECUTABLE} --version > /dev/null 2> /dev/null +if [ "$?" != "0" ]; then + echo "Executable for tshark doesn't exists (${TSHARK_EXECUTABLE})" + exit 0 +fi + +DIR=`dirname "${FILE}"` +FILENAME=`basename "${FILE}"` +OUTFILE=${DIR}/output/${FILENAME} + +echo -n "Processing ${FILE}.${TYPE}: " + +TSHARK_VERSION=`${TSHARK_EXECUTABLE} --version | head -1 | cut -d' ' -f 3 | cut -d'.' -f1,2` +if [ -n "${REQ_VERSION}" ]; then + if [ "${REQ_VERSION}" != "${TSHARK_VERSION}" ]; then + echo " FAILED, required tshark version do not match running version" + exit 1 + fi +fi + +if [ -f "${FILE}.pcap.gz" ]; then + FILE_PCAP="${FILE}.pcap.gz" +elif [ -f "${FILE}.pcapng.gz" ]; then + FILE_PCAP="${FILE}.pcapng.gz" +else + echo " No sample for ${FILE}" + exit_fail 0 +fi + +TSHARK_ARGS= +if [ -r "${FILE}.args" ]; then + TSHARK_ARGS=`cat "${FILE}.args"` +fi + +OUTPUT_FILE="${OUTFILE}.${TYPE}.current" + +LAST_VER= +for x in $@; do + if [ -f "${OUTFILE}_${x}.${TYPE}" ]; then + LAST_VER=$x + fi + if [ "${x}" == "${TSHARK_VERSION}" ]; then + break + fi +done + +BASE_FILE="${OUTFILE}_${LAST_VER}.${TYPE}" + +if [ ! -f "${BASE_FILE}" ]; then + echo " No stored output up to version ${TSHARK_VERSION}." +fi + +XTYPE=${TYPE} +XARGS= +if [ "${TYPE}" == "pdml1" ]; then + XTYPE=pdml + XARGS= +elif [ "${TYPE}" == "pdml2" ]; then + XTYPE=pdml + XARGS=-2 +fi +"${TSHARK_EXECUTABLE}" $TSHARK_ARGS -T ${XTYPE} ${XARGS} -r "${FILE_PCAP}" 1> "${OUTPUT_FILE}".tmp2 2>&1 +if [ "$?" -eq "0" ]; then + if [ "${XTYPE}" == "pdml" ]; then + xsltproc "${DIR}"/filter.xsl "${OUTPUT_FILE}.tmp2" > "${OUTPUT_FILE}.tmp" + if [ "$?" -ne "0" ]; then + echo " FAILED (${LAST_VER}/${TSHARK_VERSION})" + exit_fail 1 + fi + + if [ "${VERBOSE}" == "yes" ]; then + diff "${BASE_FILE}" "${OUTPUT_FILE}.tmp" + else + diff -q "${BASE_FILE}" "${OUTPUT_FILE}.tmp" + fi + if [ "$?" -ne "0" ]; then + echo " FAILED (${LAST_VER}/${TSHARK_VERSION})" + exit_fail 1 + fi + else + mv "${OUTPUT_FILE}.tmp2" "${OUTPUT_FILE}.tmp" + fi + + if [ "${VERBOSE}" == "yes" ]; then + diff "${BASE_FILE}" "${OUTPUT_FILE}.tmp" + else + diff -q "${BASE_FILE}" "${OUTPUT_FILE}.tmp" + fi + if [ "$?" -ne "0" ]; then + echo " FAILED (${LAST_VER}/${TSHARK_VERSION})" + exit_fail 1 + fi + + rm -f "${OUTPUT_FILE}.tmp2" + mv "${OUTPUT_FILE}.tmp" "${OUTPUT_FILE}" + echo " OK (${LAST_VER}/${TSHARK_VERSION})" + exit_fail 0 +else + echo " FAILED (${LAST_VER}/${TSHARK_VERSION})" + exit_fail 1 +fi + +#* +#* Editor modelines - http://www.wireshark.org/tools/modelines.html +#* +#* Local variables: +#* c-basic-offset: 4 +#* tab-width: 4 +#* indent-tabs-mode: nil +#* End: +#* +#* vi: set shiftwidth=4 tabstop=4 expandtab: +#* :indentSize=4:tabSize=4:noTabs=true: +#* diff --git a/scripts/sample_verify.sh b/scripts/sample_verify.sh new file mode 100755 index 0000000..82acf97 --- /dev/null +++ b/scripts/sample_verify.sh @@ -0,0 +1,117 @@ +#!/bin/bash + +SAMPLE_DIR="$1" +VERBOSE="$2" +shift +shift + +CHECKED_VERSIONS=$@ + +OUTPUT="" + +echo_history () { + echo -ne "${OUTPUT} $*" + OUTPUT="" +} + +echo_verbose () { + if [ "${VERBOSE}" == "yes" ]; then + echo -ne "$*" + else + OUTPUT="${OUTPUT} $*" + fi +} + +if [ $# -gt 1 ]; then + ONE_VERSION=0 + else + ONE_VERSION=1 +fi + +CHECK_ERROR=0 + +echo_verbose "Checking ${SAMPLE_DIR}: " +FILE=`basename "${SAMPLE_DIR}"` +if [ ! -f ""${SAMPLE_DIR}"/"${FILE}".pcap.gz" -a ! -f ""${SAMPLE_DIR}"/"${FILE}".pcapng.gz" ]; then + echo_history "\n PCAP sample is missing in ${SAMPLE_DIR} (${SAMPLE_DIR}/${FILE}.pcap.gz or ${SAMPLE_DIR}/${FILE}.pcapng.gz)\n" + CHECK_ERROR=1 +fi +if [ ! -f ""${SAMPLE_DIR}"/"${FILE}".description.txt" ]; then + echo_history "\n PCAP description is missing in ${SAMPLE_DIR} (${SAMPLE_DIR}/${FILE}.description.txt)\n" + CHECK_ERROR=1 +fi +if [ ! -f ""${SAMPLE_DIR}"/"${FILE}".requirements.txt" ]; then + echo_history "\n PCAP requirements are missing in ${SAMPLE_DIR} (${SAMPLE_DIR}/${FILE}.requirements.txt)\n" + CHECK_ERROR=1 +fi + +# Check for TXT +FOUND=0 +for v in ${CHECKED_VERSIONS}; do + if [ -f ""${SAMPLE_DIR}"/output/${FILE}_${v}.text" ]; then + FOUND=1 + fi +done +if [ ! -f ""${SAMPLE_DIR}"/output/"${FILE}".no_txt" -a $FOUND == 0 ]; then + if [ "${ONE_VERSION}" == "1" ]; then + echo_history "\n TXT output ${SAMPLE_DIR}/output/${FILE}_${CHECKED_VERSIONS}.text is missing in ${SAMPLE_DIR}/output\n" + CHECK_ERROR=1 + else + echo_history "\n TXT output ${SAMPLE_DIR}/output/${FILE}_.text for any version of ${CHECKED_VERSIONS} is missing in ${SAMPLE_DIR}/output\n" + CHECK_ERROR=1 + fi +fi + +# Check for PDML1 +FOUND=0 +for v in ${CHECKED_VERSIONS}; do + if [ -f ""${SAMPLE_DIR}"/output/${FILE}_${v}.pdml1" ]; then + FOUND=1 + fi +done +if [ ! -f ""${SAMPLE_DIR}"/output/"${FILE}".no_pdml1" -a $FOUND == 0 ]; then + if [ "${ONE_VERSION}" == "1" ]; then + echo_history "\n PDML1 output ${SAMPLE_DIR}/output/${FILE}_${CHECKED_VERSIONS}.pdml1 is missing in ${SAMPLE_DIR}/output\n" + CHECK_ERROR=1 + else + echo_history "\n PDML1 output ${SAMPLE_DIR}/output/${FILE}_.pdml1 for any version of ${CHECKED_VERSIONS} is missing in ${SAMPLE_DIR}/output\n" + CHECK_ERROR=1 + fi +fi + +# Check for PDML2 +FOUND=0 +for v in ${CHECKED_VERSIONS}; do + if [ -f ""${SAMPLE_DIR}"/output/${FILE}_${v}.pdml2" ]; then + FOUND=1 + fi +done +if [ ! -f ""${SAMPLE_DIR}"/output/"${FILE}".no_pdml2" -a $FOUND == 0 ]; then + if [ "${ONE_VERSION}" == "1" ]; then + echo_history "\n PDML2 output ${SAMPLE_DIR}/output/${FILE}_${CHECKED_VERSIONS}.pdml2 is missing in ${SAMPLE_DIR}/output\n" + CHECK_ERROR=1 + else + echo_history "\n PDML2 output ${SAMPLE_DIR}/output/${FILE}_.pdml2 for any version of ${CHECKED_VERSIONS} is missing in ${SAMPLE_DIR}/output\n" + CHECK_ERROR=1 + fi +fi + +if [ "${CHECK_ERROR}" == "1" ]; then + echo_history " Check failed\n" + else + echo_verbose " Check OK\n" +fi +exit ${CHECK_ERROR} + +#* +#* Editor modelines - http://www.wireshark.org/tools/modelines.html +#* +#* Local variables: +#* c-basic-offset: 4 +#* tab-width: 4 +#* indent-tabs-mode: nil +#* End: +#* +#* vi: set shiftwidth=4 tabstop=4 expandtab: +#* :indentSize=4:tabSize=4:noTabs=true: +#* diff --git a/tests/dns-1/dns.pcapng b/tests/dns-1/dns.pcapng deleted file mode 100644 index 374ddf9..0000000 Binary files a/tests/dns-1/dns.pcapng and /dev/null differ diff --git a/tests/dns-1/qr.pcapng b/tests/dns-1/qr.pcapng deleted file mode 100644 index 3db640f..0000000 Binary files a/tests/dns-1/qr.pcapng and /dev/null differ diff --git a/tests/dns/dns-1/dns-1.description.txt b/tests/dns/dns-1/dns-1.description.txt new file mode 100644 index 0000000..d6b7c5d --- /dev/null +++ b/tests/dns/dns-1/dns-1.description.txt @@ -0,0 +1 @@ +Simple standard DNS query diff --git a/tests/dns/dns-1/dns-1.pcapng.gz b/tests/dns/dns-1/dns-1.pcapng.gz new file mode 100644 index 0000000..0cc57cd Binary files /dev/null and b/tests/dns/dns-1/dns-1.pcapng.gz differ diff --git a/tests/dns/dns-1/dns-1.requirements.txt b/tests/dns/dns-1/dns-1.requirements.txt new file mode 100644 index 0000000..5835847 --- /dev/null +++ b/tests/dns/dns-1/dns-1.requirements.txt @@ -0,0 +1 @@ +Decode as simple DNS request diff --git a/tests/dns-1/filter.xsl b/tests/dns/dns-1/filter.xsl similarity index 78% rename from tests/dns-1/filter.xsl rename to tests/dns/dns-1/filter.xsl index 42efc86..85bb13f 100644 --- a/tests/dns-1/filter.xsl +++ b/tests/dns/dns-1/filter.xsl @@ -1,5 +1,5 @@ - + diff --git a/tests/dns/dns-1/output/dns-1_2.0.pdml1 b/tests/dns/dns-1/output/dns-1_2.0.pdml1 new file mode 100644 index 0000000..9cb6b1e --- /dev/null +++ b/tests/dns/dns-1/output/dns-1_2.0.pdml1 @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/dns/dns-1/output/dns-1_2.0.pdml2 b/tests/dns/dns-1/output/dns-1_2.0.pdml2 new file mode 100644 index 0000000..9cb6b1e --- /dev/null +++ b/tests/dns/dns-1/output/dns-1_2.0.pdml2 @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/dns/dns-1/output/dns-1_2.0.text b/tests/dns/dns-1/output/dns-1_2.0.text new file mode 100644 index 0000000..1201a48 --- /dev/null +++ b/tests/dns/dns-1/output/dns-1_2.0.text @@ -0,0 +1 @@ + 1 0.000000 10.32.4.27 -> 10.32.100.15 DNS 182 Standard query 0x4301 A in.m.yahoo.com diff --git a/tests/dns-1/dns.pcapng.pdml b/tests/dns/dns-1/output/dns-1_2.2.pdml1 similarity index 100% rename from tests/dns-1/dns.pcapng.pdml rename to tests/dns/dns-1/output/dns-1_2.2.pdml1 diff --git a/tests/dns/dns-1/output/dns-1_2.2.pdml2 b/tests/dns/dns-1/output/dns-1_2.2.pdml2 new file mode 100644 index 0000000..cf8ecce --- /dev/null +++ b/tests/dns/dns-1/output/dns-1_2.2.pdml2 @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/dns/dns-1/output/dns-1_2.2.text b/tests/dns/dns-1/output/dns-1_2.2.text new file mode 100644 index 0000000..23c2451 --- /dev/null +++ b/tests/dns/dns-1/output/dns-1_2.2.text @@ -0,0 +1 @@ + 1 0.000000 10.32.4.27 → 10.32.100.15 DNS 182 Standard query 0x4301 A in.m.yahoo.com diff --git a/tests/dns/dns-1/output/dns-1_2.3.pdml1 b/tests/dns/dns-1/output/dns-1_2.3.pdml1 new file mode 100644 index 0000000..cf8ecce --- /dev/null +++ b/tests/dns/dns-1/output/dns-1_2.3.pdml1 @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/dns/dns-1/output/dns-1_2.3.pdml2 b/tests/dns/dns-1/output/dns-1_2.3.pdml2 new file mode 100644 index 0000000..cf8ecce --- /dev/null +++ b/tests/dns/dns-1/output/dns-1_2.3.pdml2 @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/dns/dns-1/output/dns-1_2.3.text b/tests/dns/dns-1/output/dns-1_2.3.text new file mode 100644 index 0000000..23c2451 --- /dev/null +++ b/tests/dns/dns-1/output/dns-1_2.3.text @@ -0,0 +1 @@ + 1 0.000000 10.32.4.27 → 10.32.100.15 DNS 182 Standard query 0x4301 A in.m.yahoo.com diff --git a/tests/dns/dns-1/output/dns-1_2.4.pdml1 b/tests/dns/dns-1/output/dns-1_2.4.pdml1 new file mode 100644 index 0000000..8f625ab --- /dev/null +++ b/tests/dns/dns-1/output/dns-1_2.4.pdml1 @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/dns/dns-1/output/dns-1_2.4.pdml2 b/tests/dns/dns-1/output/dns-1_2.4.pdml2 new file mode 100644 index 0000000..8f625ab --- /dev/null +++ b/tests/dns/dns-1/output/dns-1_2.4.pdml2 @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/dns/dns-1/output/dns-1_2.4.text b/tests/dns/dns-1/output/dns-1_2.4.text new file mode 100644 index 0000000..23c2451 --- /dev/null +++ b/tests/dns/dns-1/output/dns-1_2.4.text @@ -0,0 +1 @@ + 1 0.000000 10.32.4.27 → 10.32.100.15 DNS 182 Standard query 0x4301 A in.m.yahoo.com diff --git a/tests/dns/qr-1/filter.xsl b/tests/dns/qr-1/filter.xsl new file mode 100644 index 0000000..85bb13f --- /dev/null +++ b/tests/dns/qr-1/filter.xsl @@ -0,0 +1,5 @@ + + + + + diff --git a/tests/dns/qr-1/output/qr-1_2.0.pdml1 b/tests/dns/qr-1/output/qr-1_2.0.pdml1 new file mode 100644 index 0000000..48677ee --- /dev/null +++ b/tests/dns/qr-1/output/qr-1_2.0.pdml1 @@ -0,0 +1,100 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/dns/qr-1/output/qr-1_2.0.pdml2 b/tests/dns/qr-1/output/qr-1_2.0.pdml2 new file mode 100644 index 0000000..f3b1e8b --- /dev/null +++ b/tests/dns/qr-1/output/qr-1_2.0.pdml2 @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/dns/qr-1/output/qr-1_2.0.text b/tests/dns/qr-1/output/qr-1_2.0.text new file mode 100644 index 0000000..865c7fd --- /dev/null +++ b/tests/dns/qr-1/output/qr-1_2.0.text @@ -0,0 +1,2 @@ + 1 0.000000 192.168.22.101 -> 8.8.8.8 DNS 85 Standard query 0xe65d A www.google.com OPT + 2 0.021423 8.8.8.8 -> 192.168.22.101 DNS 101 Standard query response 0xe65d A www.google.com A 172.217.16.164 OPT diff --git a/tests/dns-1/qr.pcapng.pdml b/tests/dns/qr-1/output/qr-1_2.2.pdml1 similarity index 100% rename from tests/dns-1/qr.pcapng.pdml rename to tests/dns/qr-1/output/qr-1_2.2.pdml1 diff --git a/tests/dns/qr-1/output/qr-1_2.2.pdml2 b/tests/dns/qr-1/output/qr-1_2.2.pdml2 new file mode 100644 index 0000000..6190224 --- /dev/null +++ b/tests/dns/qr-1/output/qr-1_2.2.pdml2 @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/dns/qr-1/output/qr-1_2.2.text b/tests/dns/qr-1/output/qr-1_2.2.text new file mode 100644 index 0000000..aeeff12 --- /dev/null +++ b/tests/dns/qr-1/output/qr-1_2.2.text @@ -0,0 +1,2 @@ + 1 0.000000 192.168.22.101 → 8.8.8.8 DNS 85 Standard query 0xe65d A www.google.com OPT + 2 0.021423 8.8.8.8 → 192.168.22.101 DNS 101 Standard query response 0xe65d A www.google.com A 172.217.16.164 OPT diff --git a/tests/dns/qr-1/output/qr-1_2.3.pdml1 b/tests/dns/qr-1/output/qr-1_2.3.pdml1 new file mode 100644 index 0000000..9ca0c2b --- /dev/null +++ b/tests/dns/qr-1/output/qr-1_2.3.pdml1 @@ -0,0 +1,100 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/dns/qr-1/output/qr-1_2.3.pdml2 b/tests/dns/qr-1/output/qr-1_2.3.pdml2 new file mode 100644 index 0000000..6190224 --- /dev/null +++ b/tests/dns/qr-1/output/qr-1_2.3.pdml2 @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/dns/qr-1/output/qr-1_2.3.text b/tests/dns/qr-1/output/qr-1_2.3.text new file mode 100644 index 0000000..8349a6d --- /dev/null +++ b/tests/dns/qr-1/output/qr-1_2.3.text @@ -0,0 +1,2 @@ + 1 0.000000 192.168.22.101 → 8.8.8.8 DNS 85 Standard query 0xe65d A www.google.com OPT + 2 0.021423 8.8.8.8 → 192.168.22.101 DNS 101 Standard query response 0xe65d A www.google.com A 172.217.16.164 OPT diff --git a/tests/dns/qr-1/output/qr-1_2.4.pdml1 b/tests/dns/qr-1/output/qr-1_2.4.pdml1 new file mode 100644 index 0000000..a20349a --- /dev/null +++ b/tests/dns/qr-1/output/qr-1_2.4.pdml1 @@ -0,0 +1,100 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/dns/qr-1/output/qr-1_2.4.pdml2 b/tests/dns/qr-1/output/qr-1_2.4.pdml2 new file mode 100644 index 0000000..b52c2c2 --- /dev/null +++ b/tests/dns/qr-1/output/qr-1_2.4.pdml2 @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/dns/qr-1/output/qr-1_2.4.text b/tests/dns/qr-1/output/qr-1_2.4.text new file mode 100644 index 0000000..8349a6d --- /dev/null +++ b/tests/dns/qr-1/output/qr-1_2.4.text @@ -0,0 +1,2 @@ + 1 0.000000 192.168.22.101 → 8.8.8.8 DNS 85 Standard query 0xe65d A www.google.com OPT + 2 0.021423 8.8.8.8 → 192.168.22.101 DNS 101 Standard query response 0xe65d A www.google.com A 172.217.16.164 OPT diff --git a/tests/dns/qr-1/qr-1.description.txt b/tests/dns/qr-1/qr-1.description.txt new file mode 100644 index 0000000..2f51542 --- /dev/null +++ b/tests/dns/qr-1/qr-1.description.txt @@ -0,0 +1 @@ +Simple DNS query and associated response diff --git a/tests/dns/qr-1/qr-1.pcapng.gz b/tests/dns/qr-1/qr-1.pcapng.gz new file mode 100644 index 0000000..3309764 Binary files /dev/null and b/tests/dns/qr-1/qr-1.pcapng.gz differ diff --git a/tests/dns/qr-1/qr-1.requirements.txt b/tests/dns/qr-1/qr-1.requirements.txt new file mode 100644 index 0000000..9f72836 --- /dev/null +++ b/tests/dns/qr-1/qr-1.requirements.txt @@ -0,0 +1 @@ +Decode as simple DNS request and response diff --git a/tests/rtp.ed137a/ed137a-1/ed137a-1.args b/tests/rtp.ed137a/ed137a-1/ed137a-1.args new file mode 100644 index 0000000..ab38a98 --- /dev/null +++ b/tests/rtp.ed137a/ed137a-1/ed137a-1.args @@ -0,0 +1 @@ +-d udp.port==5012,rtp diff --git a/tests/rtp.ed137a/ed137a-1/ed137a-1.description.txt b/tests/rtp.ed137a/ed137a-1/ed137a-1.description.txt new file mode 100644 index 0000000..d5ed271 --- /dev/null +++ b/tests/rtp.ed137a/ed137a-1/ed137a-1.description.txt @@ -0,0 +1,5 @@ + +RTP with ED-137A header extension. +Traffic is between RX unit of radio (172.16.176.24) and VCS (172.16.176.11). +There is silence plus received signal. Radio provides information about signal strength in SQI element measured with RSSI method. + diff --git a/tests/rtp.ed137a/ed137a-1/ed137a-1.pcapng.gz b/tests/rtp.ed137a/ed137a-1/ed137a-1.pcapng.gz new file mode 100644 index 0000000..8a51338 Binary files /dev/null and b/tests/rtp.ed137a/ed137a-1/ed137a-1.pcapng.gz differ diff --git a/tests/rtp.ed137a/ed137a-1/ed137a-1.requirements.txt b/tests/rtp.ed137a/ed137a-1/ed137a-1.requirements.txt new file mode 100644 index 0000000..82cb229 --- /dev/null +++ b/tests/rtp.ed137a/ed137a-1/ed137a-1.requirements.txt @@ -0,0 +1,4 @@ + +Packets should be decoded as described in specification: +Based on EUROCAE ED-137B specification: ED-137B, Part 1: RADIO, INTEROPERABILITY STANDARDS FOR VOIP ATM COMPONENTS https://boutique.eurocae.net/eshop/catalog/index.php + diff --git a/tests/rtp.ed137a/ed137a-1/filter.xsl b/tests/rtp.ed137a/ed137a-1/filter.xsl new file mode 100644 index 0000000..2b6ecfe --- /dev/null +++ b/tests/rtp.ed137a/ed137a-1/filter.xsl @@ -0,0 +1,5 @@ + + + + + diff --git a/tests/rtp.ed137a/ed137a-1/output/ed137a-1_2.0.pdml1 b/tests/rtp.ed137a/ed137a-1/output/ed137a-1_2.0.pdml1 new file mode 100644 index 0000000..bac6545 --- /dev/null +++ b/tests/rtp.ed137a/ed137a-1/output/ed137a-1_2.0.pdml1 @@ -0,0 +1,204 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/rtp.ed137a/ed137a-1/output/ed137a-1_2.0.pdml2 b/tests/rtp.ed137a/ed137a-1/output/ed137a-1_2.0.pdml2 new file mode 100644 index 0000000..bac6545 --- /dev/null +++ b/tests/rtp.ed137a/ed137a-1/output/ed137a-1_2.0.pdml2 @@ -0,0 +1,204 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/rtp.ed137a/ed137a-1/output/ed137a-1_2.0.text b/tests/rtp.ed137a/ed137a-1/output/ed137a-1_2.0.text new file mode 100644 index 0000000..ef53d94 --- /dev/null +++ b/tests/rtp.ed137a/ed137a-1/output/ed137a-1_2.0.text @@ -0,0 +1,6 @@ + 1 0.000000 172.16.176.24 -> 172.16.176.11 RTP 62 PT=DynamicRTP-Type-123, SSRC=0x58E1D996, Seq=1130, Time=558160 + 2 0.196636 172.16.176.24 -> 172.16.176.11 RTP 62 PT=DynamicRTP-Type-123, SSRC=0x58E1D996, Seq=1131, Time=559760 + 3 0.299523 172.16.176.24 -> 172.16.176.11 RTP 62 PT=DynamicRTP-Type-123, SSRC=0x58E1D996, Seq=1132, Time=560640 + 4 0.338710 172.16.176.24 -> 172.16.176.11 RTP 222 PT=ITU-T G.711 PCMA, SSRC=0x58E1D996, Seq=1133, Time=560960, SQU + 5 0.358728 172.16.176.24 -> 172.16.176.11 RTP 222 PT=ITU-T G.711 PCMA, SSRC=0x58E1D996, Seq=1134, Time=561120, SQU + 6 0.390928 172.16.176.24 -> 172.16.176.11 RTP 222 PT=ITU-T G.711 PCMA, SSRC=0x58E1D996, Seq=1135, Time=561280, SQU diff --git a/tests/rtp.ed137a/ed137a-1/output/ed137a-1_2.2.pdml1 b/tests/rtp.ed137a/ed137a-1/output/ed137a-1_2.2.pdml1 new file mode 100644 index 0000000..fcb6eb6 --- /dev/null +++ b/tests/rtp.ed137a/ed137a-1/output/ed137a-1_2.2.pdml1 @@ -0,0 +1,204 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/rtp.ed137a/ed137a-1/output/ed137a-1_2.2.pdml2 b/tests/rtp.ed137a/ed137a-1/output/ed137a-1_2.2.pdml2 new file mode 100644 index 0000000..fcb6eb6 --- /dev/null +++ b/tests/rtp.ed137a/ed137a-1/output/ed137a-1_2.2.pdml2 @@ -0,0 +1,204 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/rtp.ed137a/ed137a-1/output/ed137a-1_2.2.text b/tests/rtp.ed137a/ed137a-1/output/ed137a-1_2.2.text new file mode 100644 index 0000000..7e8339d --- /dev/null +++ b/tests/rtp.ed137a/ed137a-1/output/ed137a-1_2.2.text @@ -0,0 +1,6 @@ + 1 0.000000 172.16.176.24 → 172.16.176.11 RTP 62 PT=DynamicRTP-Type-123, SSRC=0x58E1D996, Seq=1130, Time=558160 + 2 0.196636 172.16.176.24 → 172.16.176.11 RTP 62 PT=DynamicRTP-Type-123, SSRC=0x58E1D996, Seq=1131, Time=559760 + 3 0.299523 172.16.176.24 → 172.16.176.11 RTP 62 PT=DynamicRTP-Type-123, SSRC=0x58E1D996, Seq=1132, Time=560640 + 4 0.338710 172.16.176.24 → 172.16.176.11 RTP 222 PT=ITU-T G.711 PCMA, SSRC=0x58E1D996, Seq=1133, Time=560960, SQU + 5 0.358728 172.16.176.24 → 172.16.176.11 RTP 222 PT=ITU-T G.711 PCMA, SSRC=0x58E1D996, Seq=1134, Time=561120, SQU + 6 0.390928 172.16.176.24 → 172.16.176.11 RTP 222 PT=ITU-T G.711 PCMA, SSRC=0x58E1D996, Seq=1135, Time=561280, SQU diff --git a/tests/rtp.ed137a/ed137a-1/output/ed137a-1_2.3.pdml1 b/tests/rtp.ed137a/ed137a-1/output/ed137a-1_2.3.pdml1 new file mode 100644 index 0000000..fcb6eb6 --- /dev/null +++ b/tests/rtp.ed137a/ed137a-1/output/ed137a-1_2.3.pdml1 @@ -0,0 +1,204 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/rtp.ed137a/ed137a-1/output/ed137a-1_2.3.pdml2 b/tests/rtp.ed137a/ed137a-1/output/ed137a-1_2.3.pdml2 new file mode 100644 index 0000000..fcb6eb6 --- /dev/null +++ b/tests/rtp.ed137a/ed137a-1/output/ed137a-1_2.3.pdml2 @@ -0,0 +1,204 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/rtp.ed137a/ed137a-1/output/ed137a-1_2.3.text b/tests/rtp.ed137a/ed137a-1/output/ed137a-1_2.3.text new file mode 100644 index 0000000..7e8339d --- /dev/null +++ b/tests/rtp.ed137a/ed137a-1/output/ed137a-1_2.3.text @@ -0,0 +1,6 @@ + 1 0.000000 172.16.176.24 → 172.16.176.11 RTP 62 PT=DynamicRTP-Type-123, SSRC=0x58E1D996, Seq=1130, Time=558160 + 2 0.196636 172.16.176.24 → 172.16.176.11 RTP 62 PT=DynamicRTP-Type-123, SSRC=0x58E1D996, Seq=1131, Time=559760 + 3 0.299523 172.16.176.24 → 172.16.176.11 RTP 62 PT=DynamicRTP-Type-123, SSRC=0x58E1D996, Seq=1132, Time=560640 + 4 0.338710 172.16.176.24 → 172.16.176.11 RTP 222 PT=ITU-T G.711 PCMA, SSRC=0x58E1D996, Seq=1133, Time=560960, SQU + 5 0.358728 172.16.176.24 → 172.16.176.11 RTP 222 PT=ITU-T G.711 PCMA, SSRC=0x58E1D996, Seq=1134, Time=561120, SQU + 6 0.390928 172.16.176.24 → 172.16.176.11 RTP 222 PT=ITU-T G.711 PCMA, SSRC=0x58E1D996, Seq=1135, Time=561280, SQU diff --git a/tests/rtp.ed137a/ed137a-1/output/ed137a-1_2.4.pdml1 b/tests/rtp.ed137a/ed137a-1/output/ed137a-1_2.4.pdml1 new file mode 100644 index 0000000..fcb6eb6 --- /dev/null +++ b/tests/rtp.ed137a/ed137a-1/output/ed137a-1_2.4.pdml1 @@ -0,0 +1,204 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/rtp.ed137a/ed137a-1/output/ed137a-1_2.4.pdml2 b/tests/rtp.ed137a/ed137a-1/output/ed137a-1_2.4.pdml2 new file mode 100644 index 0000000..fcb6eb6 --- /dev/null +++ b/tests/rtp.ed137a/ed137a-1/output/ed137a-1_2.4.pdml2 @@ -0,0 +1,204 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/rtp.ed137a/ed137a-1/output/ed137a-1_2.4.text b/tests/rtp.ed137a/ed137a-1/output/ed137a-1_2.4.text new file mode 100644 index 0000000..7e8339d --- /dev/null +++ b/tests/rtp.ed137a/ed137a-1/output/ed137a-1_2.4.text @@ -0,0 +1,6 @@ + 1 0.000000 172.16.176.24 → 172.16.176.11 RTP 62 PT=DynamicRTP-Type-123, SSRC=0x58E1D996, Seq=1130, Time=558160 + 2 0.196636 172.16.176.24 → 172.16.176.11 RTP 62 PT=DynamicRTP-Type-123, SSRC=0x58E1D996, Seq=1131, Time=559760 + 3 0.299523 172.16.176.24 → 172.16.176.11 RTP 62 PT=DynamicRTP-Type-123, SSRC=0x58E1D996, Seq=1132, Time=560640 + 4 0.338710 172.16.176.24 → 172.16.176.11 RTP 222 PT=ITU-T G.711 PCMA, SSRC=0x58E1D996, Seq=1133, Time=560960, SQU + 5 0.358728 172.16.176.24 → 172.16.176.11 RTP 222 PT=ITU-T G.711 PCMA, SSRC=0x58E1D996, Seq=1134, Time=561120, SQU + 6 0.390928 172.16.176.24 → 172.16.176.11 RTP 222 PT=ITU-T G.711 PCMA, SSRC=0x58E1D996, Seq=1135, Time=561280, SQU diff --git a/tests/rtp.ed137a/ed137a-2/ed137a-2.args b/tests/rtp.ed137a/ed137a-2/ed137a-2.args new file mode 100644 index 0000000..ab38a98 --- /dev/null +++ b/tests/rtp.ed137a/ed137a-2/ed137a-2.args @@ -0,0 +1 @@ +-d udp.port==5012,rtp diff --git a/tests/rtp.ed137a/ed137a-2/ed137a-2.description.txt b/tests/rtp.ed137a/ed137a-2/ed137a-2.description.txt new file mode 100644 index 0000000..44c8413 --- /dev/null +++ b/tests/rtp.ed137a/ed137a-2/ed137a-2.description.txt @@ -0,0 +1,5 @@ + +RTP with ED-137A header extension. +Traffic is between VCS (172.16.176.9) and TX unit of radio (172.16.176.41) +There is silence plus signal transmission. + diff --git a/tests/rtp.ed137a/ed137a-2/ed137a-2.pcapng.gz b/tests/rtp.ed137a/ed137a-2/ed137a-2.pcapng.gz new file mode 100644 index 0000000..a1a3ecd Binary files /dev/null and b/tests/rtp.ed137a/ed137a-2/ed137a-2.pcapng.gz differ diff --git a/tests/rtp.ed137a/ed137a-2/ed137a-2.requirements.txt b/tests/rtp.ed137a/ed137a-2/ed137a-2.requirements.txt new file mode 100644 index 0000000..82cb229 --- /dev/null +++ b/tests/rtp.ed137a/ed137a-2/ed137a-2.requirements.txt @@ -0,0 +1,4 @@ + +Packets should be decoded as described in specification: +Based on EUROCAE ED-137B specification: ED-137B, Part 1: RADIO, INTEROPERABILITY STANDARDS FOR VOIP ATM COMPONENTS https://boutique.eurocae.net/eshop/catalog/index.php + diff --git a/tests/rtp.ed137a/ed137a-2/filter.xsl b/tests/rtp.ed137a/ed137a-2/filter.xsl new file mode 100644 index 0000000..2b6ecfe --- /dev/null +++ b/tests/rtp.ed137a/ed137a-2/filter.xsl @@ -0,0 +1,5 @@ + + + + + diff --git a/tests/rtp.ed137a/ed137a-2/output/ed137a-2_2.0.pdml1 b/tests/rtp.ed137a/ed137a-2/output/ed137a-2_2.0.pdml1 new file mode 100644 index 0000000..619ff2a --- /dev/null +++ b/tests/rtp.ed137a/ed137a-2/output/ed137a-2_2.0.pdml1 @@ -0,0 +1,186 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/rtp.ed137a/ed137a-2/output/ed137a-2_2.0.pdml2 b/tests/rtp.ed137a/ed137a-2/output/ed137a-2_2.0.pdml2 new file mode 100644 index 0000000..619ff2a --- /dev/null +++ b/tests/rtp.ed137a/ed137a-2/output/ed137a-2_2.0.pdml2 @@ -0,0 +1,186 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/rtp.ed137a/ed137a-2/output/ed137a-2_2.0.text b/tests/rtp.ed137a/ed137a-2/output/ed137a-2_2.0.text new file mode 100644 index 0000000..3408454 --- /dev/null +++ b/tests/rtp.ed137a/ed137a-2/output/ed137a-2_2.0.text @@ -0,0 +1,6 @@ + 1 0.000000 172.16.176.9 -> 172.16.176.41 RTP 62 PT=DynamicRTP-Type-123, SSRC=0x7B01FCBF, Seq=12759, Time=2890804201 + 2 0.199984 172.16.176.9 -> 172.16.176.41 RTP 62 PT=DynamicRTP-Type-123, SSRC=0x7B01FCBF, Seq=12760, Time=2890805801 + 3 0.399967 172.16.176.9 -> 172.16.176.41 RTP 62 PT=DynamicRTP-Type-123, SSRC=0x7B01FCBF, Seq=12761, Time=2890807401 + 4 0.551027 172.16.176.9 -> 172.16.176.41 RTP 222 PT=ITU-T G.711 PCMA, SSRC=0x7B01FCBF, Seq=12762, Time=2890808449, PTT + 5 0.570996 172.16.176.9 -> 172.16.176.41 RTP 222 PT=ITU-T G.711 PCMA, SSRC=0x7B01FCBF, Seq=12763, Time=2890808609, PTT + 6 0.591015 172.16.176.9 -> 172.16.176.41 RTP 222 PT=ITU-T G.711 PCMA, SSRC=0x7B01FCBF, Seq=12764, Time=2890808769, PTT diff --git a/tests/rtp.ed137a/ed137a-2/output/ed137a-2_2.2.pdml1 b/tests/rtp.ed137a/ed137a-2/output/ed137a-2_2.2.pdml1 new file mode 100644 index 0000000..664abd6 --- /dev/null +++ b/tests/rtp.ed137a/ed137a-2/output/ed137a-2_2.2.pdml1 @@ -0,0 +1,186 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/rtp.ed137a/ed137a-2/output/ed137a-2_2.2.pdml2 b/tests/rtp.ed137a/ed137a-2/output/ed137a-2_2.2.pdml2 new file mode 100644 index 0000000..664abd6 --- /dev/null +++ b/tests/rtp.ed137a/ed137a-2/output/ed137a-2_2.2.pdml2 @@ -0,0 +1,186 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/rtp.ed137a/ed137a-2/output/ed137a-2_2.2.text b/tests/rtp.ed137a/ed137a-2/output/ed137a-2_2.2.text new file mode 100644 index 0000000..458905a --- /dev/null +++ b/tests/rtp.ed137a/ed137a-2/output/ed137a-2_2.2.text @@ -0,0 +1,6 @@ + 1 0.000000 172.16.176.9 → 172.16.176.41 RTP 62 PT=DynamicRTP-Type-123, SSRC=0x7B01FCBF, Seq=12759, Time=2890804201 + 2 0.199984 172.16.176.9 → 172.16.176.41 RTP 62 PT=DynamicRTP-Type-123, SSRC=0x7B01FCBF, Seq=12760, Time=2890805801 + 3 0.399967 172.16.176.9 → 172.16.176.41 RTP 62 PT=DynamicRTP-Type-123, SSRC=0x7B01FCBF, Seq=12761, Time=2890807401 + 4 0.551027 172.16.176.9 → 172.16.176.41 RTP 222 PT=ITU-T G.711 PCMA, SSRC=0x7B01FCBF, Seq=12762, Time=2890808449, PTT + 5 0.570996 172.16.176.9 → 172.16.176.41 RTP 222 PT=ITU-T G.711 PCMA, SSRC=0x7B01FCBF, Seq=12763, Time=2890808609, PTT + 6 0.591015 172.16.176.9 → 172.16.176.41 RTP 222 PT=ITU-T G.711 PCMA, SSRC=0x7B01FCBF, Seq=12764, Time=2890808769, PTT diff --git a/tests/rtp.ed137a/ed137a-2/output/ed137a-2_2.3.pdml1 b/tests/rtp.ed137a/ed137a-2/output/ed137a-2_2.3.pdml1 new file mode 100644 index 0000000..664abd6 --- /dev/null +++ b/tests/rtp.ed137a/ed137a-2/output/ed137a-2_2.3.pdml1 @@ -0,0 +1,186 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/rtp.ed137a/ed137a-2/output/ed137a-2_2.3.pdml2 b/tests/rtp.ed137a/ed137a-2/output/ed137a-2_2.3.pdml2 new file mode 100644 index 0000000..664abd6 --- /dev/null +++ b/tests/rtp.ed137a/ed137a-2/output/ed137a-2_2.3.pdml2 @@ -0,0 +1,186 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/rtp.ed137a/ed137a-2/output/ed137a-2_2.3.text b/tests/rtp.ed137a/ed137a-2/output/ed137a-2_2.3.text new file mode 100644 index 0000000..458905a --- /dev/null +++ b/tests/rtp.ed137a/ed137a-2/output/ed137a-2_2.3.text @@ -0,0 +1,6 @@ + 1 0.000000 172.16.176.9 → 172.16.176.41 RTP 62 PT=DynamicRTP-Type-123, SSRC=0x7B01FCBF, Seq=12759, Time=2890804201 + 2 0.199984 172.16.176.9 → 172.16.176.41 RTP 62 PT=DynamicRTP-Type-123, SSRC=0x7B01FCBF, Seq=12760, Time=2890805801 + 3 0.399967 172.16.176.9 → 172.16.176.41 RTP 62 PT=DynamicRTP-Type-123, SSRC=0x7B01FCBF, Seq=12761, Time=2890807401 + 4 0.551027 172.16.176.9 → 172.16.176.41 RTP 222 PT=ITU-T G.711 PCMA, SSRC=0x7B01FCBF, Seq=12762, Time=2890808449, PTT + 5 0.570996 172.16.176.9 → 172.16.176.41 RTP 222 PT=ITU-T G.711 PCMA, SSRC=0x7B01FCBF, Seq=12763, Time=2890808609, PTT + 6 0.591015 172.16.176.9 → 172.16.176.41 RTP 222 PT=ITU-T G.711 PCMA, SSRC=0x7B01FCBF, Seq=12764, Time=2890808769, PTT diff --git a/tests/rtp.ed137a/ed137a-2/output/ed137a-2_2.4.pdml1 b/tests/rtp.ed137a/ed137a-2/output/ed137a-2_2.4.pdml1 new file mode 100644 index 0000000..664abd6 --- /dev/null +++ b/tests/rtp.ed137a/ed137a-2/output/ed137a-2_2.4.pdml1 @@ -0,0 +1,186 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/rtp.ed137a/ed137a-2/output/ed137a-2_2.4.pdml2 b/tests/rtp.ed137a/ed137a-2/output/ed137a-2_2.4.pdml2 new file mode 100644 index 0000000..664abd6 --- /dev/null +++ b/tests/rtp.ed137a/ed137a-2/output/ed137a-2_2.4.pdml2 @@ -0,0 +1,186 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/rtp.ed137a/ed137a-2/output/ed137a-2_2.4.text b/tests/rtp.ed137a/ed137a-2/output/ed137a-2_2.4.text new file mode 100644 index 0000000..458905a --- /dev/null +++ b/tests/rtp.ed137a/ed137a-2/output/ed137a-2_2.4.text @@ -0,0 +1,6 @@ + 1 0.000000 172.16.176.9 → 172.16.176.41 RTP 62 PT=DynamicRTP-Type-123, SSRC=0x7B01FCBF, Seq=12759, Time=2890804201 + 2 0.199984 172.16.176.9 → 172.16.176.41 RTP 62 PT=DynamicRTP-Type-123, SSRC=0x7B01FCBF, Seq=12760, Time=2890805801 + 3 0.399967 172.16.176.9 → 172.16.176.41 RTP 62 PT=DynamicRTP-Type-123, SSRC=0x7B01FCBF, Seq=12761, Time=2890807401 + 4 0.551027 172.16.176.9 → 172.16.176.41 RTP 222 PT=ITU-T G.711 PCMA, SSRC=0x7B01FCBF, Seq=12762, Time=2890808449, PTT + 5 0.570996 172.16.176.9 → 172.16.176.41 RTP 222 PT=ITU-T G.711 PCMA, SSRC=0x7B01FCBF, Seq=12763, Time=2890808609, PTT + 6 0.591015 172.16.176.9 → 172.16.176.41 RTP 222 PT=ITU-T G.711 PCMA, SSRC=0x7B01FCBF, Seq=12764, Time=2890808769, PTT diff --git a/tests/rtsp/rtsp-channel_name_error/filter.xsl b/tests/rtsp/rtsp-channel_name_error/filter.xsl new file mode 100644 index 0000000..ab18d32 --- /dev/null +++ b/tests/rtsp/rtsp-channel_name_error/filter.xsl @@ -0,0 +1,5 @@ + + + + + diff --git a/tests/rtsp/rtsp-channel_name_error/output/rtsp-channel_name_error_2.2.pdml1 b/tests/rtsp/rtsp-channel_name_error/output/rtsp-channel_name_error_2.2.pdml1 new file mode 100644 index 0000000..bf76841 --- /dev/null +++ b/tests/rtsp/rtsp-channel_name_error/output/rtsp-channel_name_error_2.2.pdml1 @@ -0,0 +1,99 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/rtsp/rtsp-channel_name_error/output/rtsp-channel_name_error_2.2.pdml2 b/tests/rtsp/rtsp-channel_name_error/output/rtsp-channel_name_error_2.2.pdml2 new file mode 100644 index 0000000..bf76841 --- /dev/null +++ b/tests/rtsp/rtsp-channel_name_error/output/rtsp-channel_name_error_2.2.pdml2 @@ -0,0 +1,99 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/rtsp/rtsp-channel_name_error/output/rtsp-channel_name_error_2.2.text b/tests/rtsp/rtsp-channel_name_error/output/rtsp-channel_name_error_2.2.text new file mode 100644 index 0000000..fea0d77 --- /dev/null +++ b/tests/rtsp/rtsp-channel_name_error/output/rtsp-channel_name_error_2.2.text @@ -0,0 +1,7 @@ + 1 0.000000 172.16.31.65 → 172.16.127.80 RTSP 214 OPTIONS * RTSP/1.0 + 2 0.010164 172.16.127.80 → 172.16.31.65 RTSP 162 Reply: RTSP/1.0 200 OK + 3 0.010292 172.16.31.65 → 172.16.127.80 RTSP 1224 ANNOUNCE rtsp://172.16.127.80/iprecorder/ RTSP/1.0SETUP rtsp://172.16.127.80/iprecorder/ RTSP/1.0ANNOUNCE rtsp://172.16.127.80/iprecorder/ RTSP/1.0SETUP rtsp://172.16.127.80/iprecorder/ RTSP/1.0 + 4 0.032574 172.16.127.80 → 172.16.31.65 RTSP 130 Reply: RTSP/1.0 406 Session with name '' is not configured + 5 0.071068 172.16.31.65 → 172.16.127.80 TCP 66 41230 → 554 [ACK] Seq=1307 Ack=161 Win=432 Len=0 TSval=63271 TSecr=906416865 + 6 0.082851 172.16.127.80 → 172.16.31.65 RTSP 258 Reply: RTSP/1.0 406 Session with name '' is not configured + 7 0.082974 172.16.31.65 → 172.16.127.80 TCP 66 41230 → 554 [ACK] Seq=1307 Ack=353 Win=499 Len=0 TSval=63273 TSecr=906416877 diff --git a/tests/rtsp/rtsp-channel_name_error/rtsp-channel_name_error.description.txt b/tests/rtsp/rtsp-channel_name_error/rtsp-channel_name_error.description.txt new file mode 100644 index 0000000..de236e0 --- /dev/null +++ b/tests/rtsp/rtsp-channel_name_error/rtsp-channel_name_error.description.txt @@ -0,0 +1,7 @@ +RTSP 1.0, client asks recording for nonexisting channel + +172.16.31.65 is client +172.16.127.80 is server + +client names channel in SDP attribute u= in packet #3 + diff --git a/tests/rtsp/rtsp-channel_name_error/rtsp-channel_name_error.pcap.gz b/tests/rtsp/rtsp-channel_name_error/rtsp-channel_name_error.pcap.gz new file mode 100644 index 0000000..005463e Binary files /dev/null and b/tests/rtsp/rtsp-channel_name_error/rtsp-channel_name_error.pcap.gz differ diff --git a/tests/rtsp/rtsp-channel_name_error/rtsp-channel_name_error.requirements.txt b/tests/rtsp/rtsp-channel_name_error/rtsp-channel_name_error.requirements.txt new file mode 100644 index 0000000..c03edee --- /dev/null +++ b/tests/rtsp/rtsp-channel_name_error/rtsp-channel_name_error.requirements.txt @@ -0,0 +1,3 @@ + +Wireshark should show messages. It should not core or so. + diff --git a/tests/rtsp/rtsp-ed137_rtsp_tcp_rtp/filter.xsl b/tests/rtsp/rtsp-ed137_rtsp_tcp_rtp/filter.xsl new file mode 100644 index 0000000..ab18d32 --- /dev/null +++ b/tests/rtsp/rtsp-ed137_rtsp_tcp_rtp/filter.xsl @@ -0,0 +1,5 @@ + + + + + diff --git a/tests/rtsp/rtsp-ed137_rtsp_tcp_rtp/output/rtsp-ed137_rtsp_tcp_rtp_2.2.pdml1 b/tests/rtsp/rtsp-ed137_rtsp_tcp_rtp/output/rtsp-ed137_rtsp_tcp_rtp_2.2.pdml1 new file mode 100644 index 0000000..cdab1fe --- /dev/null +++ b/tests/rtsp/rtsp-ed137_rtsp_tcp_rtp/output/rtsp-ed137_rtsp_tcp_rtp_2.2.pdml1 @@ -0,0 +1,239 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/rtsp/rtsp-ed137_rtsp_tcp_rtp/output/rtsp-ed137_rtsp_tcp_rtp_2.2.pdml2 b/tests/rtsp/rtsp-ed137_rtsp_tcp_rtp/output/rtsp-ed137_rtsp_tcp_rtp_2.2.pdml2 new file mode 100644 index 0000000..cdab1fe --- /dev/null +++ b/tests/rtsp/rtsp-ed137_rtsp_tcp_rtp/output/rtsp-ed137_rtsp_tcp_rtp_2.2.pdml2 @@ -0,0 +1,239 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/rtsp/rtsp-ed137_rtsp_tcp_rtp/output/rtsp-ed137_rtsp_tcp_rtp_2.2.text b/tests/rtsp/rtsp-ed137_rtsp_tcp_rtp/output/rtsp-ed137_rtsp_tcp_rtp_2.2.text new file mode 100644 index 0000000..ce10493 --- /dev/null +++ b/tests/rtsp/rtsp-ed137_rtsp_tcp_rtp/output/rtsp-ed137_rtsp_tcp_rtp_2.2.text @@ -0,0 +1,103 @@ + 1 0.000000 172.16.168.24 → 172.16.168.64 TCP 74 45275 → 554 [SYN] Seq=0 Win=5840 Len=0 MSS=1460 SACK_PERM=1 TSval=4294943454 TSecr=0 WS=4 + 2 0.000111 172.16.168.64 → 172.16.168.24 TCP 74 554 → 45275 [SYN, ACK] Seq=0 Ack=1 Win=14480 Len=0 MSS=1460 SACK_PERM=1 TSval=47899697 TSecr=4294943454 WS=128 + 3 0.000883 172.16.168.24 → 172.16.168.64 TCP 66 45275 → 554 [ACK] Seq=1 Ack=1 Win=5840 Len=0 TSval=4294943454 TSecr=47899697 + 4 0.011442 172.16.168.24 → 172.16.168.64 TCP 196 [TCP segment of a reassembled PDU] + 5 0.011562 172.16.168.64 → 172.16.168.24 TCP 66 554 → 45275 [ACK] Seq=1 Ack=131 Win=15616 Len=0 TSval=47899700 TSecr=4294943455 + 6 0.012362 172.16.168.24 → 172.16.168.64 RTSP/SDP 205 ANNOUNCE rtsp://172.16.168.64 RTSP/1.0 + 7 0.012468 172.16.168.64 → 172.16.168.24 TCP 66 554 → 45275 [ACK] Seq=1 Ack=270 Win=16640 Len=0 TSval=47899700 TSecr=4294943455 + 8 0.012714 172.16.168.64 → 172.16.168.24 RTSP 94 Reply: RTSP/1.0 200 OK + 9 0.013302 172.16.168.24 → 172.16.168.64 TCP 66 45275 → 554 [ACK] Seq=270 Ack=29 Win=5840 Len=0 TSval=4294943455 TSecr=47899700 + 10 0.014900 172.16.168.24 → 172.16.168.64 RTSP 230 SETUP rtsp://172.16.168.64 RTSP/1.0 + 11 0.016054 172.16.168.64 → 172.16.168.24 RTSP 238 Reply: RTSP/1.0 200 OK + 12 0.021838 172.16.168.24 → 172.16.168.64 TCP 74 40252 → 5000 [SYN] Seq=0 Win=5840 Len=0 MSS=1460 SACK_PERM=1 TSval=4294943456 TSecr=0 WS=4 + 13 0.021948 172.16.168.64 → 172.16.168.24 TCP 74 5000 → 40252 [SYN, ACK] Seq=0 Ack=1 Win=14480 Len=0 MSS=1460 SACK_PERM=1 TSval=47899703 TSecr=4294943456 WS=128 + 14 0.022605 172.16.168.24 → 172.16.168.64 TCP 66 40252 → 5000 [ACK] Seq=1 Ack=1 Win=5840 Len=0 TSval=4294943456 TSecr=47899703 + 15 0.059680 172.16.168.24 → 172.16.168.64 TCP 66 45275 → 554 [ACK] Seq=434 Ack=201 Win=6912 Len=0 TSval=4294943460 TSecr=47899701 + 16 82.903410 172.16.168.24 → 172.16.168.64 TCP 237 [TCP segment of a reassembled PDU] + 17 82.942325 172.16.168.64 → 172.16.168.24 TCP 66 554 → 45275 [ACK] Seq=201 Ack=605 Win=18816 Len=0 TSval=47920433 TSecr=4294951744 + 18 82.943365 172.16.168.24 → 172.16.168.64 RTSP 386 RECORD rtsp://172.16.168.64 RTSP/1.0 + 19 82.943457 172.16.168.64 → 172.16.168.24 TCP 66 554 → 45275 [ACK] Seq=201 Ack=925 Win=19840 Len=0 TSval=47920433 TSecr=4294951748 + 20 82.943666 172.16.168.64 → 172.16.168.24 RTSP 131 Reply: RTSP/1.0 200 OK + 21 82.944401 172.16.168.24 → 172.16.168.64 TCP 66 45275 → 554 [ACK] Seq=925 Ack=266 Win=6912 Len=0 TSval=4294951748 TSecr=47920433 + 22 82.945716 172.16.168.24 → 172.16.168.64 TCP 1280 40252 → 5000 [PSH, ACK] Seq=1 Ack=1 Win=5840 Len=1214 TSval=4294951748 TSecr=47899703 + 23 82.945798 172.16.168.64 → 172.16.168.24 TCP 66 5000 → 40252 [ACK] Seq=1 Ack=1215 Win=17408 Len=0 TSval=47920433 TSecr=4294951748 + 24 83.038945 172.16.168.24 → 172.16.168.64 TCP 1280 40252 → 5000 [PSH, ACK] Seq=1215 Ack=1 Win=5840 Len=1214 TSval=4294951757 TSecr=47920433 + 25 83.038977 172.16.168.64 → 172.16.168.24 TCP 66 5000 → 40252 [ACK] Seq=1 Ack=2429 Win=20352 Len=0 TSval=47920457 TSecr=4294951757 + 26 83.187801 172.16.168.24 → 172.16.168.64 TCP 1280 40252 → 5000 [PSH, ACK] Seq=2429 Ack=1 Win=5840 Len=1214 TSval=4294951772 TSecr=47920457 + 27 83.187844 172.16.168.64 → 172.16.168.24 TCP 66 5000 → 40252 [ACK] Seq=1 Ack=3643 Win=23168 Len=0 TSval=47920494 TSecr=4294951772 + 28 83.336951 172.16.168.24 → 172.16.168.64 TCP 1280 40252 → 5000 [PSH, ACK] Seq=3643 Ack=1 Win=5840 Len=1214 TSval=4294951787 TSecr=47920494 + 29 83.337076 172.16.168.64 → 172.16.168.24 TCP 66 5000 → 40252 [ACK] Seq=1 Ack=4857 Win=26112 Len=0 TSval=47920531 TSecr=4294951787 + 30 83.487930 172.16.168.24 → 172.16.168.64 TCP 1280 40252 → 5000 [PSH, ACK] Seq=4857 Ack=1 Win=5840 Len=1214 TSval=4294951802 TSecr=47920531 + 31 83.488082 172.16.168.64 → 172.16.168.24 TCP 66 5000 → 40252 [ACK] Seq=1 Ack=6071 Win=29056 Len=0 TSval=47920569 TSecr=4294951802 + 32 83.639473 172.16.168.24 → 172.16.168.64 TCP 1280 40252 → 5000 [PSH, ACK] Seq=6071 Ack=1 Win=5840 Len=1214 TSval=4294951817 TSecr=47920569 + 33 83.639500 172.16.168.64 → 172.16.168.24 TCP 66 5000 → 40252 [ACK] Seq=1 Ack=7285 Win=31872 Len=0 TSval=47920607 TSecr=4294951817 + 34 83.787889 172.16.168.24 → 172.16.168.64 TCP 1280 40252 → 5000 [PSH, ACK] Seq=7285 Ack=1 Win=5840 Len=1214 TSval=4294951832 TSecr=47920607 + 35 83.788040 172.16.168.64 → 172.16.168.24 TCP 66 5000 → 40252 [ACK] Seq=1 Ack=8499 Win=34816 Len=0 TSval=47920644 TSecr=4294951832 + 36 83.936929 172.16.168.24 → 172.16.168.64 TCP 1280 40252 → 5000 [PSH, ACK] Seq=8499 Ack=1 Win=5840 Len=1214 TSval=4294951847 TSecr=47920644 + 37 83.936966 172.16.168.64 → 172.16.168.24 TCP 66 5000 → 40252 [ACK] Seq=1 Ack=9713 Win=37760 Len=0 TSval=47920681 TSecr=4294951847 + 38 84.088655 172.16.168.24 → 172.16.168.64 TCP 1280 40252 → 5000 [PSH, ACK] Seq=9713 Ack=1 Win=5840 Len=1214 TSval=4294951862 TSecr=47920681 + 39 84.088778 172.16.168.64 → 172.16.168.24 TCP 66 5000 → 40252 [ACK] Seq=1 Ack=10927 Win=40576 Len=0 TSval=47920719 TSecr=4294951862 + 40 84.239582 172.16.168.24 → 172.16.168.64 TCP 1280 40252 → 5000 [PSH, ACK] Seq=10927 Ack=1 Win=5840 Len=1214 TSval=4294951877 TSecr=47920719 + 41 84.239647 172.16.168.64 → 172.16.168.24 TCP 66 5000 → 40252 [ACK] Seq=1 Ack=12141 Win=42368 Len=0 TSval=47920757 TSecr=4294951877 + 42 84.389247 172.16.168.24 → 172.16.168.64 TCP 1280 40252 → 5000 [PSH, ACK] Seq=12141 Ack=1 Win=5840 Len=1214 TSval=4294951892 TSecr=47920757 + 43 84.389275 172.16.168.64 → 172.16.168.24 TCP 66 5000 → 40252 [ACK] Seq=1 Ack=13355 Win=42368 Len=0 TSval=47920794 TSecr=4294951892 + 44 84.537607 172.16.168.24 → 172.16.168.64 TCP 1280 40252 → 5000 [PSH, ACK] Seq=13355 Ack=1 Win=5840 Len=1214 TSval=4294951907 TSecr=47920794 + 45 84.537648 172.16.168.64 → 172.16.168.24 TCP 66 5000 → 40252 [ACK] Seq=1 Ack=14569 Win=42368 Len=0 TSval=47920831 TSecr=4294951907 + 46 84.688938 172.16.168.24 → 172.16.168.64 TCP 1280 40252 → 5000 [PSH, ACK] Seq=14569 Ack=1 Win=5840 Len=1214 TSval=4294951922 TSecr=47920831 + 47 84.688974 172.16.168.64 → 172.16.168.24 TCP 66 5000 → 40252 [ACK] Seq=1 Ack=15783 Win=42368 Len=0 TSval=47920869 TSecr=4294951922 + 48 84.839735 172.16.168.24 → 172.16.168.64 TCP 1280 40252 → 5000 [PSH, ACK] Seq=15783 Ack=1 Win=5840 Len=1214 TSval=4294951937 TSecr=47920869 + 49 84.839797 172.16.168.64 → 172.16.168.24 TCP 66 5000 → 40252 [ACK] Seq=1 Ack=16997 Win=42368 Len=0 TSval=47920907 TSecr=4294951937 + 50 84.988774 172.16.168.24 → 172.16.168.64 TCP 1280 40252 → 5000 [PSH, ACK] Seq=16997 Ack=1 Win=5840 Len=1214 TSval=4294951952 TSecr=47920907 + 51 85.026250 172.16.168.64 → 172.16.168.24 TCP 66 5000 → 40252 [ACK] Seq=1 Ack=18211 Win=42368 Len=0 TSval=47920954 TSecr=4294951952 + 52 85.137658 172.16.168.24 → 172.16.168.64 TCP 1280 40252 → 5000 [PSH, ACK] Seq=18211 Ack=1 Win=5840 Len=1214 TSval=4294951967 TSecr=47920954 + 53 85.174292 172.16.168.64 → 172.16.168.24 TCP 66 5000 → 40252 [ACK] Seq=1 Ack=19425 Win=42368 Len=0 TSval=47920991 TSecr=4294951967 + 54 85.287470 172.16.168.24 → 172.16.168.64 TCP 1280 40252 → 5000 [PSH, ACK] Seq=19425 Ack=1 Win=5840 Len=1214 TSval=4294951982 TSecr=47920991 + 55 85.326297 172.16.168.64 → 172.16.168.24 TCP 66 5000 → 40252 [ACK] Seq=1 Ack=20639 Win=42368 Len=0 TSval=47921029 TSecr=4294951982 + 56 85.454149 172.16.168.24 → 172.16.168.64 TCP 236 [TCP segment of a reassembled PDU] + 57 85.490263 172.16.168.64 → 172.16.168.24 TCP 66 554 → 45275 [ACK] Seq=266 Ack=1095 Win=20992 Len=0 TSval=47921070 TSecr=4294951999 + 58 85.492043 172.16.168.24 → 172.16.168.64 RTSP 267 PAUSE rtsp://172.16.168.64 RTSP/1.0 + 59 85.492122 172.16.168.64 → 172.16.168.24 TCP 66 554 → 45275 [ACK] Seq=266 Ack=1296 Win=22016 Len=0 TSval=47921070 TSecr=4294952003 + 60 85.492476 172.16.168.64 → 172.16.168.24 RTSP 131 Reply: RTSP/1.0 200 OK + 61 85.493326 172.16.168.24 → 172.16.168.64 TCP 66 45275 → 554 [ACK] Seq=1296 Ack=331 Win=6912 Len=0 TSval=4294952003 TSecr=47921070 + 62 107.513836 172.16.168.24 → 172.16.168.64 TCP 237 [TCP segment of a reassembled PDU] + 63 107.550410 172.16.168.64 → 172.16.168.24 TCP 66 554 → 45275 [ACK] Seq=331 Ack=1467 Win=23168 Len=0 TSval=47926585 TSecr=4294954205 + 64 107.552548 172.16.168.24 → 172.16.168.64 RTSP 385 RECORD rtsp://172.16.168.64 RTSP/1.0 + 65 107.552658 172.16.168.64 → 172.16.168.24 TCP 66 554 → 45275 [ACK] Seq=331 Ack=1786 Win=24192 Len=0 TSval=47926585 TSecr=4294954209 + 66 107.552859 172.16.168.64 → 172.16.168.24 RTSP 131 Reply: RTSP/1.0 200 OK + 67 107.553769 172.16.168.24 → 172.16.168.64 TCP 66 45275 → 554 [ACK] Seq=1786 Ack=396 Win=6912 Len=0 TSval=4294954209 TSecr=47926585 + 68 107.555048 172.16.168.24 → 172.16.168.64 TCP 1280 40252 → 5000 [PSH, ACK] Seq=20639 Ack=1 Win=5840 Len=1214 TSval=4294954209 TSecr=47921029 + 69 107.555152 172.16.168.64 → 172.16.168.24 TCP 66 5000 → 40252 [ACK] Seq=1 Ack=21853 Win=42368 Len=0 TSval=47926586 TSecr=4294954209 + 70 107.642312 172.16.168.24 → 172.16.168.64 TCP 1280 40252 → 5000 [PSH, ACK] Seq=21853 Ack=1 Win=5840 Len=1214 TSval=4294954218 TSecr=47926586 + 71 107.642431 172.16.168.64 → 172.16.168.24 TCP 66 5000 → 40252 [ACK] Seq=1 Ack=23067 Win=42368 Len=0 TSval=47926608 TSecr=4294954218 + 72 107.790193 172.16.168.24 → 172.16.168.64 TCP 1280 40252 → 5000 [PSH, ACK] Seq=23067 Ack=1 Win=5840 Len=1214 TSval=4294954232 TSecr=47926608 + 73 107.790260 172.16.168.64 → 172.16.168.24 TCP 66 5000 → 40252 [ACK] Seq=1 Ack=24281 Win=42368 Len=0 TSval=47926644 TSecr=4294954232 + 74 107.939306 172.16.168.24 → 172.16.168.64 TCP 1280 40252 → 5000 [PSH, ACK] Seq=24281 Ack=1 Win=5840 Len=1214 TSval=4294954247 TSecr=47926644 + 75 107.939403 172.16.168.64 → 172.16.168.24 TCP 66 5000 → 40252 [ACK] Seq=1 Ack=25495 Win=42368 Len=0 TSval=47926682 TSecr=4294954247 + 76 108.090214 172.16.168.24 → 172.16.168.64 TCP 1280 40252 → 5000 [PSH, ACK] Seq=25495 Ack=1 Win=5840 Len=1214 TSval=4294954262 TSecr=47926682 + 77 108.090243 172.16.168.64 → 172.16.168.24 TCP 66 5000 → 40252 [ACK] Seq=1 Ack=26709 Win=42368 Len=0 TSval=47926719 TSecr=4294954262 + 78 108.242271 172.16.168.24 → 172.16.168.64 TCP 1280 40252 → 5000 [PSH, ACK] Seq=26709 Ack=1 Win=5840 Len=1214 TSval=4294954278 TSecr=47926719 + 79 108.242304 172.16.168.64 → 172.16.168.24 TCP 66 5000 → 40252 [ACK] Seq=1 Ack=27923 Win=42368 Len=0 TSval=47926757 TSecr=4294954278 + 80 108.393955 172.16.168.24 → 172.16.168.64 TCP 1280 40252 → 5000 [PSH, ACK] Seq=27923 Ack=1 Win=5840 Len=1214 TSval=4294954293 TSecr=47926757 + 81 108.394072 172.16.168.64 → 172.16.168.24 TCP 66 5000 → 40252 [ACK] Seq=1 Ack=29137 Win=42368 Len=0 TSval=47926795 TSecr=4294954293 + 82 108.539047 172.16.168.24 → 172.16.168.64 TCP 1280 40252 → 5000 [PSH, ACK] Seq=29137 Ack=1 Win=5840 Len=1214 TSval=4294954307 TSecr=47926795 + 83 108.539146 172.16.168.64 → 172.16.168.24 TCP 66 5000 → 40252 [ACK] Seq=1 Ack=30351 Win=42368 Len=0 TSval=47926832 TSecr=4294954307 + 84 108.690289 172.16.168.24 → 172.16.168.64 TCP 1280 40252 → 5000 [PSH, ACK] Seq=30351 Ack=1 Win=5840 Len=1214 TSval=4294954322 TSecr=47926832 + 85 108.690312 172.16.168.64 → 172.16.168.24 TCP 66 5000 → 40252 [ACK] Seq=1 Ack=31565 Win=42368 Len=0 TSval=47926869 TSecr=4294954322 + 86 108.842261 172.16.168.24 → 172.16.168.64 TCP 1280 40252 → 5000 [PSH, ACK] Seq=31565 Ack=1 Win=5840 Len=1214 TSval=4294954338 TSecr=47926869 + 87 108.842299 172.16.168.64 → 172.16.168.24 TCP 66 5000 → 40252 [ACK] Seq=1 Ack=32779 Win=42368 Len=0 TSval=47926907 TSecr=4294954338 + 88 108.990281 172.16.168.24 → 172.16.168.64 TCP 1280 40252 → 5000 [PSH, ACK] Seq=32779 Ack=1 Win=5840 Len=1214 TSval=4294954352 TSecr=47926907 + 89 108.990401 172.16.168.64 → 172.16.168.24 TCP 66 5000 → 40252 [ACK] Seq=1 Ack=33993 Win=42368 Len=0 TSval=47926944 TSecr=4294954352 + 90 109.139230 172.16.168.24 → 172.16.168.64 TCP 1280 40252 → 5000 [PSH, ACK] Seq=33993 Ack=1 Win=5840 Len=1214 TSval=4294954367 TSecr=47926944 + 91 109.139267 172.16.168.64 → 172.16.168.24 TCP 66 5000 → 40252 [ACK] Seq=1 Ack=35207 Win=42368 Len=0 TSval=47926982 TSecr=4294954367 + 92 109.290137 172.16.168.24 → 172.16.168.64 TCP 1280 40252 → 5000 [PSH, ACK] Seq=35207 Ack=1 Win=5840 Len=1214 TSval=4294954382 TSecr=47926982 + 93 109.290266 172.16.168.64 → 172.16.168.24 TCP 66 5000 → 40252 [ACK] Seq=1 Ack=36421 Win=42368 Len=0 TSval=47927019 TSecr=4294954382 + 94 109.448956 172.16.168.24 → 172.16.168.64 TCP 1280 40252 → 5000 [PSH, ACK] Seq=36421 Ack=1 Win=5840 Len=1214 TSval=4294954398 TSecr=47927019 + 95 109.449028 172.16.168.64 → 172.16.168.24 TCP 66 5000 → 40252 [ACK] Seq=1 Ack=37635 Win=42368 Len=0 TSval=47927059 TSecr=4294954398 + 96 109.588608 172.16.168.24 → 172.16.168.64 TCP 1280 40252 → 5000 [PSH, ACK] Seq=37635 Ack=1 Win=5840 Len=1214 TSval=4294954412 TSecr=47927059 + 97 109.588644 172.16.168.64 → 172.16.168.24 TCP 66 5000 → 40252 [ACK] Seq=1 Ack=38849 Win=42368 Len=0 TSval=47927094 TSecr=4294954412 + 98 109.767041 172.16.168.24 → 172.16.168.64 TCP 236 [TCP segment of a reassembled PDU] + 99 109.806440 172.16.168.64 → 172.16.168.24 TCP 66 554 → 45275 [ACK] Seq=396 Ack=1956 Win=25216 Len=0 TSval=47927149 TSecr=4294954430 + 100 109.807449 172.16.168.24 → 172.16.168.64 RTSP 266 PAUSE rtsp://172.16.168.64 RTSP/1.0 + 101 109.807547 172.16.168.64 → 172.16.168.24 TCP 66 554 → 45275 [ACK] Seq=396 Ack=2156 Win=26368 Len=0 TSval=47927149 TSecr=4294954434 + 102 109.807894 172.16.168.64 → 172.16.168.24 RTSP 131 Reply: RTSP/1.0 200 OK + 103 109.808803 172.16.168.24 → 172.16.168.64 TCP 66 45275 → 554 [ACK] Seq=2156 Ack=461 Win=6912 Len=0 TSval=4294954434 TSecr=47927149 diff --git a/tests/rtsp/rtsp-ed137_rtsp_tcp_rtp/rtsp-ed137_rtsp_tcp_rtp.description.txt b/tests/rtsp/rtsp-ed137_rtsp_tcp_rtp/rtsp-ed137_rtsp_tcp_rtp.description.txt new file mode 100644 index 0000000..f8c76f8 --- /dev/null +++ b/tests/rtsp/rtsp-ed137_rtsp_tcp_rtp/rtsp-ed137_rtsp_tcp_rtp.description.txt @@ -0,0 +1,7 @@ +RTSP 1.0 with media in TCP + +172.16.168.24 is RTSP client +172.16.168.64 is RTSP server + +Client transmits media in TCP. Client adds XML metadata to RECORD/PAUSE messages. + diff --git a/tests/rtsp/rtsp-ed137_rtsp_tcp_rtp/rtsp-ed137_rtsp_tcp_rtp.pcapng.gz b/tests/rtsp/rtsp-ed137_rtsp_tcp_rtp/rtsp-ed137_rtsp_tcp_rtp.pcapng.gz new file mode 100644 index 0000000..721b40b Binary files /dev/null and b/tests/rtsp/rtsp-ed137_rtsp_tcp_rtp/rtsp-ed137_rtsp_tcp_rtp.pcapng.gz differ diff --git a/tests/rtsp/rtsp-ed137_rtsp_tcp_rtp/rtsp-ed137_rtsp_tcp_rtp.requirements.txt b/tests/rtsp/rtsp-ed137_rtsp_tcp_rtp/rtsp-ed137_rtsp_tcp_rtp.requirements.txt new file mode 100644 index 0000000..11e2650 --- /dev/null +++ b/tests/rtsp/rtsp-ed137_rtsp_tcp_rtp/rtsp-ed137_rtsp_tcp_rtp.requirements.txt @@ -0,0 +1,2 @@ +Wireshark should decode RTP in UDP based on RTSP messages +Wireshark should show XML metadata as XML. diff --git a/tests/rtsp/rtsp-ed137_rtsp_udp_rtp/filter.xsl b/tests/rtsp/rtsp-ed137_rtsp_udp_rtp/filter.xsl new file mode 100644 index 0000000..ab18d32 --- /dev/null +++ b/tests/rtsp/rtsp-ed137_rtsp_udp_rtp/filter.xsl @@ -0,0 +1,5 @@ + + + + + diff --git a/tests/rtsp/rtsp-ed137_rtsp_udp_rtp/output/rtsp-ed137_rtsp_udp_rtp_2.2.pdml1 b/tests/rtsp/rtsp-ed137_rtsp_udp_rtp/output/rtsp-ed137_rtsp_udp_rtp_2.2.pdml1 new file mode 100644 index 0000000..faed367 --- /dev/null +++ b/tests/rtsp/rtsp-ed137_rtsp_udp_rtp/output/rtsp-ed137_rtsp_udp_rtp_2.2.pdml1 @@ -0,0 +1,887 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/rtsp/rtsp-ed137_rtsp_udp_rtp/output/rtsp-ed137_rtsp_udp_rtp_2.2.pdml2 b/tests/rtsp/rtsp-ed137_rtsp_udp_rtp/output/rtsp-ed137_rtsp_udp_rtp_2.2.pdml2 new file mode 100644 index 0000000..faed367 --- /dev/null +++ b/tests/rtsp/rtsp-ed137_rtsp_udp_rtp/output/rtsp-ed137_rtsp_udp_rtp_2.2.pdml2 @@ -0,0 +1,887 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/rtsp/rtsp-ed137_rtsp_udp_rtp/output/rtsp-ed137_rtsp_udp_rtp_2.2.text b/tests/rtsp/rtsp-ed137_rtsp_udp_rtp/output/rtsp-ed137_rtsp_udp_rtp_2.2.text new file mode 100644 index 0000000..7122f2f --- /dev/null +++ b/tests/rtsp/rtsp-ed137_rtsp_udp_rtp/output/rtsp-ed137_rtsp_udp_rtp_2.2.text @@ -0,0 +1,771 @@ + 1 0.000000 172.16.31.253 → 172.16.31.155 RTSP 215 OPTIONS * RTSP/1.0 + 2 0.002580 172.16.31.155 → 172.16.31.253 RTSP 302 Reply: RTSP/1.0 200 OK + 3 0.019387 172.16.31.253 → 172.16.31.155 RTSP 292 OPTIONS * RTSP/1.0 + 4 0.021476 172.16.31.155 → 172.16.31.253 RTSP 302 Reply: RTSP/1.0 200 OK + 5 0.121170 172.16.31.253 → 172.16.31.155 RTSP/SDP 425 ANNOUNCE rtsp://172.16.31.155/iprecorder/ RTSP/1.0 + 6 0.124830 172.16.31.155 → 172.16.31.253 RTSP 203 Reply: RTSP/1.0 200 OK + 7 0.125504 172.16.31.253 → 172.16.31.155 RTSP 342 SETUP rtsp://172.16.31.155/iprecorder/ RTSP/2.0 + 8 0.135947 172.16.31.155 → 172.16.31.253 RTSP 353 Reply: RTSP/2.0 200 OK + 9 0.154365 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 10 0.174355 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 11 0.194531 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 12 0.214353 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 13 0.234357 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 14 0.254371 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 15 0.274380 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 16 0.294371 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 17 0.314373 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 18 0.334375 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 19 0.354372 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 20 0.374367 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 21 0.394376 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 22 0.414397 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 23 0.434360 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 24 0.454359 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 25 0.474679 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 26 0.494376 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 27 0.514365 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 28 0.534374 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 29 0.554378 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 30 0.574376 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 31 0.594363 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 32 0.614383 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 33 0.634385 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 34 0.654369 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 35 0.674375 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 36 0.694376 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 37 0.714378 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 38 0.734368 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 39 0.754384 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 40 0.774389 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 41 0.794385 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 42 0.814387 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 43 0.834386 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 44 0.854379 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 45 0.874379 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 46 0.894361 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 47 0.914386 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 48 0.934383 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 49 0.954381 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 50 0.974382 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 51 0.994366 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 52 1.014377 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 53 1.034381 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 54 1.054370 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 55 1.074377 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 56 1.094350 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 57 1.114375 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 58 1.134381 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 59 1.154378 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 60 1.174379 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 61 1.194381 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 62 1.214384 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 63 1.234393 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 64 1.254380 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 65 1.274394 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 66 1.294386 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 67 1.314387 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 68 1.334389 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 69 1.354373 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 70 1.374394 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 71 1.394383 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 72 1.414389 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 73 1.434395 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 74 1.454395 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 75 1.474383 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 76 1.494398 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 77 1.514381 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 78 1.534385 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 79 1.554385 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 80 1.574378 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 81 1.594621 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 82 1.614395 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 83 1.634398 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 84 1.654394 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 85 1.674395 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 86 1.694392 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 87 1.714391 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 88 1.734392 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 89 1.754390 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 90 1.774392 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 91 1.794390 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 92 1.814391 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 93 1.834385 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 94 1.854397 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 95 1.874390 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 96 1.894390 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 97 1.914384 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 98 1.934396 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 99 1.954390 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 100 1.974389 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 101 1.994377 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 102 2.014396 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 103 2.034385 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 104 2.054376 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 105 2.074385 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 106 2.094395 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 107 2.114394 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 108 2.134395 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 109 2.154395 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 110 2.174405 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 111 2.194404 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 112 2.214395 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 113 2.234395 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 114 2.254397 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 115 2.274398 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 116 2.294403 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 117 2.314401 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 118 2.334395 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 119 2.354396 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 120 2.374390 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 121 2.394396 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 122 2.414391 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 123 2.434397 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 124 2.454397 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 125 2.474406 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 126 2.494381 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 127 2.514402 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 128 2.534382 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 129 2.554404 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 130 2.574408 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 131 2.594396 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 132 2.614391 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 133 2.634410 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 134 2.654418 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 135 2.674397 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 136 2.694401 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 137 2.714412 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 138 2.734404 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 139 2.754406 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 140 2.774410 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 141 2.794406 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 142 2.814414 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 143 2.834411 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 144 2.854408 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 145 2.874403 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 146 2.894390 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 147 2.914395 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 148 2.934405 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 149 2.954403 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 150 2.974402 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 151 2.994403 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 152 3.014413 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 153 3.034405 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 154 3.054391 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 155 3.074408 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 156 3.094387 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 157 3.114398 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 158 3.134402 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 159 3.154401 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 160 3.174397 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 161 3.194397 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 162 3.214403 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 163 3.234404 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 164 3.254398 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 165 3.274406 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 166 3.294407 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 167 3.314396 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 168 3.334388 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 169 3.354401 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 170 3.374402 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 171 3.394406 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 172 3.414404 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 173 3.434412 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 174 3.454412 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 175 3.474405 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 176 3.494408 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 177 3.514388 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 178 3.534405 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 179 3.554403 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 180 3.574390 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 181 3.594406 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 182 3.614408 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 183 3.634399 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 184 3.654403 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 185 3.674408 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 186 3.694412 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 187 3.714410 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 188 3.734403 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 189 3.754407 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 190 3.774408 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 191 3.794406 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 192 3.814413 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 193 3.834415 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 194 3.854400 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 195 3.874400 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 196 3.894405 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 197 3.914413 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 198 3.934411 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 199 3.954404 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 200 3.974401 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 201 3.994402 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 202 4.014407 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 203 4.034412 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 204 4.054410 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 205 4.074420 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 206 4.094407 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 207 4.114403 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 208 4.134404 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 209 4.154412 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 210 4.174403 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 211 4.194415 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 212 4.214416 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 213 4.234398 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 214 4.254411 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 215 4.274413 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 216 4.294411 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 217 4.314408 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 218 4.334406 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 219 4.354420 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 220 4.374413 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 221 4.394414 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 222 4.414409 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 223 4.434401 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 224 4.454413 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 225 4.474417 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 226 4.494427 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 227 4.514421 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 228 4.534414 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 229 4.554432 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 230 4.574412 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 231 4.594412 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 232 4.614432 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 233 4.634421 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 234 4.654413 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 235 4.674423 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 236 4.694421 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 237 4.714419 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 238 4.734421 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 239 4.754418 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 240 4.774417 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 241 4.794419 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 242 4.814422 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 243 4.834422 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 244 4.854420 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 245 4.874409 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 246 4.894422 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 247 4.914423 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 248 4.934420 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 249 4.954412 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 250 4.974417 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 251 4.994425 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 252 5.014414 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 253 5.034418 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 254 5.054422 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 255 5.074412 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 256 5.094428 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 257 5.114412 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 258 5.134425 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 259 5.154410 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 260 5.174403 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 261 5.194429 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 262 5.214418 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 263 5.234419 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 264 5.254421 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 265 5.274421 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 266 5.294425 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 267 5.314425 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 268 5.334424 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 269 5.354424 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 270 5.374425 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 271 5.394422 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 272 5.414422 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 273 5.434425 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 274 5.454425 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 275 5.474423 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 276 5.494428 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 277 5.514426 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 278 5.534426 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 279 5.554428 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 280 5.574425 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 281 5.594425 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 282 5.614425 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 283 5.634412 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 284 5.654427 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 285 5.674427 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 286 5.694430 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 287 5.714414 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 288 5.734415 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 289 5.754434 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 290 5.774427 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 291 5.794432 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 292 5.814427 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 293 5.834434 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 294 5.854425 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 295 5.874417 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 296 5.894426 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 297 5.914429 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 298 5.934423 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 299 5.954432 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 300 5.974425 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 301 5.994430 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 302 6.014435 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 303 6.034428 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 304 6.054446 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 305 6.074431 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 306 6.094440 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 307 6.114434 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 308 6.134434 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 309 6.154437 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 310 6.174421 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 311 6.194433 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 312 6.214410 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 313 6.234432 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 314 6.254429 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 315 6.274417 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 316 6.294437 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 317 6.314429 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 318 6.334421 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 319 6.354431 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 320 6.374422 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 321 6.394420 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 322 6.414437 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 323 6.434434 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 324 6.454428 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 325 6.474430 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 326 6.494431 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 327 6.514418 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 328 6.534433 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 329 6.554436 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 330 6.574420 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 331 6.594442 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 332 6.614425 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 333 6.634431 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 334 6.654434 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 335 6.674447 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 336 6.694439 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 337 6.714561 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 338 6.734428 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 339 6.754426 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 340 6.774439 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 341 6.794427 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 342 6.814440 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 343 6.834424 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 344 6.854448 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 345 6.874440 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 346 6.894441 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 347 6.914445 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 348 6.934447 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 349 6.954451 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 350 6.974435 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 351 6.994432 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 352 7.014436 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 353 7.034440 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 354 7.054440 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 355 7.074424 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 356 7.094441 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 357 7.114442 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 358 7.134435 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 359 7.154437 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 360 7.174423 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 361 7.194436 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 362 7.214445 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 363 7.234445 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 364 7.254445 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 365 7.274436 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 366 7.294428 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 367 7.314435 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 368 7.334452 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 369 7.354445 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 370 7.374438 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 371 7.394444 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 372 7.414443 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 373 7.434447 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 374 7.454442 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 375 7.474446 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 376 7.494456 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 377 7.514446 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 378 7.534447 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 379 7.554448 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 380 7.574442 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 381 7.594447 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 382 7.614440 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 383 7.634460 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 384 7.654441 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 385 7.674446 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 386 7.694439 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 387 7.714468 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 388 7.734443 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 389 7.754445 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 390 7.774452 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 391 7.794455 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 392 7.814435 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 393 7.834441 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 394 7.854442 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 395 7.874454 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 396 7.894506 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 397 7.914448 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 398 7.934436 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 399 7.954442 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 400 7.974450 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 401 7.994448 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 402 8.014444 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 403 8.034445 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 404 8.054438 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 405 8.074432 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 406 8.094448 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 407 8.114451 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 408 8.134434 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 409 8.154447 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 410 8.174452 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 411 8.194446 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 412 8.214450 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 413 8.234430 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 414 8.254440 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 415 8.274455 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 416 8.294467 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 417 8.314448 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 418 8.334439 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 419 8.354444 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 420 8.374442 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 421 8.394453 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 422 8.414434 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 423 8.434438 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 424 8.454452 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 425 8.474449 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 426 8.494450 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 427 8.514444 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 428 8.534445 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 429 8.554459 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 430 8.574462 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 431 8.594460 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 432 8.614461 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 433 8.634467 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 434 8.654448 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 435 8.674493 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 436 8.694442 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 437 8.714451 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 438 8.734447 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 439 8.754452 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 440 8.774445 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 441 8.794451 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 442 8.814451 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 443 8.834453 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 444 8.854468 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 445 8.874460 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 446 8.894459 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 447 8.914455 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 448 8.934686 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 449 8.954460 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 450 8.974466 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 451 8.994453 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 452 9.014446 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 453 9.034455 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 454 9.054459 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 455 9.074461 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 456 9.094463 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 457 9.114459 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 458 9.134455 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 459 9.154465 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 460 9.174457 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 461 9.194459 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 462 9.214466 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 463 9.234453 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 464 9.254457 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 465 9.274449 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 466 9.294746 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 467 9.314451 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 468 9.334455 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 469 9.354453 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 470 9.374455 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 471 9.394470 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 472 9.414454 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 473 9.434468 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 474 9.454457 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 475 9.474452 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 476 9.494488 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 477 9.514465 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 478 9.534452 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 479 9.554468 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 480 9.574464 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 481 9.594456 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 482 9.614478 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 483 9.634452 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 484 9.654445 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 485 9.674458 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 486 9.694472 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 487 9.714450 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 488 9.734472 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 489 9.754463 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 490 9.774462 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 491 9.794496 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 492 9.814464 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 493 9.834486 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 494 9.854538 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 495 9.874502 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 496 9.894543 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 497 9.914491 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 498 9.934476 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 499 9.954499 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 500 9.974490 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 501 9.994478 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 502 10.014482 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 503 10.034478 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 504 10.054487 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 505 10.074484 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 506 10.094501 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 507 10.114481 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 508 10.134507 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 509 10.154499 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 510 10.174486 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 511 10.194492 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 512 10.214482 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 513 10.234482 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 514 10.254482 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 515 10.274488 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 516 10.294499 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 517 10.314500 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 518 10.334489 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 519 10.354508 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 520 10.374501 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 521 10.394498 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 522 10.414507 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 523 10.434511 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 524 10.454506 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 525 10.474516 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 526 10.494516 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 527 10.514522 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 528 10.534512 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 529 10.554516 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 530 10.574516 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 531 10.594528 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 532 10.614512 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 533 10.634501 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 534 10.654478 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 535 10.674511 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 536 10.694468 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 537 10.714480 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 538 10.734478 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 539 10.754518 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 540 10.774476 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 541 10.794476 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 542 10.814480 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 543 10.834483 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 544 10.854489 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 545 10.874481 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 546 10.894472 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 547 10.914514 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 548 10.934492 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 549 10.954490 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 550 10.974481 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 551 10.994497 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 552 11.014499 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 553 11.034496 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 554 11.054495 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 555 11.074490 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 556 11.094490 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 557 11.114483 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 558 11.134476 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 559 11.154496 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 560 11.174482 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 561 11.194499 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 562 11.214484 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 563 11.234501 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 564 11.254490 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 565 11.274478 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 566 11.294473 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 567 11.314474 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 568 11.334482 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 569 11.354492 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 570 11.374485 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 571 11.394488 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 572 11.414489 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 573 11.434480 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 574 11.454481 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 575 11.474490 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 576 11.494494 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 577 11.514492 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 578 11.534490 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 579 11.554492 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 580 11.574492 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 581 11.594500 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 582 11.614481 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 583 11.634485 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 584 11.654483 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 585 11.674499 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 586 11.694496 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 587 11.714496 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 588 11.734496 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 589 11.754488 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 590 11.774515 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 591 11.794503 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 592 11.814487 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 593 11.834482 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 594 11.854499 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 595 11.874514 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 596 11.894505 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 597 11.914479 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 598 11.934498 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 599 11.954494 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 600 11.974481 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 601 11.994524 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 602 12.014497 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 603 12.034500 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 604 12.054506 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 605 12.074495 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 606 12.094508 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 607 12.114501 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 608 12.134490 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 609 12.154491 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 610 12.174490 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 611 12.194493 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 612 12.214479 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 613 12.234488 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 614 12.254489 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 615 12.274481 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 616 12.294487 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 617 12.314492 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 618 12.334485 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 619 12.354488 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 620 12.374480 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 621 12.394490 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 622 12.414492 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 623 12.434497 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 624 12.454499 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 625 12.474503 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 626 12.494493 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 627 12.514502 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 628 12.534501 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 629 12.554513 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 630 12.574491 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 631 12.594501 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 632 12.614496 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 633 12.634501 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 634 12.654509 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 635 12.674491 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 636 12.694500 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 637 12.714493 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 638 12.734493 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 639 12.754507 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 640 12.774496 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 641 12.794498 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 642 12.814499 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 643 12.834507 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 644 12.854497 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 645 12.874489 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 646 12.894502 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 647 12.914491 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 648 12.934507 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 649 12.954504 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 650 12.974505 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 651 12.994564 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 652 13.014506 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 653 13.034499 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 654 13.054497 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 655 13.074505 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 656 13.094504 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 657 13.114499 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 658 13.134498 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 659 13.154501 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 660 13.174500 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 661 13.194508 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 662 13.214507 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 663 13.234503 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 664 13.254504 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 665 13.274504 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 666 13.294505 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 667 13.305910 172.16.31.253 → 172.16.31.155 RTSP 294 TEARDOWN rtsp://172.16.31.155/iprecorder/ RTSP/1.0 + 668 13.314487 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 669 13.334501 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 670 13.354492 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 671 13.374503 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 672 13.394503 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 673 13.414503 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 674 13.434509 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 675 13.454505 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 676 13.474510 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 677 13.494509 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 678 13.514505 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 679 13.534512 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 680 13.554492 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 681 13.574493 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 682 13.594511 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 683 13.614530 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 684 13.634527 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 685 13.654527 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 686 13.674511 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 687 13.694522 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 688 13.714519 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 689 13.734511 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 690 13.754529 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 691 13.774527 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 692 13.794525 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 693 13.814516 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 694 13.834521 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 695 13.854509 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 696 13.874513 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 697 13.894495 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 698 13.914518 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 699 13.934518 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 700 13.954515 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 701 13.974512 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 702 13.994503 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 703 14.014511 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 704 14.034515 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 705 14.054515 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 706 14.074508 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 707 14.094511 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 708 14.114504 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 709 14.134501 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 710 14.154509 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 711 14.174506 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 712 14.194506 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 713 14.214500 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 714 14.234519 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 715 14.254508 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 716 14.274520 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 717 14.294539 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 718 14.314522 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 719 14.334524 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 720 14.354524 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 721 14.374524 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 722 14.394517 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 723 14.414503 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 724 14.434504 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 725 14.454516 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 726 14.474515 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 727 14.494517 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 728 14.514517 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 729 14.534530 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 730 14.554502 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 731 14.574526 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 732 14.594501 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 733 14.614503 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 734 14.634519 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 735 14.654517 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 736 14.674516 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 737 14.694499 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 738 14.714524 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 739 14.734516 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 740 14.754536 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 741 14.774526 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 742 14.794502 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 743 14.814517 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 744 14.834524 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 745 14.854525 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 746 14.874525 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 747 14.894526 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 748 14.914534 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 749 14.934530 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 750 14.954529 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 751 14.974532 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 752 14.994532 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 753 15.014534 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 754 15.034534 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 755 15.054532 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 756 15.074523 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 757 15.094533 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 758 15.114555 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 759 15.134540 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 760 15.154536 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 761 15.174527 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 762 15.194537 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 763 15.214508 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 764 15.234524 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 765 15.254526 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 766 15.274523 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 767 15.294510 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 768 15.314522 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 769 15.334523 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 770 15.354521 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 + 771 15.374520 172.16.31.254 → 172.16.31.155 UDP 218 8192 → 8000 Len=176 diff --git a/tests/rtsp/rtsp-ed137_rtsp_udp_rtp/rtsp-ed137_rtsp_udp_rtp.description.txt b/tests/rtsp/rtsp-ed137_rtsp_udp_rtp/rtsp-ed137_rtsp_udp_rtp.description.txt new file mode 100644 index 0000000..a6924db --- /dev/null +++ b/tests/rtsp/rtsp-ed137_rtsp_udp_rtp/rtsp-ed137_rtsp_udp_rtp.description.txt @@ -0,0 +1,7 @@ +RTSP 1.0 with media in UDP + +172.16.31.253 is RTSP client, it's media are comming from 172.16.31.254 +172.16.31.155 is RTSP server + +Client transmits media in UDP. + diff --git a/tests/rtsp/rtsp-ed137_rtsp_udp_rtp/rtsp-ed137_rtsp_udp_rtp.pcapng.gz b/tests/rtsp/rtsp-ed137_rtsp_udp_rtp/rtsp-ed137_rtsp_udp_rtp.pcapng.gz new file mode 100644 index 0000000..a1090d4 Binary files /dev/null and b/tests/rtsp/rtsp-ed137_rtsp_udp_rtp/rtsp-ed137_rtsp_udp_rtp.pcapng.gz differ diff --git a/tests/rtsp/rtsp-ed137_rtsp_udp_rtp/rtsp-ed137_rtsp_udp_rtp.requirements.txt b/tests/rtsp/rtsp-ed137_rtsp_udp_rtp/rtsp-ed137_rtsp_udp_rtp.requirements.txt new file mode 100644 index 0000000..e6dc218 --- /dev/null +++ b/tests/rtsp/rtsp-ed137_rtsp_udp_rtp/rtsp-ed137_rtsp_udp_rtp.requirements.txt @@ -0,0 +1,2 @@ +Wireshark should decode RTP in UDP based on RTSP messages + diff --git a/tests/rtsp/rtsp-pipelining1/filter.xsl b/tests/rtsp/rtsp-pipelining1/filter.xsl new file mode 100644 index 0000000..ab18d32 --- /dev/null +++ b/tests/rtsp/rtsp-pipelining1/filter.xsl @@ -0,0 +1,5 @@ + + + + + diff --git a/tests/rtsp/rtsp-pipelining1/output/rtsp-pipelining1_2.2.pdml1 b/tests/rtsp/rtsp-pipelining1/output/rtsp-pipelining1_2.2.pdml1 new file mode 100644 index 0000000..99da6d5 --- /dev/null +++ b/tests/rtsp/rtsp-pipelining1/output/rtsp-pipelining1_2.2.pdml1 @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/rtsp/rtsp-pipelining1/output/rtsp-pipelining1_2.2.pdml2 b/tests/rtsp/rtsp-pipelining1/output/rtsp-pipelining1_2.2.pdml2 new file mode 100644 index 0000000..99da6d5 --- /dev/null +++ b/tests/rtsp/rtsp-pipelining1/output/rtsp-pipelining1_2.2.pdml2 @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/rtsp/rtsp-pipelining1/output/rtsp-pipelining1_2.2.text b/tests/rtsp/rtsp-pipelining1/output/rtsp-pipelining1_2.2.text new file mode 100644 index 0000000..e02b47c --- /dev/null +++ b/tests/rtsp/rtsp-pipelining1/output/rtsp-pipelining1_2.2.text @@ -0,0 +1,3 @@ + 1 0.000000000 172.16.31.65 → 172.16.127.80 RTSP 861 SETUP rtsp://172.16.127.80/iprecorder/ RTSP/1.0ANNOUNCE rtsp://172.16.127.80/iprecorder/ RTSP/1.0SETUP rtsp://172.16.127.80/iprecorder/ RTSP/1.0 + 2 0.025365007 172.16.127.80 → 172.16.31.65 RTSP 191 Reply: RTSP/1.0 200 OK + 3 0.083327504 172.16.127.80 → 172.16.31.65 RTSP 219 [TCP ACKed unseen segment] Reply: RTSP/1.0 200 OK diff --git a/tests/rtsp/rtsp-pipelining1/output/rtsp-pipelining1_2.4.text b/tests/rtsp/rtsp-pipelining1/output/rtsp-pipelining1_2.4.text new file mode 100644 index 0000000..3c6b208 --- /dev/null +++ b/tests/rtsp/rtsp-pipelining1/output/rtsp-pipelining1_2.4.text @@ -0,0 +1,3 @@ + 1 0.000000000 172.16.31.65 → 172.16.127.80 RTSP 861 SETUP rtsp://172.16.127.80/iprecorder/ RTSP/1.0ANNOUNCE rtsp://172.16.127.80/iprecorder/ RTSP/1.0SETUP rtsp://172.16.127.80/iprecorder/ RTSP/1.0 + 2 0.025365007 172.16.127.80 → 172.16.31.65 RTSP 191 Reply: RTSP/1.0 200 OK + 3 0.083327504 172.16.127.80 → 172.16.31.65 RTSP 219 [TCP ACKed unseen segment] Reply: RTSP/1.0 200 OKReply: RTSP/1.0 200 OK diff --git a/tests/rtsp/rtsp-pipelining1/rtsp-pipelining1.description.txt b/tests/rtsp/rtsp-pipelining1/rtsp-pipelining1.description.txt new file mode 100644 index 0000000..0d63ce9 --- /dev/null +++ b/tests/rtsp/rtsp-pipelining1/rtsp-pipelining1.description.txt @@ -0,0 +1,6 @@ +RTSP 1.0 with multiple messages in one packet. + +Traffic between client (172.16.31.65) and server (172.16.127.80). +Packet #1 contains multiple requests. +Packet #3 contains multiple responses. + diff --git a/tests/rtsp/rtsp-pipelining1/rtsp-pipelining1.pcapng.gz b/tests/rtsp/rtsp-pipelining1/rtsp-pipelining1.pcapng.gz new file mode 100644 index 0000000..9a98807 Binary files /dev/null and b/tests/rtsp/rtsp-pipelining1/rtsp-pipelining1.pcapng.gz differ diff --git a/tests/rtsp/rtsp-pipelining1/rtsp-pipelining1.requirements.txt b/tests/rtsp/rtsp-pipelining1/rtsp-pipelining1.requirements.txt new file mode 100644 index 0000000..e52b048 --- /dev/null +++ b/tests/rtsp/rtsp-pipelining1/rtsp-pipelining1.requirements.txt @@ -0,0 +1,4 @@ + +Packet #1 should be decoded as expected - 3 RTSP requests should be shown. +Packet #3 should be decoded as expected - 2 RTSP responses should be shown. + diff --git a/tests/rtsp/rtsp-pipelining2/filter.xsl b/tests/rtsp/rtsp-pipelining2/filter.xsl new file mode 100644 index 0000000..ab18d32 --- /dev/null +++ b/tests/rtsp/rtsp-pipelining2/filter.xsl @@ -0,0 +1,5 @@ + + + + + diff --git a/tests/rtsp/rtsp-pipelining2/output/rtsp-pipelining2_2.2.pdml1 b/tests/rtsp/rtsp-pipelining2/output/rtsp-pipelining2_2.2.pdml1 new file mode 100644 index 0000000..ebb7685 --- /dev/null +++ b/tests/rtsp/rtsp-pipelining2/output/rtsp-pipelining2_2.2.pdml1 @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/rtsp/rtsp-pipelining2/output/rtsp-pipelining2_2.2.pdml2 b/tests/rtsp/rtsp-pipelining2/output/rtsp-pipelining2_2.2.pdml2 new file mode 100644 index 0000000..ebb7685 --- /dev/null +++ b/tests/rtsp/rtsp-pipelining2/output/rtsp-pipelining2_2.2.pdml2 @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/rtsp/rtsp-pipelining2/output/rtsp-pipelining2_2.2.text b/tests/rtsp/rtsp-pipelining2/output/rtsp-pipelining2_2.2.text new file mode 100644 index 0000000..e02b47c --- /dev/null +++ b/tests/rtsp/rtsp-pipelining2/output/rtsp-pipelining2_2.2.text @@ -0,0 +1,3 @@ + 1 0.000000000 172.16.31.65 → 172.16.127.80 RTSP 861 SETUP rtsp://172.16.127.80/iprecorder/ RTSP/1.0ANNOUNCE rtsp://172.16.127.80/iprecorder/ RTSP/1.0SETUP rtsp://172.16.127.80/iprecorder/ RTSP/1.0 + 2 0.025365007 172.16.127.80 → 172.16.31.65 RTSP 191 Reply: RTSP/1.0 200 OK + 3 0.083327504 172.16.127.80 → 172.16.31.65 RTSP 219 [TCP ACKed unseen segment] Reply: RTSP/1.0 200 OK diff --git a/tests/rtsp/rtsp-pipelining2/output/rtsp-pipelining2_2.4.text b/tests/rtsp/rtsp-pipelining2/output/rtsp-pipelining2_2.4.text new file mode 100644 index 0000000..e02b47c --- /dev/null +++ b/tests/rtsp/rtsp-pipelining2/output/rtsp-pipelining2_2.4.text @@ -0,0 +1,3 @@ + 1 0.000000000 172.16.31.65 → 172.16.127.80 RTSP 861 SETUP rtsp://172.16.127.80/iprecorder/ RTSP/1.0ANNOUNCE rtsp://172.16.127.80/iprecorder/ RTSP/1.0SETUP rtsp://172.16.127.80/iprecorder/ RTSP/1.0 + 2 0.025365007 172.16.127.80 → 172.16.31.65 RTSP 191 Reply: RTSP/1.0 200 OK + 3 0.083327504 172.16.127.80 → 172.16.31.65 RTSP 219 [TCP ACKed unseen segment] Reply: RTSP/1.0 200 OK diff --git a/tests/rtsp/rtsp-pipelining2/rtsp-pipelining2.description.txt b/tests/rtsp/rtsp-pipelining2/rtsp-pipelining2.description.txt new file mode 100644 index 0000000..785c608 --- /dev/null +++ b/tests/rtsp/rtsp-pipelining2/rtsp-pipelining2.description.txt @@ -0,0 +1,8 @@ +RTSP 1.0 with multiple messages in one packet. + +Traffic between client (172.16.31.65) and server (172.16.127.80). +Packet #1 contains multiple requests. +Packet #3 contains one message and body with no Content-Type and Content-Length. + +Please note that body in #3 was created by manual modification of packet. It was created to test that dissector will handle it. + diff --git a/tests/rtsp/rtsp-pipelining2/rtsp-pipelining2.pcapng.gz b/tests/rtsp/rtsp-pipelining2/rtsp-pipelining2.pcapng.gz new file mode 100644 index 0000000..e242c6f Binary files /dev/null and b/tests/rtsp/rtsp-pipelining2/rtsp-pipelining2.pcapng.gz differ diff --git a/tests/rtsp/rtsp-pipelining2/rtsp-pipelining2.requirements.txt b/tests/rtsp/rtsp-pipelining2/rtsp-pipelining2.requirements.txt new file mode 100644 index 0000000..a73d316 --- /dev/null +++ b/tests/rtsp/rtsp-pipelining2/rtsp-pipelining2.requirements.txt @@ -0,0 +1,4 @@ + +Packet #1 should be decoded as expected - 3 RTSP requests should be shown. +Packet #3 should be decoded as expected - 1 RTSP response should be shown and generic data as body + diff --git a/tests/rtsp/rtsp-server_only_media/filter.xsl b/tests/rtsp/rtsp-server_only_media/filter.xsl new file mode 100644 index 0000000..ab18d32 --- /dev/null +++ b/tests/rtsp/rtsp-server_only_media/filter.xsl @@ -0,0 +1,5 @@ + + + + + diff --git a/tests/rtsp/rtsp-server_only_media/output/rtsp-server_only_media_2.2.pdml1 b/tests/rtsp/rtsp-server_only_media/output/rtsp-server_only_media_2.2.pdml1 new file mode 100644 index 0000000..a57b87e --- /dev/null +++ b/tests/rtsp/rtsp-server_only_media/output/rtsp-server_only_media_2.2.pdml1 @@ -0,0 +1,258 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/rtsp/rtsp-server_only_media/output/rtsp-server_only_media_2.2.pdml2 b/tests/rtsp/rtsp-server_only_media/output/rtsp-server_only_media_2.2.pdml2 new file mode 100644 index 0000000..a57b87e --- /dev/null +++ b/tests/rtsp/rtsp-server_only_media/output/rtsp-server_only_media_2.2.pdml2 @@ -0,0 +1,258 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/rtsp/rtsp-server_only_media/output/rtsp-server_only_media_2.2.text b/tests/rtsp/rtsp-server_only_media/output/rtsp-server_only_media_2.2.text new file mode 100644 index 0000000..2fa4ebf --- /dev/null +++ b/tests/rtsp/rtsp-server_only_media/output/rtsp-server_only_media_2.2.text @@ -0,0 +1,37 @@ + 1 0.000000000 172.16.31.65 → 172.16.127.80 TCP 74 44838 → 554 [SYN] Seq=0 Win=5840 Len=0 MSS=1460 SACK_PERM=1 TSval=4294900148 TSecr=0 WS=16 + 2 0.011379605 172.16.127.80 → 172.16.31.65 TCP 74 554 → 44838 [SYN, ACK] Seq=0 Ack=1 Win=14480 Len=0 MSS=1460 SACK_PERM=1 TSval=560456521 TSecr=4294900148 WS=128 + 3 0.011425198 172.16.31.65 → 172.16.127.80 TCP 66 44838 → 554 [ACK] Seq=1 Ack=1 Win=5840 Len=0 TSval=4294900151 TSecr=560456521 + 4 0.015556558 172.16.31.65 → 172.16.127.80 RTSP 213 OPTIONS * RTSP/1.0 + 5 0.026420790 172.16.127.80 → 172.16.31.65 TCP 66 554 → 44838 [ACK] Seq=1 Ack=148 Win=15616 Len=0 TSval=560456525 TSecr=4294900152 + 6 0.028239648 172.16.127.80 → 172.16.31.65 RTSP 162 Reply: RTSP/1.0 200 OK + 7 0.028287592 172.16.31.65 → 172.16.127.80 TCP 66 44838 → 554 [ACK] Seq=148 Ack=97 Win=5840 Len=0 TSval=4294900156 TSecr=560456525 + 8 0.170295155 172.16.31.65 → 172.16.127.80 RTSP/SDP 425 ANNOUNCE rtsp://172.16.127.80/iprecorder/ RTSP/1.0 + 9 0.190905639 172.16.127.80 → 172.16.31.65 RTSP 94 Reply: RTSP/1.0 200 OK + 10 0.191303536 172.16.31.65 → 172.16.127.80 RTSP 861 SETUP rtsp://172.16.127.80/iprecorder/ RTSP/1.0ANNOUNCE rtsp://172.16.127.80/iprecorder/ RTSP/1.0SETUP rtsp://172.16.127.80/iprecorder/ RTSP/1.0 + 11 0.216668543 172.16.127.80 → 172.16.31.65 RTSP 191 Reply: RTSP/1.0 200 OK + 12 0.245454283 172.16.31.65 → 172.16.127.80 RTSP 445 RECORD rtsp://172.16.127.80/iprecorder/ RTSP/1.0 + 13 0.268074022 172.16.31.66 → 172.16.127.80 UDP 60 8192 → 5000 Len=4[Malformed Packet] + 14 0.268584194 172.16.31.66 → 172.16.127.80 UDP 60 8192 → 5000 Len=4[Malformed Packet] + 15 0.268610639 172.16.31.66 → 172.16.127.80 UDP 60 8192 → 5000 Len=4[Malformed Packet] + 16 0.274631040 172.16.127.80 → 172.16.31.65 RTSP 219 Reply: RTSP/1.0 200 OK + 17 0.303819414 172.16.31.66 → 172.16.127.80 UDP 218 8192 → 5000 Len=176 + 18 0.311950901 172.16.31.65 → 172.16.127.80 TCP 66 44838 → 554 [ACK] Seq=1681 Ack=403 Win=6912 Len=0 TSval=4294900227 TSecr=560456583 + 19 0.321758277 172.16.31.65 → 172.16.127.80 RTSP 445 RECORD rtsp://172.16.127.80/iprecorder/ RTSP/1.0 + 20 0.323784395 172.16.31.66 → 172.16.127.80 UDP 218 8192 → 5000 Len=176 + 21 0.324494970 172.16.127.80 → 172.16.31.65 RTSP 132 Reply: RTSP/1.0 200 OK + 22 0.325106422 172.16.31.65 → 172.16.127.80 TCP 66 44838 → 554 [ACK] Seq=2060 Ack=469 Win=6912 Len=0 TSval=4294900230 TSecr=560456599 + 23 0.339825326 172.16.127.80 → 172.16.31.65 RTSP 132 Reply: RTSP/1.0 200 OK + 24 0.339866725 172.16.31.66 → 172.16.127.80 UDP 60 8194 → 5002 Len=4 + 25 0.340515491 172.16.31.65 → 172.16.127.80 TCP 66 44838 → 554 [ACK] Seq=2060 Ack=535 Win=6912 Len=0 TSval=4294900234 TSecr=560456603 + 26 0.375808852 172.16.31.66 → 172.16.127.80 UDP 218 8194 → 5002 Len=176 + 27 0.395812681 172.16.31.66 → 172.16.127.80 UDP 218 8194 → 5002 Len=176 + 28 0.415927622 172.16.31.66 → 172.16.127.80 UDP 218 8194 → 5002 Len=176 + 29 0.435861057 172.16.31.66 → 172.16.127.80 UDP 218 8194 → 5002 Len=176 + 30 30.398009567 172.16.31.65 → 172.16.127.80 RTSP 213 OPTIONS * RTSP/1.0 + 31 30.410345405 172.16.127.80 → 172.16.31.65 RTSP 162 Reply: RTSP/1.0 200 OK + 32 30.410388597 172.16.31.65 → 172.16.127.80 TCP 66 44838 → 554 [ACK] Seq=2207 Ack=631 Win=6912 Len=0 TSval=4294907752 TSecr=560464121 + 33 32.660093692 172.16.31.65 → 172.16.127.80 RTSP 444 PAUSE rtsp://172.16.127.80/iprecorder/ RTSP/1.0 + 34 32.674629953 172.16.127.80 → 172.16.31.65 RTSP 132 Reply: RTSP/1.0 200 OK + 35 32.674669848 172.16.31.65 → 172.16.127.80 RTSP 283 TEARDOWN rtsp://172.16.127.80/iprecorder/ RTSP/1.0 + 36 32.687153917 172.16.127.80 → 172.16.31.65 RTSP 132 Reply: RTSP/1.0 200 OK + 37 32.725370044 172.16.31.65 → 172.16.127.80 TCP 66 44838 → 554 [ACK] Seq=2802 Ack=763 Win=6912 Len=0 TSval=4294908331 TSecr=560464690 diff --git a/tests/rtsp/rtsp-server_only_media/output/rtsp-server_only_media_2.4.text b/tests/rtsp/rtsp-server_only_media/output/rtsp-server_only_media_2.4.text new file mode 100644 index 0000000..47b397c --- /dev/null +++ b/tests/rtsp/rtsp-server_only_media/output/rtsp-server_only_media_2.4.text @@ -0,0 +1,37 @@ + 1 0.000000000 172.16.31.65 → 172.16.127.80 TCP 74 44838 → 554 [SYN] Seq=0 Win=5840 Len=0 MSS=1460 SACK_PERM=1 TSval=4294900148 TSecr=0 WS=16 + 2 0.011379605 172.16.127.80 → 172.16.31.65 TCP 74 554 → 44838 [SYN, ACK] Seq=0 Ack=1 Win=14480 Len=0 MSS=1460 SACK_PERM=1 TSval=560456521 TSecr=4294900148 WS=128 + 3 0.011425198 172.16.31.65 → 172.16.127.80 TCP 66 44838 → 554 [ACK] Seq=1 Ack=1 Win=5840 Len=0 TSval=4294900151 TSecr=560456521 + 4 0.015556558 172.16.31.65 → 172.16.127.80 RTSP 213 OPTIONS * RTSP/1.0 + 5 0.026420790 172.16.127.80 → 172.16.31.65 TCP 66 554 → 44838 [ACK] Seq=1 Ack=148 Win=15616 Len=0 TSval=560456525 TSecr=4294900152 + 6 0.028239648 172.16.127.80 → 172.16.31.65 RTSP 162 Reply: RTSP/1.0 200 OK + 7 0.028287592 172.16.31.65 → 172.16.127.80 TCP 66 44838 → 554 [ACK] Seq=148 Ack=97 Win=5840 Len=0 TSval=4294900156 TSecr=560456525 + 8 0.170295155 172.16.31.65 → 172.16.127.80 RTSP/SDP 425 ANNOUNCE rtsp://172.16.127.80/iprecorder/ RTSP/1.0 + 9 0.190905639 172.16.127.80 → 172.16.31.65 RTSP 94 Reply: RTSP/1.0 200 OK + 10 0.191303536 172.16.31.65 → 172.16.127.80 RTSP 861 SETUP rtsp://172.16.127.80/iprecorder/ RTSP/1.0ANNOUNCE rtsp://172.16.127.80/iprecorder/ RTSP/1.0SETUP rtsp://172.16.127.80/iprecorder/ RTSP/1.0 + 11 0.216668543 172.16.127.80 → 172.16.31.65 RTSP 191 Reply: RTSP/1.0 200 OK + 12 0.245454283 172.16.31.65 → 172.16.127.80 RTSP/XML 445 RECORD rtsp://172.16.127.80/iprecorder/ RTSP/1.0 + 13 0.268074022 172.16.31.66 → 172.16.127.80 RTP 60 Unknown RTP version 0[Malformed Packet] + 14 0.268584194 172.16.31.66 → 172.16.127.80 RTP 60 Unknown RTP version 0[Malformed Packet] + 15 0.268610639 172.16.31.66 → 172.16.127.80 RTP 60 Unknown RTP version 0[Malformed Packet] + 16 0.274631040 172.16.127.80 → 172.16.31.65 RTSP 219 Reply: RTSP/1.0 200 OKReply: RTSP/1.0 200 OK + 17 0.303819414 172.16.31.66 → 172.16.127.80 RTP 218 PT=ITU-T G.711 PCMA, SSRC=0x48D0063E, Seq=0, Time=1860829185 + 18 0.311950901 172.16.31.65 → 172.16.127.80 TCP 66 44838 → 554 [ACK] Seq=1681 Ack=403 Win=6912 Len=0 TSval=4294900227 TSecr=560456583 + 19 0.321758277 172.16.31.65 → 172.16.127.80 RTSP/XML 445 RECORD rtsp://172.16.127.80/iprecorder/ RTSP/1.0 + 20 0.323784395 172.16.31.66 → 172.16.127.80 RTP 218 PT=ITU-T G.711 PCMA, SSRC=0x48D0063E, Seq=1, Time=1860829345 + 21 0.324494970 172.16.127.80 → 172.16.31.65 RTSP 132 Reply: RTSP/1.0 200 OK + 22 0.325106422 172.16.31.65 → 172.16.127.80 TCP 66 44838 → 554 [ACK] Seq=2060 Ack=469 Win=6912 Len=0 TSval=4294900230 TSecr=560456599 + 23 0.339825326 172.16.127.80 → 172.16.31.65 RTSP 132 Reply: RTSP/1.0 200 OK + 24 0.339866725 172.16.31.66 → 172.16.127.80 RTP 60 Unknown RTP version 0 + 25 0.340515491 172.16.31.65 → 172.16.127.80 TCP 66 44838 → 554 [ACK] Seq=2060 Ack=535 Win=6912 Len=0 TSval=4294900234 TSecr=560456603 + 26 0.375808852 172.16.31.66 → 172.16.127.80 RTP 218 PT=ITU-T G.711 PCMA, SSRC=0x4D3C3EA0, Seq=0, Time=1628635137 + 27 0.395812681 172.16.31.66 → 172.16.127.80 RTP 218 PT=ITU-T G.711 PCMA, SSRC=0x4D3C3EA0, Seq=1, Time=1628635297 + 28 0.415927622 172.16.31.66 → 172.16.127.80 RTP 218 PT=ITU-T G.711 PCMA, SSRC=0x4D3C3EA0, Seq=2, Time=1628635457 + 29 0.435861057 172.16.31.66 → 172.16.127.80 RTP 218 PT=ITU-T G.711 PCMA, SSRC=0x4D3C3EA0, Seq=3, Time=1628635617 + 30 30.398009567 172.16.31.65 → 172.16.127.80 RTSP 213 OPTIONS * RTSP/1.0 + 31 30.410345405 172.16.127.80 → 172.16.31.65 RTSP 162 Reply: RTSP/1.0 200 OK + 32 30.410388597 172.16.31.65 → 172.16.127.80 TCP 66 44838 → 554 [ACK] Seq=2207 Ack=631 Win=6912 Len=0 TSval=4294907752 TSecr=560464121 + 33 32.660093692 172.16.31.65 → 172.16.127.80 RTSP/XML 444 PAUSE rtsp://172.16.127.80/iprecorder/ RTSP/1.0 + 34 32.674629953 172.16.127.80 → 172.16.31.65 RTSP 132 Reply: RTSP/1.0 200 OK + 35 32.674669848 172.16.31.65 → 172.16.127.80 RTSP 283 TEARDOWN rtsp://172.16.127.80/iprecorder/ RTSP/1.0 + 36 32.687153917 172.16.127.80 → 172.16.31.65 RTSP 132 Reply: RTSP/1.0 200 OK + 37 32.725370044 172.16.31.65 → 172.16.127.80 TCP 66 44838 → 554 [ACK] Seq=2802 Ack=763 Win=6912 Len=0 TSval=4294908331 TSecr=560464690 diff --git a/tests/rtsp/rtsp-server_only_media/rtsp-server_only_media.description.txt b/tests/rtsp/rtsp-server_only_media/rtsp-server_only_media.description.txt new file mode 100644 index 0000000..d9c7911 --- /dev/null +++ b/tests/rtsp/rtsp-server_only_media/rtsp-server_only_media.description.txt @@ -0,0 +1,5 @@ +RTSP 1.0 with server_port only + +Traffic between client (172.16.31.65) and server (172.16.127.80). RTP media are transmitted from 172.16.31.66. +There are two sessions pipelined in one RTSP connection - server advertise different port for each of it. RTP media are captured for each session too. + diff --git a/tests/rtsp/rtsp-server_only_media/rtsp-server_only_media.pcapng.gz b/tests/rtsp/rtsp-server_only_media/rtsp-server_only_media.pcapng.gz new file mode 100644 index 0000000..5f9e4ad Binary files /dev/null and b/tests/rtsp/rtsp-server_only_media/rtsp-server_only_media.pcapng.gz differ diff --git a/tests/rtsp/rtsp-server_only_media/rtsp-server_only_media.requirements.txt b/tests/rtsp/rtsp-server_only_media/rtsp-server_only_media.requirements.txt new file mode 100644 index 0000000..afb82eb --- /dev/null +++ b/tests/rtsp/rtsp-server_only_media/rtsp-server_only_media.requirements.txt @@ -0,0 +1,3 @@ + +RTP packets should be decoded as RTP - port should be decoded from RTSP. + diff --git a/tests/wlan/siemens-iPCF-1/filter.xsl b/tests/wlan/siemens-iPCF-1/filter.xsl new file mode 100644 index 0000000..20e7fdf --- /dev/null +++ b/tests/wlan/siemens-iPCF-1/filter.xsl @@ -0,0 +1,5 @@ + + + + + diff --git a/tests/wlan/siemens-iPCF-1/output/siemens-iPCF-1_2.0.pdml1 b/tests/wlan/siemens-iPCF-1/output/siemens-iPCF-1_2.0.pdml1 new file mode 100644 index 0000000..64d473d --- /dev/null +++ b/tests/wlan/siemens-iPCF-1/output/siemens-iPCF-1_2.0.pdml1 @@ -0,0 +1,2799 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/wlan/siemens-iPCF-1/output/siemens-iPCF-1_2.0.pdml2 b/tests/wlan/siemens-iPCF-1/output/siemens-iPCF-1_2.0.pdml2 new file mode 100644 index 0000000..64d473d --- /dev/null +++ b/tests/wlan/siemens-iPCF-1/output/siemens-iPCF-1_2.0.pdml2 @@ -0,0 +1,2799 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/wlan/siemens-iPCF-1/output/siemens-iPCF-1_2.0.text b/tests/wlan/siemens-iPCF-1/output/siemens-iPCF-1_2.0.text new file mode 100644 index 0000000..aa275a1 --- /dev/null +++ b/tests/wlan/siemens-iPCF-1/output/siemens-iPCF-1_2.0.text @@ -0,0 +1,99 @@ + 1 0.000000 -> 802.11 82 Unrecognized (Reserved frame), Flags=......F.C + 2 0.000084 -> Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 3 0.000872 -> 802.11 1528 Unrecognized (Reserved frame), Flags=.......TC + 4 0.001813 -> 802.11 1528 Unrecognized (Reserved frame), Flags=....R..TC + 5 0.001894 -> Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 6 0.003688 -> 802.11 1528 Unrecognized (Reserved frame), Flags=......F.C + 7 0.003812 -> Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 8 0.003901 -> 802.11 82 Unrecognized (Reserved frame), Flags=.......TC + 9 0.004024 -> Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 10 0.006126 -> 802.11 82 Unrecognized (Reserved frame), Flags=......F.C + 11 0.006249 -> Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 12 0.008315 -> 802.11 1528 Unrecognized (Reserved frame), Flags=.......TC + 13 0.008433 -> Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 14 0.009650 -> 802.11 1528 Unrecognized (Reserved frame), Flags=......F.C + 15 0.009782 -> Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 16 0.009870 -> 802.11 82 Unrecognized (Reserved frame), Flags=.......TC + 17 0.010038 -> Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 18 0.012044 -> 802.11 82 Unrecognized (Reserved frame), Flags=......F.C + 19 0.012121 -> Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 20 0.012854 -> 802.11 1528 Unrecognized (Reserved frame), Flags=.......TC + 21 0.012979 -> Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 22 0.015065 -> 802.11 82 Unrecognized (Reserved frame), Flags=......F.C + 23 0.015195 -> Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 24 0.015279 -> 802.11 82 Unrecognized (Reserved frame), Flags=.......TC + 25 0.015407 -> Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 26 0.017690 -> 802.11 1528 Unrecognized (Reserved frame), Flags=......F.C + 27 0.017811 -> Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 28 0.017884 -> 802.11 82 Unrecognized (Reserved frame), Flags=.......TC + 29 0.018052 -> Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 30 0.020031 -> 802.11 82 Unrecognized (Reserved frame), Flags=......F.C + 31 0.020111 -> Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 32 0.020877 -> 802.11 1528 Unrecognized (Reserved frame), Flags=.......TC + 33 0.021003 -> Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 34 0.023639 -> 802.11 1528 Unrecognized (Reserved frame), Flags=......F.C + 35 0.023723 -> Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 36 0.023795 -> 802.11 82 Unrecognized (Reserved frame), Flags=.......TC + 37 0.023909 -> Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 38 0.026048 -> 802.11 82 Unrecognized (Reserved frame), Flags=......F.C + 39 0.026125 -> Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 40 0.026823 -> 802.11 1528 Unrecognized (Reserved frame), Flags=.......TC + 41 0.026913 -> Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 42 0.029710 -> 802.11 1528 Unrecognized (Reserved frame), Flags=......F.C + 43 0.029804 -> Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 44 0.029876 -> 802.11 82 Unrecognized (Reserved frame), Flags=.......TC + 45 0.029949 -> Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 46 0.032043 -> 802.11 82 Unrecognized (Reserved frame), Flags=......F.C + 47 0.032161 -> Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 48 0.032867 -> 802.11 1528 Unrecognized (Reserved frame), Flags=.......TC + 49 0.032950 -> Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 50 0.035694 -> 802.11 1528 Unrecognized (Reserved frame), Flags=......F.C + 51 0.035811 -> Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 52 0.035883 -> 802.11 82 Unrecognized (Reserved frame), Flags=.......TC + 53 0.035958 -> Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 54 0.038050 -> 802.11 82 Unrecognized (Reserved frame), Flags=......F.C + 55 0.038224 -> Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 56 0.038910 -> 802.11 1528 Unrecognized (Reserved frame), Flags=.......TC + 57 0.039029 -> Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 58 0.040077 -> Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 59 0.040154 -> 802.11 82 Unrecognized (Reserved frame), Flags=.......TC + 60 0.040276 -> Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 61 0.041680 -> 802.11 1528 Unrecognized (Reserved frame), Flags=......F.C + 62 0.041801 -> Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 63 0.041873 -> 802.11 82 Unrecognized (Reserved frame), Flags=.......TC + 64 0.041947 -> Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 65 0.044346 -> 802.11 82 Unrecognized (Reserved frame), Flags=......F.C + 66 0.044422 -> Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 67 0.045192 -> 802.11 1528 Unrecognized (Reserved frame), Flags=.......TC + 68 0.045273 -> Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 69 0.047668 -> 802.11 1528 Unrecognized (Reserved frame), Flags=......F.C + 70 0.047784 -> Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 71 0.047857 -> 802.11 82 Unrecognized (Reserved frame), Flags=.......TC + 72 0.047975 -> Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 73 0.049996 -> 802.11 82 Unrecognized (Reserved frame), Flags=......F.C + 74 0.050110 -> Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 75 0.050923 -> 802.11 1528 Unrecognized (Reserved frame), Flags=.......TC + 76 0.051062 -> Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 77 0.051197 -> 802.11 82 Unrecognized (Reserved frame), Flags=....R.F.C + 78 0.051306 -> Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 79 0.053710 -> 802.11 1528 Unrecognized (Reserved frame), Flags=......F.C + 80 0.053828 -> Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 81 0.053901 -> 802.11 82 Unrecognized (Reserved frame), Flags=.......TC + 82 0.054012 -> 802.11 82 Unrecognized (Reserved frame), Flags=....R..TC + 83 0.054129 -> Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 84 0.057100 -> 802.11 82 Unrecognized (Reserved frame), Flags=......F.C + 85 0.057183 -> Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 86 0.057990 -> 802.11 1528 Unrecognized (Reserved frame), Flags=.......TC + 87 0.059065 -> 802.11 1528 Unrecognized (Reserved frame), Flags=....R..TC + 88 0.059183 -> Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 89 0.061674 -> 802.11 1528 Unrecognized (Reserved frame), Flags=......F.C + 90 0.061767 -> Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 91 0.061842 -> 802.11 82 Unrecognized (Reserved frame), Flags=.......TC + 92 0.061961 -> Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 93 0.067818 -> 802.11 82 Unrecognized (Reserved frame), Flags=......F.C + 94 0.067896 -> Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 95 0.068647 -> 802.11 1528 Unrecognized (Reserved frame), Flags=.......TC + 96 0.068767 -> Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 97 0.070404 -> Broadcast (ff:ff:ff:ff:ff:ff) (BSSID) 802.11 55 DMG Beacon, Flags=......F.C, BI=32808[Malformed Packet] + 98 0.071821 -> 802.11 1528 Unrecognized (Reserved frame), Flags=......F.C + 99 0.071935 -> Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C diff --git a/tests/wlan/siemens-iPCF-1/output/siemens-iPCF-1_2.2.pdml1 b/tests/wlan/siemens-iPCF-1/output/siemens-iPCF-1_2.2.pdml1 new file mode 100644 index 0000000..e47f0b2 --- /dev/null +++ b/tests/wlan/siemens-iPCF-1/output/siemens-iPCF-1_2.2.pdml1 @@ -0,0 +1,2601 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/wlan/siemens-iPCF-1/output/siemens-iPCF-1_2.2.pdml2 b/tests/wlan/siemens-iPCF-1/output/siemens-iPCF-1_2.2.pdml2 new file mode 100644 index 0000000..e47f0b2 --- /dev/null +++ b/tests/wlan/siemens-iPCF-1/output/siemens-iPCF-1_2.2.pdml2 @@ -0,0 +1,2601 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/wlan/siemens-iPCF-1/output/siemens-iPCF-1_2.2.text b/tests/wlan/siemens-iPCF-1/output/siemens-iPCF-1_2.2.text new file mode 100644 index 0000000..8ab3215 --- /dev/null +++ b/tests/wlan/siemens-iPCF-1/output/siemens-iPCF-1_2.2.text @@ -0,0 +1,99 @@ + 1 0.000000 → 802.11 82 Unrecognized (Reserved frame), Flags=......F.C + 2 0.000084 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 3 0.000872 → 802.11 1528 Unrecognized (Reserved frame), Flags=.......TC + 4 0.001813 → 802.11 1528 Unrecognized (Reserved frame), Flags=....R..TC + 5 0.001894 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 6 0.003688 → 802.11 1528 Unrecognized (Reserved frame), Flags=......F.C + 7 0.003812 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 8 0.003901 → 802.11 82 Unrecognized (Reserved frame), Flags=.......TC + 9 0.004024 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 10 0.006126 → 802.11 82 Unrecognized (Reserved frame), Flags=......F.C + 11 0.006249 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 12 0.008315 → 802.11 1528 Unrecognized (Reserved frame), Flags=.......TC + 13 0.008433 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 14 0.009650 → 802.11 1528 Unrecognized (Reserved frame), Flags=......F.C + 15 0.009782 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 16 0.009870 → 802.11 82 Unrecognized (Reserved frame), Flags=.......TC + 17 0.010038 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 18 0.012044 → 802.11 82 Unrecognized (Reserved frame), Flags=......F.C + 19 0.012121 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 20 0.012854 → 802.11 1528 Unrecognized (Reserved frame), Flags=.......TC + 21 0.012979 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 22 0.015065 → 802.11 82 Unrecognized (Reserved frame), Flags=......F.C + 23 0.015195 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 24 0.015279 → 802.11 82 Unrecognized (Reserved frame), Flags=.......TC + 25 0.015407 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 26 0.017690 → 802.11 1528 Unrecognized (Reserved frame), Flags=......F.C + 27 0.017811 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 28 0.017884 → 802.11 82 Unrecognized (Reserved frame), Flags=.......TC + 29 0.018052 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 30 0.020031 → 802.11 82 Unrecognized (Reserved frame), Flags=......F.C + 31 0.020111 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 32 0.020877 → 802.11 1528 Unrecognized (Reserved frame), Flags=.......TC + 33 0.021003 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 34 0.023639 → 802.11 1528 Unrecognized (Reserved frame), Flags=......F.C + 35 0.023723 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 36 0.023795 → 802.11 82 Unrecognized (Reserved frame), Flags=.......TC + 37 0.023909 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 38 0.026048 → 802.11 82 Unrecognized (Reserved frame), Flags=......F.C + 39 0.026125 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 40 0.026823 → 802.11 1528 Unrecognized (Reserved frame), Flags=.......TC + 41 0.026913 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 42 0.029710 → 802.11 1528 Unrecognized (Reserved frame), Flags=......F.C + 43 0.029804 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 44 0.029876 → 802.11 82 Unrecognized (Reserved frame), Flags=.......TC + 45 0.029949 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 46 0.032043 → 802.11 82 Unrecognized (Reserved frame), Flags=......F.C + 47 0.032161 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 48 0.032867 → 802.11 1528 Unrecognized (Reserved frame), Flags=.......TC + 49 0.032950 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 50 0.035694 → 802.11 1528 Unrecognized (Reserved frame), Flags=......F.C + 51 0.035811 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 52 0.035883 → 802.11 82 Unrecognized (Reserved frame), Flags=.......TC + 53 0.035958 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 54 0.038050 → 802.11 82 Unrecognized (Reserved frame), Flags=......F.C + 55 0.038224 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 56 0.038910 → 802.11 1528 Unrecognized (Reserved frame), Flags=.......TC + 57 0.039029 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 58 0.040077 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 59 0.040154 → 802.11 82 Unrecognized (Reserved frame), Flags=.......TC + 60 0.040276 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 61 0.041680 → 802.11 1528 Unrecognized (Reserved frame), Flags=......F.C + 62 0.041801 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 63 0.041873 → 802.11 82 Unrecognized (Reserved frame), Flags=.......TC + 64 0.041947 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 65 0.044346 → 802.11 82 Unrecognized (Reserved frame), Flags=......F.C + 66 0.044422 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 67 0.045192 → 802.11 1528 Unrecognized (Reserved frame), Flags=.......TC + 68 0.045273 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 69 0.047668 → 802.11 1528 Unrecognized (Reserved frame), Flags=......F.C + 70 0.047784 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 71 0.047857 → 802.11 82 Unrecognized (Reserved frame), Flags=.......TC + 72 0.047975 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 73 0.049996 → 802.11 82 Unrecognized (Reserved frame), Flags=......F.C + 74 0.050110 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 75 0.050923 → 802.11 1528 Unrecognized (Reserved frame), Flags=.......TC + 76 0.051062 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 77 0.051197 → 802.11 82 Unrecognized (Reserved frame), Flags=....R.F.C + 78 0.051306 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 79 0.053710 → 802.11 1528 Unrecognized (Reserved frame), Flags=......F.C + 80 0.053828 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 81 0.053901 → 802.11 82 Unrecognized (Reserved frame), Flags=.......TC + 82 0.054012 → 802.11 82 Unrecognized (Reserved frame), Flags=....R..TC + 83 0.054129 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 84 0.057100 → 802.11 82 Unrecognized (Reserved frame), Flags=......F.C + 85 0.057183 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 86 0.057990 → 802.11 1528 Unrecognized (Reserved frame), Flags=.......TC + 87 0.059065 → 802.11 1528 Unrecognized (Reserved frame), Flags=....R..TC + 88 0.059183 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 89 0.061674 → 802.11 1528 Unrecognized (Reserved frame), Flags=......F.C + 90 0.061767 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 91 0.061842 → 802.11 82 Unrecognized (Reserved frame), Flags=.......TC + 92 0.061961 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 93 0.067818 → 802.11 82 Unrecognized (Reserved frame), Flags=......F.C + 94 0.067896 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 95 0.068647 → 802.11 1528 Unrecognized (Reserved frame), Flags=.......TC + 96 0.068767 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 97 0.070404 → Broadcast (ff:ff:ff:ff:ff:ff) (BSSID) 802.11 55 DMG Beacon, Flags=......F.C, BI=32808[Malformed Packet] + 98 0.071821 → 802.11 1528 Unrecognized (Reserved frame), Flags=......F.C + 99 0.071935 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C diff --git a/tests/wlan/siemens-iPCF-1/output/siemens-iPCF-1_2.3.pdml1 b/tests/wlan/siemens-iPCF-1/output/siemens-iPCF-1_2.3.pdml1 new file mode 100644 index 0000000..9b9f552 --- /dev/null +++ b/tests/wlan/siemens-iPCF-1/output/siemens-iPCF-1_2.3.pdml1 @@ -0,0 +1,3457 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/wlan/siemens-iPCF-1/output/siemens-iPCF-1_2.3.pdml2 b/tests/wlan/siemens-iPCF-1/output/siemens-iPCF-1_2.3.pdml2 new file mode 100644 index 0000000..9b9f552 --- /dev/null +++ b/tests/wlan/siemens-iPCF-1/output/siemens-iPCF-1_2.3.pdml2 @@ -0,0 +1,3457 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/wlan/siemens-iPCF-1/output/siemens-iPCF-1_2.3.text b/tests/wlan/siemens-iPCF-1/output/siemens-iPCF-1_2.3.text new file mode 100644 index 0000000..4c89097 --- /dev/null +++ b/tests/wlan/siemens-iPCF-1/output/siemens-iPCF-1_2.3.text @@ -0,0 +1,99 @@ + 1 0.000000 Siemens_3a:da:28 (00:1b:1b:3a:da:28) (TA) → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 82 Siemens iPCF, Flags=......F.C + 2 0.000084 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 3 0.000872 192.168.0.5 → 192.168.0.1 ICMP 1528 Echo (ping) request id=0x0aa0, seq=626/29186, ttl=64 + 4 0.001813 192.168.0.5 → 192.168.0.1 ICMP 1528 Echo (ping) request id=0x0aa0, seq=626/29186, ttl=64 + 5 0.001894 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 6 0.003688 192.168.0.1 → 192.168.0.5 ICMP 1528 Echo (ping) reply id=0x0aa0, seq=626/29186, ttl=255 (request in 4) + 7 0.003812 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 8 0.003901 Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (TA) → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 82 Siemens iPCF, Flags=.......TC + 9 0.004024 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 10 0.006126 Siemens_3a:da:28 (00:1b:1b:3a:da:28) (TA) → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 82 Siemens iPCF, Flags=......F.C + 11 0.006249 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 12 0.008315 192.168.0.5 → 192.168.0.1 ICMP 1528 Echo (ping) request id=0x0aa0, seq=627/29442, ttl=64 + 13 0.008433 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 14 0.009650 192.168.0.1 → 192.168.0.5 ICMP 1528 Echo (ping) reply id=0x0aa0, seq=627/29442, ttl=255 (request in 12) + 15 0.009782 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 16 0.009870 Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (TA) → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 82 Siemens iPCF, Flags=.......TC + 17 0.010038 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 18 0.012044 Siemens_3a:da:28 (00:1b:1b:3a:da:28) (TA) → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 82 Siemens iPCF, Flags=......F.C + 19 0.012121 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 20 0.012854 192.168.0.5 → 192.168.0.1 ICMP 1528 Echo (ping) request id=0x0aa0, seq=628/29698, ttl=64 + 21 0.012979 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 22 0.015065 Siemens_3a:da:28 (00:1b:1b:3a:da:28) (TA) → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 82 Siemens iPCF, Flags=......F.C + 23 0.015195 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 24 0.015279 Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (TA) → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 82 Siemens iPCF, Flags=.......TC + 25 0.015407 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 26 0.017690 192.168.0.1 → 192.168.0.5 ICMP 1528 Echo (ping) reply id=0x0aa0, seq=628/29698, ttl=255 (request in 20) + 27 0.017811 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 28 0.017884 Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (TA) → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 82 Siemens iPCF, Flags=.......TC + 29 0.018052 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 30 0.020031 Siemens_3a:da:28 (00:1b:1b:3a:da:28) (TA) → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 82 Siemens iPCF, Flags=......F.C + 31 0.020111 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 32 0.020877 192.168.0.5 → 192.168.0.1 ICMP 1528 Echo (ping) request id=0x0aa0, seq=629/29954, ttl=64 + 33 0.021003 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 34 0.023639 192.168.0.1 → 192.168.0.5 ICMP 1528 Echo (ping) reply id=0x0aa0, seq=629/29954, ttl=255 (request in 32) + 35 0.023723 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 36 0.023795 Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (TA) → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 82 Siemens iPCF, Flags=.......TC + 37 0.023909 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 38 0.026048 Siemens_3a:da:28 (00:1b:1b:3a:da:28) (TA) → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 82 Siemens iPCF, Flags=......F.C + 39 0.026125 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 40 0.026823 192.168.0.5 → 192.168.0.1 ICMP 1528 Echo (ping) request id=0x0aa0, seq=630/30210, ttl=64 + 41 0.026913 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 42 0.029710 192.168.0.1 → 192.168.0.5 ICMP 1528 Echo (ping) reply id=0x0aa0, seq=630/30210, ttl=255 (request in 40) + 43 0.029804 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 44 0.029876 Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (TA) → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 82 Siemens iPCF, Flags=.......TC + 45 0.029949 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 46 0.032043 Siemens_3a:da:28 (00:1b:1b:3a:da:28) (TA) → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 82 Siemens iPCF, Flags=......F.C + 47 0.032161 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 48 0.032867 192.168.0.5 → 192.168.0.1 ICMP 1528 Echo (ping) request id=0x0aa0, seq=631/30466, ttl=64 + 49 0.032950 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 50 0.035694 192.168.0.1 → 192.168.0.5 ICMP 1528 Echo (ping) reply id=0x0aa0, seq=631/30466, ttl=255 (request in 48) + 51 0.035811 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 52 0.035883 Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (TA) → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 82 Siemens iPCF, Flags=.......TC + 53 0.035958 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 54 0.038050 Siemens_3a:da:28 (00:1b:1b:3a:da:28) (TA) → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 82 Siemens iPCF, Flags=......F.C + 55 0.038224 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 56 0.038910 192.168.0.5 → 192.168.0.1 ICMP 1528 Echo (ping) request id=0x0aa0, seq=632/30722, ttl=64 + 57 0.039029 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 58 0.040077 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 59 0.040154 Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (TA) → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 82 Siemens iPCF, Flags=.......TC + 60 0.040276 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 61 0.041680 192.168.0.1 → 192.168.0.5 ICMP 1528 Echo (ping) reply id=0x0aa0, seq=632/30722, ttl=255 (request in 56) + 62 0.041801 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 63 0.041873 Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (TA) → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 82 Siemens iPCF, Flags=.......TC + 64 0.041947 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 65 0.044346 Siemens_3a:da:28 (00:1b:1b:3a:da:28) (TA) → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 82 Siemens iPCF, Flags=......F.C + 66 0.044422 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 67 0.045192 192.168.0.5 → 192.168.0.1 ICMP 1528 Echo (ping) request id=0x0aa0, seq=633/30978, ttl=64 + 68 0.045273 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 69 0.047668 192.168.0.1 → 192.168.0.5 ICMP 1528 Echo (ping) reply id=0x0aa0, seq=633/30978, ttl=255 (request in 67) + 70 0.047784 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 71 0.047857 Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (TA) → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 82 Siemens iPCF, Flags=.......TC + 72 0.047975 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 73 0.049996 Siemens_3a:da:28 (00:1b:1b:3a:da:28) (TA) → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 82 Siemens iPCF, Flags=......F.C + 74 0.050110 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 75 0.050923 192.168.0.5 → 192.168.0.1 ICMP 1528 Echo (ping) request id=0x0aa0, seq=634/31234, ttl=64 + 76 0.051062 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 77 0.051197 Siemens_3a:da:28 (00:1b:1b:3a:da:28) (TA) → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 82 Siemens iPCF, Flags=....R.F.C + 78 0.051306 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 79 0.053710 192.168.0.1 → 192.168.0.5 ICMP 1528 Echo (ping) reply id=0x0aa0, seq=634/31234, ttl=255 (request in 75) + 80 0.053828 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 81 0.053901 Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (TA) → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 82 Siemens iPCF, Flags=.......TC + 82 0.054012 Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (TA) → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 82 Siemens iPCF, Flags=....R..TC + 83 0.054129 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 84 0.057100 Siemens_3a:da:28 (00:1b:1b:3a:da:28) (TA) → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 82 Siemens iPCF, Flags=......F.C + 85 0.057183 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 86 0.057990 192.168.0.5 → 192.168.0.1 ICMP 1528 Echo (ping) request id=0x0aa0, seq=635/31490, ttl=64 + 87 0.059065 192.168.0.5 → 192.168.0.1 ICMP 1528 Echo (ping) request id=0x0aa0, seq=635/31490, ttl=64 + 88 0.059183 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 89 0.061674 192.168.0.1 → 192.168.0.5 ICMP 1528 Echo (ping) reply id=0x0aa0, seq=635/31490, ttl=255 (request in 87) + 90 0.061767 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 91 0.061842 Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (TA) → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 82 Siemens iPCF, Flags=.......TC + 92 0.061961 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 93 0.067818 Siemens_3a:da:28 (00:1b:1b:3a:da:28) (TA) → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 82 Siemens iPCF, Flags=......F.C + 94 0.067896 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 95 0.068647 192.168.0.5 → 192.168.0.1 ICMP 1528 Echo (ping) request id=0x0aa0, seq=636/31746, ttl=64 + 96 0.068767 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 97 0.070404 → Broadcast (ff:ff:ff:ff:ff:ff) (BSSID) 802.11 55 DMG Beacon, Flags=......F.C, BI=32808[Malformed Packet] + 98 0.071821 192.168.0.1 → 192.168.0.5 ICMP 1528 Echo (ping) reply id=0x0aa0, seq=636/31746, ttl=255 (request in 95) + 99 0.071935 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C diff --git a/tests/wlan/siemens-iPCF-1/output/siemens-iPCF-1_2.4.pdml1 b/tests/wlan/siemens-iPCF-1/output/siemens-iPCF-1_2.4.pdml1 new file mode 100644 index 0000000..e47f0b2 --- /dev/null +++ b/tests/wlan/siemens-iPCF-1/output/siemens-iPCF-1_2.4.pdml1 @@ -0,0 +1,2601 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/wlan/siemens-iPCF-1/output/siemens-iPCF-1_2.4.pdml2 b/tests/wlan/siemens-iPCF-1/output/siemens-iPCF-1_2.4.pdml2 new file mode 100644 index 0000000..e47f0b2 --- /dev/null +++ b/tests/wlan/siemens-iPCF-1/output/siemens-iPCF-1_2.4.pdml2 @@ -0,0 +1,2601 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/wlan/siemens-iPCF-1/output/siemens-iPCF-1_2.4.text b/tests/wlan/siemens-iPCF-1/output/siemens-iPCF-1_2.4.text new file mode 100644 index 0000000..8ab3215 --- /dev/null +++ b/tests/wlan/siemens-iPCF-1/output/siemens-iPCF-1_2.4.text @@ -0,0 +1,99 @@ + 1 0.000000 → 802.11 82 Unrecognized (Reserved frame), Flags=......F.C + 2 0.000084 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 3 0.000872 → 802.11 1528 Unrecognized (Reserved frame), Flags=.......TC + 4 0.001813 → 802.11 1528 Unrecognized (Reserved frame), Flags=....R..TC + 5 0.001894 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 6 0.003688 → 802.11 1528 Unrecognized (Reserved frame), Flags=......F.C + 7 0.003812 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 8 0.003901 → 802.11 82 Unrecognized (Reserved frame), Flags=.......TC + 9 0.004024 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 10 0.006126 → 802.11 82 Unrecognized (Reserved frame), Flags=......F.C + 11 0.006249 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 12 0.008315 → 802.11 1528 Unrecognized (Reserved frame), Flags=.......TC + 13 0.008433 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 14 0.009650 → 802.11 1528 Unrecognized (Reserved frame), Flags=......F.C + 15 0.009782 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 16 0.009870 → 802.11 82 Unrecognized (Reserved frame), Flags=.......TC + 17 0.010038 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 18 0.012044 → 802.11 82 Unrecognized (Reserved frame), Flags=......F.C + 19 0.012121 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 20 0.012854 → 802.11 1528 Unrecognized (Reserved frame), Flags=.......TC + 21 0.012979 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 22 0.015065 → 802.11 82 Unrecognized (Reserved frame), Flags=......F.C + 23 0.015195 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 24 0.015279 → 802.11 82 Unrecognized (Reserved frame), Flags=.......TC + 25 0.015407 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 26 0.017690 → 802.11 1528 Unrecognized (Reserved frame), Flags=......F.C + 27 0.017811 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 28 0.017884 → 802.11 82 Unrecognized (Reserved frame), Flags=.......TC + 29 0.018052 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 30 0.020031 → 802.11 82 Unrecognized (Reserved frame), Flags=......F.C + 31 0.020111 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 32 0.020877 → 802.11 1528 Unrecognized (Reserved frame), Flags=.......TC + 33 0.021003 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 34 0.023639 → 802.11 1528 Unrecognized (Reserved frame), Flags=......F.C + 35 0.023723 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 36 0.023795 → 802.11 82 Unrecognized (Reserved frame), Flags=.......TC + 37 0.023909 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 38 0.026048 → 802.11 82 Unrecognized (Reserved frame), Flags=......F.C + 39 0.026125 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 40 0.026823 → 802.11 1528 Unrecognized (Reserved frame), Flags=.......TC + 41 0.026913 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 42 0.029710 → 802.11 1528 Unrecognized (Reserved frame), Flags=......F.C + 43 0.029804 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 44 0.029876 → 802.11 82 Unrecognized (Reserved frame), Flags=.......TC + 45 0.029949 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 46 0.032043 → 802.11 82 Unrecognized (Reserved frame), Flags=......F.C + 47 0.032161 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 48 0.032867 → 802.11 1528 Unrecognized (Reserved frame), Flags=.......TC + 49 0.032950 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 50 0.035694 → 802.11 1528 Unrecognized (Reserved frame), Flags=......F.C + 51 0.035811 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 52 0.035883 → 802.11 82 Unrecognized (Reserved frame), Flags=.......TC + 53 0.035958 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 54 0.038050 → 802.11 82 Unrecognized (Reserved frame), Flags=......F.C + 55 0.038224 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 56 0.038910 → 802.11 1528 Unrecognized (Reserved frame), Flags=.......TC + 57 0.039029 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 58 0.040077 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 59 0.040154 → 802.11 82 Unrecognized (Reserved frame), Flags=.......TC + 60 0.040276 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 61 0.041680 → 802.11 1528 Unrecognized (Reserved frame), Flags=......F.C + 62 0.041801 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 63 0.041873 → 802.11 82 Unrecognized (Reserved frame), Flags=.......TC + 64 0.041947 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 65 0.044346 → 802.11 82 Unrecognized (Reserved frame), Flags=......F.C + 66 0.044422 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 67 0.045192 → 802.11 1528 Unrecognized (Reserved frame), Flags=.......TC + 68 0.045273 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 69 0.047668 → 802.11 1528 Unrecognized (Reserved frame), Flags=......F.C + 70 0.047784 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 71 0.047857 → 802.11 82 Unrecognized (Reserved frame), Flags=.......TC + 72 0.047975 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 73 0.049996 → 802.11 82 Unrecognized (Reserved frame), Flags=......F.C + 74 0.050110 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 75 0.050923 → 802.11 1528 Unrecognized (Reserved frame), Flags=.......TC + 76 0.051062 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 77 0.051197 → 802.11 82 Unrecognized (Reserved frame), Flags=....R.F.C + 78 0.051306 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 79 0.053710 → 802.11 1528 Unrecognized (Reserved frame), Flags=......F.C + 80 0.053828 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 81 0.053901 → 802.11 82 Unrecognized (Reserved frame), Flags=.......TC + 82 0.054012 → 802.11 82 Unrecognized (Reserved frame), Flags=....R..TC + 83 0.054129 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 84 0.057100 → 802.11 82 Unrecognized (Reserved frame), Flags=......F.C + 85 0.057183 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 86 0.057990 → 802.11 1528 Unrecognized (Reserved frame), Flags=.......TC + 87 0.059065 → 802.11 1528 Unrecognized (Reserved frame), Flags=....R..TC + 88 0.059183 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 89 0.061674 → 802.11 1528 Unrecognized (Reserved frame), Flags=......F.C + 90 0.061767 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 91 0.061842 → 802.11 82 Unrecognized (Reserved frame), Flags=.......TC + 92 0.061961 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 93 0.067818 → 802.11 82 Unrecognized (Reserved frame), Flags=......F.C + 94 0.067896 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C + 95 0.068647 → 802.11 1528 Unrecognized (Reserved frame), Flags=.......TC + 96 0.068767 → Siemens_92:ca:f0 (00:1b:1b:92:ca:f0) (RA) 802.11 39 Acknowledgement, Flags=........C + 97 0.070404 → Broadcast (ff:ff:ff:ff:ff:ff) (BSSID) 802.11 55 DMG Beacon, Flags=......F.C, BI=32808[Malformed Packet] + 98 0.071821 → 802.11 1528 Unrecognized (Reserved frame), Flags=......F.C + 99 0.071935 → Siemens_3a:da:28 (00:1b:1b:3a:da:28) (RA) 802.11 39 Acknowledgement, Flags=........C diff --git a/tests/wlan/siemens-iPCF-1/siemens-iPCF-1.description.txt b/tests/wlan/siemens-iPCF-1/siemens-iPCF-1.description.txt new file mode 100644 index 0000000..fc86fd8 --- /dev/null +++ b/tests/wlan/siemens-iPCF-1/siemens-iPCF-1.description.txt @@ -0,0 +1,20 @@ +Traffic carried by Siemens iPCF 802.11 wireless extension +iPCF = industrial Point Coordination Function +iPCF is used to carry PROFINET over wireless + +Capture contains ICMP (not PROFINET) as payload between 192.168.0.5 and 192.168.0.1. + +Address description: +notebook - 00:0f:b0:c1:78:7f - 192.168.0.5 +cisco switch (management port) - f4:7f:35:a7:74:40 - 192.168.0.1 +siemens AP (server-ap, BSSID) - 00:1b:1b:3a:da:28 (note: MAC address printed on device is 00:1b:1b:3a:da:20) +siemens AP (client-ap) - 00:1b:1b:92:ca:f0 + +Connection diagram: +notebook=src <-> client-ap <-> server-ap <-> siemens_sw <-> cisco_sw=dst +Note: siemens_sw is not visible + +Content of capture: +ICMP between notebook (src) and cisco switch management port (dst). 1392B is size of payload. +Capture contain all packet - ICMP over iPCF and all related confirmations etc. + diff --git a/tests/wlan/siemens-iPCF-1/siemens-iPCF-1.pcapng.gz b/tests/wlan/siemens-iPCF-1/siemens-iPCF-1.pcapng.gz new file mode 100644 index 0000000..42d88bd Binary files /dev/null and b/tests/wlan/siemens-iPCF-1/siemens-iPCF-1.pcapng.gz differ diff --git a/tests/wlan/siemens-iPCF-1/siemens-iPCF-1.requirements.txt b/tests/wlan/siemens-iPCF-1/siemens-iPCF-1.requirements.txt new file mode 100644 index 0000000..6cb43d0 --- /dev/null +++ b/tests/wlan/siemens-iPCF-1/siemens-iPCF-1.requirements.txt @@ -0,0 +1,7 @@ + +Wireshark should decode iPCF extension and decode the rest of packet as Ethernet frame +- iPCF headers should be incorporated into IEEE 802.11 element + +Problem: +- there is no description of iPCF items available + diff --git a/tests/wlan/siemens-iPCF-1/siemens-iPCF-1_all.pcapng.gz b/tests/wlan/siemens-iPCF-1/siemens-iPCF-1_all.pcapng.gz new file mode 100644 index 0000000..f88c623 Binary files /dev/null and b/tests/wlan/siemens-iPCF-1/siemens-iPCF-1_all.pcapng.gz differ