From e60f527d0b99c7e2ce840e413a1599e38055a97a Mon Sep 17 00:00:00 2001 From: yangwei Date: Tue, 22 Sep 2020 17:58:05 +0800 Subject: 🐎ci(gitignore): 增加gitignore文件 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..92487e8 --- /dev/null +++ b/.gitignore @@ -0,0 +1,9 @@ +*.o +*.a +tcpdump.1 +tcpdump +Makefile +version.c +config.h +config.log +config.status -- cgit v1.2.3 From dd465b375a46ed892a69621fdcdac8657973e5db Mon Sep 17 00:00:00 2001 From: yangwei Date: Tue, 22 Sep 2020 17:58:52 +0800 Subject: 🔧build(configure): configure文件增加可执行权限 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- configure | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 configure diff --git a/configure b/configure old mode 100644 new mode 100755 -- cgit v1.2.3 From 6429a20dd485d4a44f2cfa1fb169fb80e35b90f2 Mon Sep 17 00:00:00 2001 From: yangwei Date: Fri, 25 Sep 2020 21:29:54 +0800 Subject: 🎈perf(tcpdump.c): MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 优化greedy模式,放弃使用MESA_dump_seek_to_inner拷贝并构造虚拟的MAC头,使用pcap_compile_nopcap构造DLT_RAW类型的bpf,并调用MESA_net_jump_to_layer_greedy找到最内层IP地址直接使用cbpf进行匹配 --- .gitignore | 1 + tcpdump.c | 91 +++++++++++++++++++++++++++++++++++++++++++++++++++++++------- 2 files changed, 83 insertions(+), 9 deletions(-) diff --git a/.gitignore b/.gitignore index 92487e8..8a90ecf 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ version.c config.h config.log config.status +tcpdump_mesa diff --git a/tcpdump.c b/tcpdump.c index ae20036..4ab7a08 100644 --- a/tcpdump.c +++ b/tcpdump.c @@ -986,7 +986,7 @@ static int pkt_dump_recv_ack(int connfd) */ static void *detect_sapp_alive_thread(void *arg) { - int tcp_cmd_fd = (int)arg; + int tcp_cmd_fd = (int)(long)arg; int ret; char nouse_buf[1500]; @@ -1156,7 +1156,7 @@ static int MESA_dump_start(unsigned short udp_rcv_port, unsigned short sapp_cmd_ exit(1); } - pthread_create(&pid, NULL, detect_sapp_alive_thread, (void *)tcp_cmd_fd); + pthread_create(&pid, NULL, detect_sapp_alive_thread, (void *)(long)tcp_cmd_fd); return tcp_cmd_fd; } @@ -1272,6 +1272,7 @@ static void MESA_dump(pcap_handler callback, u_char *pcap_userdata, char *filter /* 如果有-g参数, 且写了-w, 即需要保存原始包到文件, 则不进行seek操作, 只是在没有-w 参数时, 让tcpdump能打印出包的信息, 才进行seek操作. */ + #if 0 if((greedy_seek_flag != 0) && (dump_to_file_flag == 0)){ inner_pkt_len = MESA_dump_seek_to_inner(pkt_buf, pkt_len); if(inner_pkt_len < 0){ @@ -1283,6 +1284,10 @@ static void MESA_dump(pcap_handler callback, u_char *pcap_userdata, char *filter phony_pcap_hdr.caplen = pkt_len; phony_pcap_hdr.len = pkt_len; } + #else + phony_pcap_hdr.caplen = pkt_len; + phony_pcap_hdr.len = pkt_len; + #endif gettimeofday(&phony_pcap_hdr.ts, NULL); callback(pcap_userdata, &phony_pcap_hdr, pkt_buf); /* NOTE: 刷屏模式调用print_packet(); 捕包模式调用: dump_packet() */ @@ -1305,7 +1310,6 @@ done: #endif static struct bpf_program fcode; /* lijia modify, 做为全局变量, 其他函数中调用 */ - int main(int argc, char **argv) { @@ -2274,6 +2278,15 @@ main(int argc, char **argv) if (pcap_setfilter(pd, &fcode) < 0) error("%s", pcap_geterr(pd)); } + else + { + pcap_freecode(&fcode); + if(pcap_compile_nopcap(Oflag, DLT_RAW, &fcode, cmdbuf, 0, netmask) < 0){ + printf("Compile pcap filter %s error\n", cmdbuf); + return -1; + } + } + #else if (pcap_setfilter(pd, &fcode) < 0) error("%s", pcap_geterr(pd)); @@ -2948,20 +2961,45 @@ dump_packet(u_char *user, const struct pcap_pkthdr *h, const u_char *sp) static void MESA_dump_packet(u_char *user, const struct pcap_pkthdr *h, const u_char *raw_pkt) { - char modify_pkt_buf[2048]; + //char modify_pkt_buf[2048]; int inner_pkt_len; ++packets_captured; ++infodelay; - memcpy(modify_pkt_buf, raw_pkt, h->caplen >= 2048? 2048:h->caplen); - inner_pkt_len = MESA_dump_seek_to_inner(modify_pkt_buf, h->caplen); - if(inner_pkt_len < 0){ - return; + //memcpy(modify_pkt_buf, raw_pkt, h->caplen >= 2048? 2048:h->caplen); + //inner_pkt_len = MESA_dump_seek_to_inner(modify_pkt_buf, h->caplen); + //if(inner_pkt_len < 0){ + // return; + //} + struct mesa_ip4_hdr *ip4hdr_greedy; + struct mesa_ip6_hdr *ip6hdr_greedy; + const unsigned char *inner_iphdr = NULL; + ip4hdr_greedy = (struct mesa_ip4_hdr *)MESA_net_jump_to_layer_greedy(raw_pkt, ADDR_TYPE_MAC, __ADDR_TYPE_IP_PAIR_V4); + if(ip4hdr_greedy) + { + inner_iphdr = (const unsigned char *)ip4hdr_greedy; + inner_pkt_len = h->caplen - ((const u_char *)ip4hdr_greedy - raw_pkt) ; + } + else + { + ip6hdr_greedy = (struct mesa_ip6_hdr *)MESA_net_jump_to_layer_greedy(raw_pkt, ADDR_TYPE_MAC, __ADDR_TYPE_IP_PAIR_V6); + if(ip6hdr_greedy) + { + inner_iphdr = (const unsigned char *)ip6hdr_greedy; + inner_pkt_len = h->caplen - ((const u_char *)ip6hdr_greedy - raw_pkt); + } + else + { + return; + } + } + + if(has_bpf_filter_flag != 0){ if(0 == bpf_filter(fcode.bf_insns, - (const unsigned char *)modify_pkt_buf, inner_pkt_len, inner_pkt_len)){ + (const unsigned char *)inner_iphdr, inner_pkt_len, inner_pkt_len)){ return; } } @@ -2999,6 +3037,7 @@ MESA_dump_print_packet(u_char *user, const struct pcap_pkthdr *h, const u_char * { int inner_pkt_len; +#if 0 /* 此函数仅用于tcpdump屏幕打印, 直接修改pkt原始包, 避免再copy一次, 节约点CPU */ inner_pkt_len = MESA_dump_seek_to_inner(pkt, h->caplen); if(inner_pkt_len < 0){ @@ -3015,7 +3054,41 @@ MESA_dump_print_packet(u_char *user, const struct pcap_pkthdr *h, const u_char * /* 改为新的修改后的数据包长度 */ ((struct pcap_pkthdr *)h)->caplen = (unsigned int)inner_pkt_len; ((struct pcap_pkthdr *)h)->len = (unsigned int)inner_pkt_len; +#else + struct mesa_ip4_hdr *ip4hdr_greedy; + struct mesa_ip6_hdr *ip6hdr_greedy; + const unsigned char *inner_iphdr = NULL; + ip4hdr_greedy = (struct mesa_ip4_hdr *)MESA_net_jump_to_layer_greedy(pkt, ADDR_TYPE_MAC, __ADDR_TYPE_IP_PAIR_V4); + if(ip4hdr_greedy) + { + inner_iphdr = (const unsigned char *)ip4hdr_greedy; + inner_pkt_len = h->caplen - ((const unsigned char *)ip4hdr_greedy - pkt); + } + else + { + ip6hdr_greedy = (struct mesa_ip6_hdr *)MESA_net_jump_to_layer_greedy(pkt, ADDR_TYPE_MAC, __ADDR_TYPE_IP_PAIR_V6); + if(ip6hdr_greedy) + { + inner_iphdr = (const unsigned char *)ip6hdr_greedy; + inner_pkt_len = h->caplen - ((const unsigned char *)ip6hdr_greedy - pkt); + } + else + { + return; + } + + } + + if (has_bpf_filter_flag != 0) + { + if (0 == bpf_filter(fcode.bf_insns, + (const unsigned char *)inner_iphdr, inner_pkt_len, inner_pkt_len)) + { + return; + } + } +#endif print_packet(user, h, pkt); } -- cgit v1.2.3 From 8a631fe724c0d095e6942cd8d24062ef117005a3 Mon Sep 17 00:00:00 2001 From: yangwei Date: Mon, 28 Sep 2020 12:00:28 +0800 Subject: ✨feat: 使用cmake编译,并支持自动版本号 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 12 +- CMakeLists.txt | 20 + autorelease.sh | 33 ++ autorevision.sh | 1268 +++++++++++++++++++++++++++++++++++++++++++++++ cmake/FindSYSTEMD.cmake | 39 ++ cmake/Package.cmake | 73 +++ cmake/Version.cmake | 49 ++ tcpdump.c | 9 +- 8 files changed, 1491 insertions(+), 12 deletions(-) create mode 100644 CMakeLists.txt create mode 100644 autorelease.sh create mode 100644 autorevision.sh create mode 100644 cmake/FindSYSTEMD.cmake create mode 100644 cmake/Package.cmake create mode 100644 cmake/Version.cmake diff --git a/.gitignore b/.gitignore index 8a90ecf..a60896e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,10 +1,2 @@ -*.o -*.a -tcpdump.1 -tcpdump -Makefile -version.c -config.h -config.log -config.status -tcpdump_mesa +build/ +version.txt \ No newline at end of file diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..156803f --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,20 @@ +cmake_minimum_required(VERSION 2.8) + +set(project_name tcpdump_mesa) + +project(${project_name}) + +set(CMAKE_INSTALL_PREFIX /opt/MESA/) + +set(CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake) +include(Version) + +set(CMAKE_MACOSX_RPATH 0) + +execute_process(COMMAND ../configure WORKING_DIRECTORY ${CMAKE_BINARY_DIR}) +execute_process(COMMAND make CFLAGS+=-DGIT_VERSION=\\"${GIT_VERSION}\\" WORKING_DIRECTORY ${CMAKE_BINARY_DIR}) + +# install the minidump tools to target binary dir +install(PROGRAMS ${CMAKE_BINARY_DIR}/tcpdump DESTINATION ./bin/tcpdump_mesa COMPONENT EXECUTABLE) + +include(Package) \ No newline at end of file diff --git a/autorelease.sh b/autorelease.sh new file mode 100644 index 0000000..0d85dd4 --- /dev/null +++ b/autorelease.sh @@ -0,0 +1,33 @@ +#!/bin/sh +if [ $# -lt 7 ] ; then + echo "USAGE: ./autorelease.sh [API_V4_URL] [PROJECT_URL] + [PROJECT_ID] [TOKEN] + [COMMIT_TAG] [JOB] [PROJECT_NAME] [COMMIT_REF_PROTECTED] [COMMIT_SHORT_SHA]" +exit 1; +fi + +CI_API_V4_URL=$1 +CI_PROJECT_URL=$2 +CI_PROJECT_ID=$3 +CI_TOKEN=$4 +CI_COMMIT_TAG=$5 +ARTIFACTS_JOB=$6 +CI_PROJECT_NAME=$7 +CI_COMMIT_SHORT_SHA=$8 + +res=`echo -e "curl --header \"PRIVATE-TOKEN: $CI_TOKEN\" $CI_API_V4_URL/projects/$CI_PROJECT_ID/releases/$CI_COMMIT_TAG -o /dev/null -s -w %{http_code}"| /bin/bash` + +if [[ $res == "200" ]]; then + eval $(echo -e "curl --request POST --header \"PRIVATE-TOKEN: $CI_TOKEN\" \ + --data name=\"$CI_PROJECT_NAME-$CI_COMMIT_TAG-$CI_COMMIT_SHORT_SHA-artifacts.zip\" \ + --data url=\"$CI_PROJECT_URL/-/jobs/artifacts/$CI_COMMIT_TAG/download?job=$ARTIFACTS_JOB\"\ + $CI_API_V4_URL/projects/$CI_PROJECT_ID/releases/$CI_COMMIT_TAG/assets/links") +else + eval $(echo -e "curl --header 'Content-Type: application/json' --header \ + \"PRIVATE-TOKEN: $CI_TOKEN\" --data '{ \"name\": \"$CI_COMMIT_TAG\", \ + \"tag_name\": \"$CI_COMMIT_TAG\", \"description\": \"auto_release\",\ + \"assets\": { \"links\": [{ \"name\": \ + \"$CI_PROJECT_NAME-$CI_COMMIT_TAG-$CI_COMMIT_SHORT_SHA-artifacts.zip\", \"url\": \ + \"$CI_PROJECT_URL/-/jobs/artifacts/$CI_COMMIT_TAG/download?job=$ARTIFACTS_JOB\"\ + }] } }' --request POST $CI_API_V4_URL/projects/$CI_PROJECT_ID/releases/") +fi diff --git a/autorevision.sh b/autorevision.sh new file mode 100644 index 0000000..3baa179 --- /dev/null +++ b/autorevision.sh @@ -0,0 +1,1268 @@ +#!/bin/sh + +# Copyright (c) 2012 - 2016 dak180 and contributors. See +# https://opensource.org/licenses/mit-license.php or the included +# COPYING.md for licence terms. +# +# autorevision - extracts metadata about the head version from your +# repository. + +# Usage message. +arUsage() { + cat > "/dev/stderr" << EOF +usage: autorevision {-t output-type | -s symbol} [-o cache-file [-f] ] [-V] + Options include: + -t output-type = specify output type + -s symbol = specify symbol output + -o cache-file = specify cache file location + -f = force the use of cache data + -U = check for untracked files in svn + -V = emit version and exit + -? = help message + +The following are valid output types: + clojure = clojure file + c = C/C++ file + h = Header for use with c/c++ + hpp = Alternate C++ header strings with namespace + ini = INI file + java = Java file + javaprop = Java properties file + js = javascript file + json = JSON file + lua = Lua file + m4 = m4 file + matlab = matlab file + octave = octave file + php = PHP file + pl = Perl file + py = Python file + rpm = rpm file + scheme = scheme file + sh = Bash sytax + swift = Swift file + tex = (La)TeX file + xcode = Header useful for populating info.plist files + cmake = CMake file + + +The following are valid symbols: + VCS_TYPE + VCS_BASENAME + VCS_UUID + VCS_NUM + VCS_DATE + VCS_BRANCH + VCS_TAG + VCS_TICK + VCS_EXTRA + VCS_FULL_HASH + VCS_SHORT_HASH + VCS_WC_MODIFIED + VCS_ACTION_STAMP +EOF + exit 1 +} + +# Config +ARVERSION="&&ARVERSION&&" +TARGETFILE="/dev/stdout" +while getopts ":t:o:s:VfU" OPTION; do + case "${OPTION}" in + t) + AFILETYPE="${OPTARG}" + ;; + o) + CACHEFILE="${OPTARG}" + ;; + f) + CACHEFORCE="1" + ;; + s) + VAROUT="${OPTARG}" + ;; + U) + UNTRACKEDFILES="1" + ;; + V) + echo "autorevision ${ARVERSION}" + exit 0 + ;; + ?) + # If an unknown flag is used (or -?): + arUsage + ;; + esac +done + +if [ ! -z "${VAROUT}" ] && [ ! -z "${AFILETYPE}" ]; then + # If both -s and -t are specified: + echo "error: Improper argument combination." 1>&2 + exit 1 +elif [ -z "${VAROUT}" ] && [ -z "${AFILETYPE}" ]; then + # If neither -s or -t are specified: + arUsage +elif [ -z "${CACHEFILE}" ] && [ "${CACHEFORCE}" = "1" ]; then + # If -f is specified without -o: + arUsage +elif [ ! -f "${CACHEFILE}" ] && [ "${CACHEFORCE}" = "1" ]; then + # If we are forced to use the cache but it does not exist. + echo "error: Cache forced but no cache found." 1>&2 + exit 1 +fi + +# Make sure that the path we are given is one we can source +# (dash, we are looking at you). +if [ ! -z "${CACHEFILE}" ] && ! echo "${CACHEFILE}" | grep -q '^\.*/'; then + CACHEFILE="./${CACHEFILE}" +fi + +GENERATED_HEADER="Generated by autorevision - do not hand-hack!" + +# Functions to extract data from different repo types. +# For git repos +# shellcheck disable=SC2039,SC2164,SC2155 +gitRepo() { + local oldPath="${PWD}" + + cd "$(git rev-parse --show-toplevel)" + + VCS_TYPE="git" + + VCS_BASENAME="$(basename "${PWD}")" + + VCS_UUID="$(git rev-list --max-parents=0 --date-order --reverse HEAD 2>/dev/null | sed -n 1p)" + if [ -z "${VCS_UUID}" ]; then + VCS_UUID="$(git rev-list --topo-order HEAD | tail -n 1)" + fi + + # Is the working copy clean? + test -z "$(git status --untracked-files=normal --porcelain)" + VCS_WC_MODIFIED="${?}" + + # Enumeration of changesets + VCS_NUM="$(git rev-list --count HEAD 2>/dev/null)" + if [ -z "${VCS_NUM}" ]; then + echo "warning: Counting the number of revisions may be slower due to an outdated git version less than 1.7.2.3. If something breaks, please update it." 1>&2 + VCS_NUM="$(git rev-list HEAD | wc -l)" + fi + + # This may be a git-svn remote. If so, report the Subversion revision. + if [ -z "$(git config svn-remote.svn.url 2>/dev/null)" ]; then + # The full revision hash + VCS_FULL_HASH="$(git rev-parse HEAD)" + + # The short hash + VCS_SHORT_HASH="$(echo "${VCS_FULL_HASH}" | cut -b 1-7)" + else + # The git-svn revision number + VCS_FULL_HASH="$(git svn find-rev HEAD)" + VCS_SHORT_HASH="${VCS_FULL_HASH}" + fi + + # Current branch + VCS_BRANCH="$(git rev-parse --symbolic-full-name --verify "$(git name-rev --name-only --no-undefined HEAD 2>/dev/null)" 2>/dev/null | sed -e 's:refs/heads/::' | sed -e 's:refs/::')" + + # Cache the description + local DESCRIPTION="$(git describe --long --tags 2>/dev/null)" + + # Current or last tag ancestor (empty if no tags) + VCS_TAG="$(echo "${DESCRIPTION}" | sed -e "s:-g${VCS_SHORT_HASH}\$::" -e 's:-[0-9]*$::')" + + # Distance to last tag or an alias of VCS_NUM if there is no tag + if [ ! -z "${DESCRIPTION}" ]; then + VCS_TICK="$(echo "${DESCRIPTION}" | sed -e "s:${VCS_TAG}-::" -e "s:-g${VCS_SHORT_HASH}::")" + else + VCS_TICK="${VCS_NUM}" + fi + + # Date of the current commit + VCS_DATE="$(TZ=UTC git show -s --date=iso-strict-local --pretty=format:%ad | sed -e 's|+00:00|Z|')" + if [ -z "${VCS_DATE}" ]; then + echo "warning: Action stamps require git version 2.7+." 1>&2 + VCS_DATE="$(git log -1 --pretty=format:%ci | sed -e 's: :T:' -e 's: ::' -e 's|+00:00|Z|')" + local ASdis="1" + fi + + # Action Stamp + if [ -z "${ASdis}" ]; then + VCS_ACTION_STAMP="${VCS_DATE}!$(git show -s --pretty=format:%cE)" + else + VCS_ACTION_STAMP="" + fi + + cd "${oldPath}" +} + +# For hg repos +# shellcheck disable=SC2039,SC2164 +hgRepo() { + local oldPath="${PWD}" + + cd "$(hg root)" + + VCS_TYPE="hg" + + VCS_BASENAME="$(basename "${PWD}")" + + VCS_UUID="$(hg log -r "0" -l 1 --template '{node}\n')" + + # Is the working copy clean? + test -z "$(hg status -duram)" + VCS_WC_MODIFIED="${?}" + + # Enumeration of changesets + VCS_NUM="$(hg id -n | tr -d '+')" + + # The full revision hash + VCS_FULL_HASH="$(hg log -r "${VCS_NUM}" -l 1 --template '{node}\n')" + + # The short hash + VCS_SHORT_HASH="$(hg id -i | tr -d '+')" + + # Current bookmark (bookmarks are roughly equivalent to git's branches) + # or branch if no bookmark + VCS_BRANCH="$(hg id -B | cut -d ' ' -f 1)" + # Fall back to the branch if there are no bookmarks + if [ -z "${VCS_BRANCH}" ]; then + VCS_BRANCH="$(hg id -b)" + fi + + # Current or last tag ancestor (excluding auto tags, empty if no tags) + VCS_TAG="$(hg log -r "${VCS_NUM}" -l 1 --template '{latesttag}\n' 2>/dev/null | sed -e 's:qtip::' -e 's:tip::' -e 's:qbase::' -e 's:qparent::' -e "s:$(hg --config 'extensions.color=' --config 'extensions.mq=' --color never qtop 2>/dev/null)::" | cut -d ' ' -f 1)" + + # Distance to last tag or an alias of VCS_NUM if there is no tag + if [ ! -z "${VCS_TAG}" ]; then + VCS_TICK="$(hg log -r "${VCS_NUM}" -l 1 --template '{latesttagdistance}\n' 2>/dev/null)" + else + VCS_TICK="${VCS_NUM}" + fi + + # Date of the current commit + VCS_DATE="$(hg log -r "${VCS_NUM}" -l 1 --template '{date|isodatesec}\n' 2>/dev/null | sed -e 's: :T:' -e 's: ::' -e 's|+00:00|Z|')" + + # Action Stamp + VCS_ACTION_STAMP="$(TZ=UTC hg log -r "${VCS_NUM}" -l 1 --template '{date|localdate|rfc3339date}\n' 2>/dev/null | sed -e 's|+00:00|Z|')!$(hg log -r "${VCS_NUM}" -l 1 --template '{author|email}\n' 2>/dev/null)" + + cd "${oldPath}" +} + +# For bzr repos +# shellcheck disable=SC2039,SC2164 +bzrRepo() { + local oldPath="${PWD}" + + cd "$(bzr root)" + + VCS_TYPE="bzr" + + VCS_BASENAME="$(basename "${PWD}")" + + # Currently unimplemented because more investigation is needed. + VCS_UUID="" + + # Is the working copy clean? + bzr version-info --custom --template='{clean}\n' | grep -q '1' + VCS_WC_MODIFIED="${?}" + + # Enumeration of changesets + VCS_NUM="$(bzr revno)" + + # The full revision hash + VCS_FULL_HASH="$(bzr version-info --custom --template='{revision_id}\n')" + + # The short hash + VCS_SHORT_HASH="${VCS_NUM}" + + # Nick of the current branch + VCS_BRANCH="$(bzr nick)" + + # Current or last tag ancestor (excluding auto tags, empty if no tags) + VCS_TAG="$(bzr tags --sort=time | sed '/?$/d' | tail -n1 | cut -d ' ' -f1)" + + # Distance to last tag or an alias of VCS_NUM if there is no tag + if [ ! -z "${VCS_TAG}" ]; then + VCS_TICK="$(bzr log --line -r "tag:${VCS_TAG}.." | tail -n +2 | wc -l | sed -e 's:^ *::')" + else + VCS_TICK="${VCS_NUM}" + fi + + # Date of the current commit + VCS_DATE="$(bzr version-info --custom --template='{date}\n' | sed -e 's: :T:' -e 's: ::')" + + # Action Stamp + # Currently unimplemented because more investigation is needed. + VCS_ACTION_STAMP="" + + cd "${oldPath}" +} + +# For svn repos +# shellcheck disable=SC2039,SC2164,SC2155 +svnRepo() { + local oldPath="${PWD}" + + VCS_TYPE="svn" + + case "${PWD}" in + /*trunk*|/*branches*|/*tags*) + local fn="${PWD}" + while [ "$(basename "${fn}")" != 'trunk' ] && [ "$(basename "${fn}")" != 'branches' ] && [ "$(basename "${fn}")" != 'tags' ] && [ "$(basename "${fn}")" != '/' ]; do + local fn="$(dirname "${fn}")" + done + local fn="$(dirname "${fn}")" + if [ "${fn}" = '/' ]; then + VCS_BASENAME="$(basename "${PWD}")" + else + VCS_BASENAME="$(basename "${fn}")" + fi + ;; + *) VCS_BASENAME="$(basename "${PWD}")" ;; + esac + + VCS_UUID="$(svn info --xml | sed -n -e 's:::' -e 's:::p')" + + # Cache svnversion output + local SVNVERSION="$(svnversion)" + + # Is the working copy clean? + echo "${SVNVERSION}" | grep -q "M" + case "${?}" in + 0) + VCS_WC_MODIFIED="1" + ;; + 1) + if [ ! -z "${UNTRACKEDFILES}" ]; then + # `svnversion` does not detect untracked files and `svn status` is really slow, so only run it if we really have to. + if [ -z "$(svn status)" ]; then + VCS_WC_MODIFIED="0" + else + VCS_WC_MODIFIED="1" + fi + else + VCS_WC_MODIFIED="0" + fi + ;; + esac + + # Enumeration of changesets + VCS_NUM="$(echo "${SVNVERSION}" | cut -d : -f 1 | sed -e 's:M::' -e 's:S::' -e 's:P::')" + + # The full revision hash + VCS_FULL_HASH="${SVNVERSION}" + + # The short hash + VCS_SHORT_HASH="${VCS_NUM}" + + # Current branch + case "${PWD}" in + /*trunk*|/*branches*|/*tags*) + local lastbase="" + local fn="${PWD}" + while : + do + base="$(basename "${fn}")" + if [ "${base}" = 'trunk' ]; then + VCS_BRANCH='trunk' + break + elif [ "${base}" = 'branches' ] || [ "${base}" = 'tags' ]; then + VCS_BRANCH="${lastbase}" + break + elif [ "${base}" = '/' ]; then + VCS_BRANCH="" + break + fi + local lastbase="${base}" + local fn="$(dirname "${fn}")" + done + ;; + *) VCS_BRANCH="" ;; + esac + + # Current or last tag ancestor (empty if no tags). But "current + # tag" can't be extracted reliably because Subversion doesn't + # have tags the way other VCSes do. + VCS_TAG="" + VCS_TICK="" + + # Date of the current commit + VCS_DATE="$(svn info --xml | sed -n -e 's:::' -e 's:::p')" + + # Action Stamp + VCS_ACTION_STAMP="${VCS_DATE}!$(svn log --xml -l 1 -r "${VCS_SHORT_HASH}" | sed -n -e 's:::' -e 's:::p')" + + cd "${oldPath}" +} + + +# Functions to output data in different formats. +# For bash output +shOutput() { + cat > "${TARGETFILE}" << EOF +# ${GENERATED_HEADER} + +VCS_TYPE="${VCS_TYPE}" +VCS_BASENAME="${VCS_BASENAME}" +VCS_UUID="${VCS_UUID}" +VCS_NUM="${VCS_NUM}" +VCS_DATE="${VCS_DATE}" +VCS_BRANCH="${VCS_BRANCH}" +VCS_TAG="${VCS_TAG}" +VCS_TICK="${VCS_TICK}" +VCS_EXTRA="${VCS_EXTRA}" + +VCS_ACTION_STAMP="${VCS_ACTION_STAMP}" +VCS_FULL_HASH="${VCS_FULL_HASH}" +VCS_SHORT_HASH="${VCS_SHORT_HASH}" + +VCS_WC_MODIFIED="${VCS_WC_MODIFIED}" + +# end +EOF +} + +# For source C output +cOutput() { + cat > "${TARGETFILE}" << EOF +/* ${GENERATED_HEADER} */ + +const char *VCS_TYPE = "${VCS_TYPE}"; +const char *VCS_BASENAME = "${VCS_BASENAME}"; +const char *VCS_UUID = "${VCS_UUID}"; +const int VCS_NUM = ${VCS_NUM}; +const char *VCS_DATE = "${VCS_DATE}"; +const char *VCS_BRANCH = "${VCS_BRANCH}"; +const char *VCS_TAG = "${VCS_TAG}"; +const int VCS_TICK = ${VCS_TICK}; +const char *VCS_EXTRA = "${VCS_EXTRA}"; + +const char *VCS_ACTION_STAMP = "${VCS_ACTION_STAMP}"; +const char *VCS_FULL_HASH = "${VCS_FULL_HASH}"; +const char *VCS_SHORT_HASH = "${VCS_SHORT_HASH}"; + +const int VCS_WC_MODIFIED = ${VCS_WC_MODIFIED}; + +/* end */ +EOF +} + +# For header output +hOutput() { + cat > "${TARGETFILE}" << EOF +/* ${GENERATED_HEADER} */ +#ifndef AUTOREVISION_H +#define AUTOREVISION_H + +#define VCS_TYPE "${VCS_TYPE}" +#define VCS_BASENAME "${VCS_BASENAME}" +#define VCS_UUID "${VCS_UUID}" +#define VCS_NUM ${VCS_NUM} +#define VCS_DATE "${VCS_DATE}" +#define VCS_BRANCH "${VCS_BRANCH}" +#define VCS_TAG "${VCS_TAG}" +#define VCS_TICK ${VCS_TICK} +#define VCS_EXTRA "${VCS_EXTRA}" + +#define VCS_ACTION_STAMP "${VCS_ACTION_STAMP}" +#define VCS_FULL_HASH "${VCS_FULL_HASH}" +#define VCS_SHORT_HASH "${VCS_SHORT_HASH}" + +#define VCS_WC_MODIFIED ${VCS_WC_MODIFIED} + +#endif + +/* end */ +EOF +} + +# A header output for use with xcode to populate info.plist strings +xcodeOutput() { + cat > "${TARGETFILE}" << EOF +/* ${GENERATED_HEADER} */ +#ifndef AUTOREVISION_H +#define AUTOREVISION_H + +#define VCS_TYPE ${VCS_TYPE} +#define VCS_BASENAME ${VCS_BASENAME} +#define VCS_UUID ${VCS_UUID} +#define VCS_NUM ${VCS_NUM} +#define VCS_DATE ${VCS_DATE} +#define VCS_BRANCH ${VCS_BRANCH} +#define VCS_TAG ${VCS_TAG} +#define VCS_TICK ${VCS_TICK} +#define VCS_EXTRA ${VCS_EXTRA} + +#define VCS_ACTION_STAMP ${VCS_ACTION_STAMP} +#define VCS_FULL_HASH ${VCS_FULL_HASH} +#define VCS_SHORT_HASH ${VCS_SHORT_HASH} + +#define VCS_WC_MODIFIED ${VCS_WC_MODIFIED} + +#endif + +/* end */ +EOF +} + +# For Swift output +swiftOutput() { + case "${VCS_WC_MODIFIED}" in + 0) VCS_WC_MODIFIED="false" ;; + 1) VCS_WC_MODIFIED="true" ;; + esac + # For values that may not exist depending on the type of repo we + # have read from, set them to `nil` when they are empty. + if [ -z "${VCS_UUID}" ]; then + VCS_UUID="nil" + else + VCS_UUID="\"${VCS_UUID}\"" + fi + if [ -z "${VCS_TAG}" ]; then + VCS_TAG="nil" + else + VCS_TAG="\"${VCS_TAG}\"" + fi + : "${VCS_TICK:="nil"}" + if [ -z "${VCS_EXTRA}" ]; then + VCS_EXTRA="nil" + else + VCS_EXTRA="\"${VCS_EXTRA}\"" + fi + if [ -z "${VCS_ACTION_STAMP}" ]; then + VCS_ACTION_STAMP="nil" + else + VCS_ACTION_STAMP="\"${VCS_ACTION_STAMP}\"" + fi + cat > "${TARGETFILE}" << EOF +/* ${GENERATED_HEADER} */ + +let VCS_TYPE = "${VCS_TYPE}" +let VCS_BASENAME = "${VCS_BASENAME}" +let VCS_UUID: String? = ${VCS_UUID} +let VCS_NUM: Int = ${VCS_NUM} +let VCS_DATE = "${VCS_DATE}" +let VCS_BRANCH: String = "${VCS_BRANCH}" +let VCS_TAG: String? = ${VCS_TAG} +let VCS_TICK: Int? = ${VCS_TICK} +let VCS_EXTRA: String? = ${VCS_EXTRA} + +let VCS_ACTION_STAMP: String? = ${VCS_ACTION_STAMP} +let VCS_FULL_HASH: String = "${VCS_FULL_HASH}" +let VCS_SHORT_HASH: String = "${VCS_SHORT_HASH}" + +let VCS_WC_MODIFIED: Bool = ${VCS_WC_MODIFIED} + +/* end */ +EOF +} + +# For Python output +pyOutput() { + case "${VCS_WC_MODIFIED}" in + 0) VCS_WC_MODIFIED="False" ;; + 1) VCS_WC_MODIFIED="True" ;; + esac + cat > "${TARGETFILE}" << EOF +# ${GENERATED_HEADER} + +VCS_TYPE = "${VCS_TYPE}" +VCS_BASENAME = "${VCS_BASENAME}" +VCS_UUID = "${VCS_UUID}" +VCS_NUM = ${VCS_NUM} +VCS_DATE = "${VCS_DATE}" +VCS_BRANCH = "${VCS_BRANCH}" +VCS_TAG = "${VCS_TAG}" +VCS_TICK = ${VCS_TICK} +VCS_EXTRA = "${VCS_EXTRA}" + +VCS_ACTION_STAMP = "${VCS_ACTION_STAMP}" +VCS_FULL_HASH = "${VCS_FULL_HASH}" +VCS_SHORT_HASH = "${VCS_SHORT_HASH}" + +VCS_WC_MODIFIED = ${VCS_WC_MODIFIED} + +# end +EOF +} + +# For Perl output +plOutput() { + cat << EOF +# ${GENERATED_HEADER} + +\$VCS_TYPE = '${VCS_TYPE}'; +\$VCS_BASENAME = '${VCS_BASENAME}'; +\$VCS_UUID = '${VCS_UUID}'; +\$VCS_NUM = ${VCS_NUM}; +\$VCS_DATE = '${VCS_DATE}'; +\$VCS_BRANCH = '${VCS_BRANCH}'; +\$VCS_TAG = '${VCS_TAG}'; +\$VCS_TICK = ${VCS_TICK}; +\$VCS_EXTRA = '${VCS_EXTRA}'; + +\$VCS_ACTION_STAMP = '${VCS_ACTION_STAMP}'; +\$VCS_FULL_HASH = '${VCS_FULL_HASH}'; +\$VCS_SHORT_HASH = '${VCS_SHORT_HASH}'; + +\$VCS_WC_MODIFIED = ${VCS_WC_MODIFIED}; + +# end +1; +EOF +} + +# For lua output +luaOutput() { + case "${VCS_WC_MODIFIED}" in + 0) VCS_WC_MODIFIED="false" ;; + 1) VCS_WC_MODIFIED="true" ;; + esac + cat > "${TARGETFILE}" << EOF +-- ${GENERATED_HEADER} + +VCS_TYPE = "${VCS_TYPE}" +VCS_BASENAME = "${VCS_BASENAME}" +VCS_UUID = "${VCS_UUID}" +VCS_NUM = ${VCS_NUM} +VCS_DATE = "${VCS_DATE}" +VCS_BRANCH = "${VCS_BRANCH}" +VCS_TAG = "${VCS_TAG}" +VCS_TICK = ${VCS_TICK} +VCS_EXTRA = "${VCS_EXTRA}" + +VCS_ACTION_STAMP = "${VCS_ACTION_STAMP}" +VCS_FULL_HASH = "${VCS_FULL_HASH}" +VCS_SHORT_HASH = "${VCS_SHORT_HASH}" + +VCS_WC_MODIFIED = ${VCS_WC_MODIFIED} + +-- end +EOF +} + +# For php output +phpOutput() { + case "${VCS_WC_MODIFIED}" in + 0) VCS_WC_MODIFIED="false" ;; + 1) VCS_WC_MODIFIED="true" ;; + esac + cat > "${TARGETFILE}" << EOF + "${VCS_TYPE}", + "VCS_BASENAME" => "${VCS_BASENAME}", + "VCS_UUID" => "${VCS_UUID}", + "VCS_NUM" => ${VCS_NUM}, + "VCS_DATE" => "${VCS_DATE}", + "VCS_BRANCH" => "${VCS_BRANCH}", + "VCS_TAG" => "${VCS_TAG}", + "VCS_TICK" => ${VCS_TICK}, + "VCS_EXTRA" => "${VCS_EXTRA}", + "VCS_ACTION_STAMP" => "${VCS_ACTION_STAMP}", + "VCS_FULL_HASH" => "${VCS_FULL_HASH}", + "VCS_SHORT_HASH" => "${VCS_SHORT_HASH}", + "VCS_WC_MODIFIED" => ${VCS_WC_MODIFIED} +); + +# end +?> +EOF +} + +# For ini output +iniOutput() { + case "${VCS_WC_MODIFIED}" in + 0) VCS_WC_MODIFIED="false" ;; + 1) VCS_WC_MODIFIED="true" ;; + esac + cat > "${TARGETFILE}" << EOF +; ${GENERATED_HEADER} +[VCS] +VCS_TYPE = "${VCS_TYPE}" +VCS_BASENAME = "${VCS_BASENAME}" +VCS_UUID = "${VCS_UUID}" +VCS_NUM = ${VCS_NUM} +VCS_DATE = "${VCS_DATE}" +VCS_BRANCH = "${VCS_BRANCH}" +VCS_TAG = "${VCS_TAG}" +VCS_TICK = ${VCS_TICK} +VCS_EXTRA = "${VCS_EXTRA}" +VCS_ACTION_STAMP = "${VCS_ACTION_STAMP}" +VCS_FULL_HASH = "${VCS_FULL_HASH}" +VCS_SHORT_HASH = "${VCS_SHORT_HASH}" +VCS_WC_MODIFIED = ${VCS_WC_MODIFIED} +; end +EOF +} + +# For javascript output +jsOutput() { + case "${VCS_WC_MODIFIED}" in + 1) VCS_WC_MODIFIED="true" ;; + 0) VCS_WC_MODIFIED="false" ;; + esac + cat > "${TARGETFILE}" << EOF +/** ${GENERATED_HEADER} */ + +var autorevision = { + VCS_TYPE: "${VCS_TYPE}", + VCS_BASENAME: "${VCS_BASENAME}", + VCS_UUID: "${VCS_UUID}", + VCS_NUM: ${VCS_NUM}, + VCS_DATE: "${VCS_DATE}", + VCS_BRANCH: "${VCS_BRANCH}", + VCS_TAG: "${VCS_TAG}", + VCS_TICK: ${VCS_TICK}, + VCS_EXTRA: "${VCS_EXTRA}", + + VCS_ACTION_STAMP: "${VCS_ACTION_STAMP}", + VCS_FULL_HASH: "${VCS_FULL_HASH}", + VCS_SHORT_HASH: "${VCS_SHORT_HASH}", + + VCS_WC_MODIFIED: ${VCS_WC_MODIFIED} +}; + +/** Node.js compatibility */ +if (typeof module !== 'undefined') { + module.exports = autorevision; +} + +/** end */ +EOF +} + +# For JSON output +jsonOutput() { + case "${VCS_WC_MODIFIED}" in + 1) VCS_WC_MODIFIED="true" ;; + 0) VCS_WC_MODIFIED="false" ;; + esac + cat > "${TARGETFILE}" << EOF +{ + "_comment": "${GENERATED_HEADER}", + "VCS_TYPE": "${VCS_TYPE}", + "VCS_BASENAME": "${VCS_BASENAME}", + "VCS_UUID": "${VCS_UUID}", + "VCS_NUM": ${VCS_NUM}, + "VCS_DATE": "${VCS_DATE}", + "VCS_BRANCH":"${VCS_BRANCH}", + "VCS_TAG": "${VCS_TAG}", + "VCS_TICK": ${VCS_TICK}, + "VCS_EXTRA": "${VCS_EXTRA}", + + "VCS_ACTION_STAMP": "${VCS_ACTION_STAMP}", + "VCS_FULL_HASH": "${VCS_FULL_HASH}", + "VCS_SHORT_HASH": "${VCS_SHORT_HASH}", + + "VCS_WC_MODIFIED": ${VCS_WC_MODIFIED} +} +EOF +} + +# For Java output +javaOutput() { + case "${VCS_WC_MODIFIED}" in + 1) VCS_WC_MODIFIED="true" ;; + 0) VCS_WC_MODIFIED="false" ;; + esac + cat > "${TARGETFILE}" << EOF +/* ${GENERATED_HEADER} */ + +public class autorevision { + public static final String VCS_TYPE = "${VCS_TYPE}"; + public static final String VCS_BASENAME = "${VCS_BASENAME}"; + public static final String VCS_UUID = "${VCS_UUID}"; + public static final long VCS_NUM = ${VCS_NUM}; + public static final String VCS_DATE = "${VCS_DATE}"; + public static final String VCS_BRANCH = "${VCS_BRANCH}"; + public static final String VCS_TAG = "${VCS_TAG}"; + public static final long VCS_TICK = ${VCS_TICK}; + public static final String VCS_EXTRA = "${VCS_EXTRA}"; + + public static final String VCS_ACTION_STAMP = "${VCS_ACTION_STAMP}"; + public static final String VCS_FULL_HASH = "${VCS_FULL_HASH}"; + public static final String VCS_SHORT_HASH = "${VCS_SHORT_HASH}"; + + public static final boolean VCS_WC_MODIFIED = ${VCS_WC_MODIFIED}; +} +EOF +} + +# For Java properties output +javapropOutput() { + case "${VCS_WC_MODIFIED}" in + 1) VCS_WC_MODIFIED="true" ;; + 0) VCS_WC_MODIFIED="false" ;; + esac + cat > "${TARGETFILE}" << EOF +# ${GENERATED_HEADER} + +VCS_TYPE=${VCS_TYPE} +VCS_BASENAME=${VCS_BASENAME} +VCS_UUID=${VCS_UUID} +VCS_NUM=${VCS_NUM} +VCS_DATE=${VCS_DATE} +VCS_BRANCH=${VCS_BRANCH} +VCS_TAG=${VCS_TAG} +VCS_TICK=${VCS_TICK} +VCS_EXTRA=${VCS_EXTRA} + +VCS_ACTION_STAMP=${VCS_ACTION_STAMP} +VCS_FULL_HASH=${VCS_FULL_HASH} +VCS_SHORT_HASH=${VCS_SHORT_HASH} + +VCS_WC_MODIFIED=${VCS_WC_MODIFIED} +EOF +} + +# For m4 output +m4Output() { + cat > "${TARGETFILE}" << EOF +dnl ${GENERATED_HEADER} +define(\`VCS_TYPE', \`${VCS_TYPE}')dnl +define(\`VCS_BASENAME', \`${VCS_BASENAME}')dnl +define(\`VCS_UUID', \`${VCS_UUID}')dnl +define(\`VCS_NUM', \`${VCS_NUM}')dnl +define(\`VCS_DATE', \`${VCS_DATE}')dnl +define(\`VCS_BRANCH', \`${VCS_BRANCH}')dnl +define(\`VCS_TAG', \`${VCS_TAG}')dnl +define(\`VCS_TICK', \`${VCS_TICK}')dnl +define(\`VCS_EXTRA', \`${VCS_EXTRA}')dnl +define(\`VCS_ACTIONSTAMP', \`${VCS_ACTION_STAMP}')dnl +define(\`VCS_FULLHASH', \`${VCS_FULL_HASH}')dnl +define(\`VCS_SHORTHASH', \`${VCS_SHORT_HASH}')dnl +define(\`VCS_WC_MODIFIED', \`${VCS_WC_MODIFIED}')dnl +EOF +} + +# For (La)TeX output +texOutput() { + case "${VCS_WC_MODIFIED}" in + 0) VCS_WC_MODIFIED="false" ;; + 1) VCS_WC_MODIFIED="true" ;; + esac + cat > "${TARGETFILE}" << EOF +% ${GENERATED_HEADER} +\def \vcsType {${VCS_TYPE}} +\def \vcsBasename {${VCS_BASENAME}} +\def \vcsUUID {${VCS_UUID}} +\def \vcsNum {${VCS_NUM}} +\def \vcsDate {${VCS_DATE}} +\def \vcsBranch {${VCS_BRANCH}} +\def \vcsTag {${VCS_TAG}} +\def \vcsTick {${VCS_TICK}} +\def \vcsExtra {${VCS_EXTRA}} +\def \vcsACTIONSTAMP {${VCS_ACTION_STAMP}} +\def \vcsFullHash {${VCS_FULL_HASH}} +\def \vcsShortHash {${VCS_SHORT_HASH}} +\def \vcsWCModified {${VCS_WC_MODIFIED}} +\endinput +EOF +} + +# For scheme output +schemeOutput() { + case "${VCS_WC_MODIFIED}" in + 0) VCS_WC_MODIFIED="#f" ;; + 1) VCS_WC_MODIFIED="#t" ;; + esac + cat > "${TARGETFILE}" << EOF +;; ${GENERATED_HEADER} +(define VCS_TYPE "${VCS_TYPE}") +(define VCS_BASENAME "${VCS_BASENAME}") +(define VCS_UUID "${VCS_UUID}") +(define VCS_NUM ${VCS_NUM}) +(define VCS_DATE "${VCS_DATE}") +(define VCS_BRANCH "${VCS_BRANCH}") +(define VCS_TAG "${VCS_TAG}") +(define VCS_TICK ${VCS_TICK}) +(define VCS_EXTRA "${VCS_EXTRA}") + +(define VCS_ACTION_STAMP "${VCS_ACTION_STAMP}") +(define VCS_FULL_HASH "${VCS_FULL_HASH}") +(define VCS_SHORT_HASH "${VCS_SHORT_HASH}") + +(define VCS_WC_MODIFIED ${VCS_WC_MODIFIED}) +;; end +EOF +} + +# For clojure output +clojureOutput() { + case "${VCS_WC_MODIFIED}" in + 0) VCS_WC_MODIFIED="false" ;; + 1) VCS_WC_MODIFIED="true" ;; + esac + cat > "${TARGETFILE}" << EOF +;; ${GENERATED_HEADER} +(def VCS_TYPE "${VCS_TYPE}") +(def VCS_BASENAME "${VCS_BASENAME}") +(def VCS_UUID "${VCS_UUID}") +(def VCS_NUM ${VCS_NUM}) +(def VCS_DATE "${VCS_DATE}") +(def VCS_BRANCH "${VCS_BRANCH}") +(def VCS_TAG "${VCS_TAG}") +(def VCS_TICK ${VCS_TICK}) +(def VCS_EXTRA "${VCS_EXTRA}") + +(def VCS_ACTION_STAMP "${VCS_ACTION_STAMP}") +(def VCS_FULL_HASH "${VCS_FULL_HASH}") +(def VCS_SHORT_HASH "${VCS_SHORT_HASH}") + +(def VCS_WC_MODIFIED ${VCS_WC_MODIFIED}) +;; end +EOF +} + +# For rpm spec file output +rpmOutput() { + cat > "${TARGETFILE}" << EOF +# ${GENERATED_HEADER} +$([ "${VCS_TYPE}" ] && echo "%define vcs_type ${VCS_TYPE}") +$([ "${VCS_BASENAME}" ] && echo "%define vcs_basename ${VCS_BASENAME}") +$([ "${VCS_UUID}" ] && echo "%define vcs_uuid ${VCS_UUID}") +$([ "${VCS_NUM}" ] && echo "%define vcs_num ${VCS_NUM}") +$([ "${VCS_DATE}" ] && echo "%define vcs_date ${VCS_DATE}") +$([ "${VCS_BRANCH}" ] && echo "%define vcs_branch ${VCS_BRANCH}") +$([ "${VCS_TAG}" ] && echo "%define vcs_tag ${VCS_TAG}") +$([ "${VCS_TICK}" ] && echo "%define vcs_tick ${VCS_TICK}") +$([ "${VCS_EXTRA}" ] && echo "%define vcs_extra ${VCS_EXTRA}") + +$([ "${VCS_ACTION_STAMP}" ] && echo "%define vcs_action_stamp ${VCS_ACTION_STAMP}") +$([ "${VCS_FULL_HASH}" ] && echo "%define vcs_full_hash ${VCS_FULL_HASH}") +$([ "${VCS_SHORT_HASH}" ] && echo "%define vcs_short_hash ${VCS_SHORT_HASH}") + +$([ "${VCS_WC_MODIFIED}" ] && echo "%define vcs_wc_modified ${VCS_WC_MODIFIED}") +# end +EOF +} + +# shellcheck disable=SC2155,SC2039 +hppOutput() { + local NAMESPACE="$(echo "${VCS_BASENAME}" | sed -e 's:_::g' | tr '[:lower:]' '[:upper:]')" + cat > "${TARGETFILE}" << EOF +/* ${GENERATED_HEADER} */ + +#ifndef ${NAMESPACE}_AUTOREVISION_H +#define ${NAMESPACE}_AUTOREVISION_H + +#include + +namespace $(echo "${NAMESPACE}" | tr '[:upper:]' '[:lower:]') +{ + const std::string VCS_TYPE = "${VCS_TYPE}"; + const std::string VCS_BASENAME = "${VCS_BASENAME}"; + const std::string VCS_UUID = "${VCS_UUID}"; + const int VCS_NUM = ${VCS_NUM}; + const std::string VCS_DATE = "${VCS_DATE}"; + const std::string VCS_BRANCH = "${VCS_BRANCH}"; + const std::string VCS_TAG = "${VCS_TAG}"; + const int VCS_TICK = ${VCS_TICK}; + const std::string VCS_EXTRA = "${VCS_EXTRA}"; + + const std::string VCS_ACTION_STAMP = "${VCS_ACTION_STAMP}"; + const std::string VCS_FULL_HASH = "${VCS_FULL_HASH}"; + const std::string VCS_SHORT_HASH = "${VCS_SHORT_HASH}"; + + const int VCS_WC_MODIFIED = ${VCS_WC_MODIFIED}; +} + +#endif + +/* end */ +EOF +} + +matlabOutput() { + case "${VCS_WC_MODIFIED}" in + 0) VCS_WC_MODIFIED="FALSE" ;; + 1) VCS_WC_MODIFIED="TRUE" ;; + esac + cat > "${TARGETFILE}" << EOF +% ${GENERATED_HEADER} + +VCS_TYPE = '${VCS_TYPE}'; +VCS_BASENAME = '${VCS_BASENAME}'; +VCS_UUID = '${VCS_UUID}'; +VCS_NUM = ${VCS_NUM}; +VCS_DATE = '${VCS_DATE}'; +VCS_BRANCH = '${VCS_BRANCH}'; +VCS_TAG = '${VCS_TAG}'; +VCS_TICK = ${VCS_TICK}; +VCS_EXTRA = '${VCS_EXTRA}'; + +VCS_ACTION_STAMP = '${VCS_ACTION_STAMP}'; +VCS_FULL_HASH = '${VCS_FULL_HASH}'; +VCS_SHORT_HASH = '${VCS_SHORT_HASH}'; + +VCS_WC_MODIFIED = ${VCS_WC_MODIFIED}; + +% end +EOF +} + +octaveOutput() { + cat > "${TARGETFILE}" << EOF +% ${GENERATED_HEADER} + +VCS_TYPE = '${VCS_TYPE}'; +VCS_BASENAME = '${VCS_BASENAME}'; +VCS_UUID = '${VCS_UUID}'; +VCS_NUM = ${VCS_NUM}; +VCS_DATE = '${VCS_DATE}'; +VCS_BRANCH = '${VCS_BRANCH}'; +VCS_TAG = '${VCS_TAG}'; +VCS_TICK = ${VCS_TICK}; +VCS_EXTRA = '${VCS_EXTRA}'; + +VCS_ACTION_STAMP = '${VCS_ACTION_STAMP}'; +VCS_FULL_HASH = '${VCS_FULL_HASH}'; +VCS_SHORT_HASH = '${VCS_SHORT_HASH}'; + +VCS_WC_MODIFIED = ${VCS_WC_MODIFIED}; + +% end +EOF +} + +cmakeOutput() { + cat > "${TARGETFILE}" << EOF +# ${GENERATED_HEADER} + +set(VCS_TYPE ${VCS_TYPE}) +set(VCS_BASENAME ${VCS_BASENAME}) +set(VCS_UUID ${VCS_UUID}) +set(VCS_NUM ${VCS_NUM}) +set(VCS_DATE ${VCS_DATE}) +set(VCS_BRANCH ${VCS_BRANCH}) +set(VCS_TAG ${VCS_TAG}) +set(VCS_TICK ${VCS_TICK}) +set(VCS_EXTRA ${VCS_EXTRA}) + +set(VCS_ACTION_STAMP ${VCS_ACTION_STAMP}) +set(VCS_FULL_HASH ${VCS_FULL_HASH}) +set(VCS_SHORT_HASH ${VCS_SHORT_HASH}) + +set(VCS_WC_MODIFIED ${VCS_WC_MODIFIED}) + +# end +EOF +} + + +# Helper functions +# Count path segments +# shellcheck disable=SC2039 +pathSegment() { + local pathz="${1}" + local depth="0" + + if [ ! -z "${pathz}" ]; then + # Continue until we are at / or there are no path separators left. + while [ ! "${pathz}" = "/" ] && [ ! "${pathz}" = "$(echo "${pathz}" | sed -e 's:/::')" ]; do + pathz="$(dirname "${pathz}")" + depth="$((depth+1))" + done + fi + echo "${depth}" +} + +# Largest of four numbers +# shellcheck disable=SC2039 +multiCompare() { + local larger="${1}" + local numA="${2}" + local numB="${3}" + local numC="${4}" + + [ "${numA}" -gt "${larger}" ] && larger="${numA}" + [ "${numB}" -gt "${larger}" ] && larger="${numB}" + [ "${numC}" -gt "${larger}" ] && larger="${numC}" + echo "${larger}" +} + +# Test for repositories +# shellcheck disable=SC2155,SC2039 +repoTest() { + REPONUM="0" + if [ ! -z "$(git rev-parse HEAD 2>/dev/null)" ]; then + local gitPath="$(git rev-parse --show-toplevel)" + local gitDepth="$(pathSegment "${gitPath}")" + REPONUM="$((REPONUM+1))" + else + local gitDepth="0" + fi + if [ ! -z "$(hg root 2>/dev/null)" ]; then + local hgPath="$(hg root 2>/dev/null)" + local hgDepth="$(pathSegment "${hgPath}")" + REPONUM="$((REPONUM+1))" + else + local hgDepth="0" + fi + if [ ! -z "$(bzr root 2>/dev/null)" ]; then + local bzrPath="$(bzr root 2>/dev/null)" + local bzrDepth="$(pathSegment "${bzrPath}")" + REPONUM="$((REPONUM+1))" + else + local bzrDepth="0" + fi + if [ ! -z "$(svn info 2>/dev/null)" ]; then + local stringz="" + local stringx="" + local svnPath="$(svn info --xml | sed -n -e "s:${stringz}::" -e "s:${stringx}::p")" + # An old enough svn will not be able give us a path; default + # to 1 for that case. + if [ -z "${svnPath}" ]; then + local svnDepth="1" + else + local svnDepth="$(pathSegment "${svnPath}")" + fi + REPONUM="$((REPONUM+1))" + else + local svnDepth="0" + fi + + # Do not do more work then we have to. + if [ "${REPONUM}" = "0" ]; then + return + fi + + # Figure out which repo is the deepest and use it. + local wonRepo="$(multiCompare "${gitDepth}" "${hgDepth}" "${bzrDepth}" "${svnDepth}")" + if [ "${wonRepo}" = "${gitDepth}" ]; then + gitRepo + elif [ "${wonRepo}" = "${hgDepth}" ]; then + hgRepo + elif [ "${wonRepo}" = "${bzrDepth}" ]; then + bzrRepo + elif [ "${wonRepo}" = "${svnDepth}" ]; then + svnRepo + fi +} + + + +# Detect which repos we are in and gather data. +# shellcheck source=/dev/null +if [ -f "${CACHEFILE}" ] && [ "${CACHEFORCE}" = "1" ]; then + # When requested only read from the cache to populate our symbols. + . "${CACHEFILE}" +else + # If a value is not set through the environment set VCS_EXTRA to nothing. + : "${VCS_EXTRA:=""}" + repoTest + + if [ -f "${CACHEFILE}" ] && [ "${REPONUM}" = "0" ]; then + # We are not in a repo; try to use a previously generated cache to populate our symbols. + . "${CACHEFILE}" + # Do not overwrite the cache if we know we are not going to write anything new. + CACHEFORCE="1" + elif [ "${REPONUM}" = "0" ]; then + echo "error: No repo or cache detected." 1>&2 + exit 1 + fi +fi + + +# -s output is handled here. +if [ ! -z "${VAROUT}" ]; then + if [ "${VAROUT}" = "VCS_TYPE" ]; then + echo "${VCS_TYPE}" + elif [ "${VAROUT}" = "VCS_BASENAME" ]; then + echo "${VCS_BASENAME}" + elif [ "${VAROUT}" = "VCS_NUM" ]; then + echo "${VCS_NUM}" + elif [ "${VAROUT}" = "VCS_DATE" ]; then + echo "${VCS_DATE}" + elif [ "${VAROUT}" = "VCS_BRANCH" ]; then + echo "${VCS_BRANCH}" + elif [ "${VAROUT}" = "VCS_TAG" ]; then + echo "${VCS_TAG}" + elif [ "${VAROUT}" = "VCS_TICK" ]; then + echo "${VCS_TICK}" + elif [ "${VAROUT}" = "VCS_FULL_HASH" ]; then + echo "${VCS_FULL_HASH}" + elif [ "${VAROUT}" = "VCS_SHORT_HASH" ]; then + echo "${VCS_SHORT_HASH}" + elif [ "${VAROUT}" = "VCS_WC_MODIFIED" ]; then + echo "${VCS_WC_MODIFIED}" + elif [ "${VAROUT}" = "VCS_ACTION_STAMP" ]; then + echo "${VCS_ACTION_STAMP}" + else + echo "error: Not a valid output symbol." 1>&2 + exit 1 + fi +fi + + +# Detect requested output type and use it. +if [ ! -z "${AFILETYPE}" ]; then + if [ "${AFILETYPE}" = "c" ]; then + cOutput + elif [ "${AFILETYPE}" = "h" ]; then + hOutput + elif [ "${AFILETYPE}" = "xcode" ]; then + xcodeOutput + elif [ "${AFILETYPE}" = "swift" ]; then + swiftOutput + elif [ "${AFILETYPE}" = "sh" ]; then + shOutput + elif [ "${AFILETYPE}" = "py" ] || [ "${AFILETYPE}" = "python" ]; then + pyOutput + elif [ "${AFILETYPE}" = "pl" ] || [ "${AFILETYPE}" = "perl" ]; then + plOutput + elif [ "${AFILETYPE}" = "lua" ]; then + luaOutput + elif [ "${AFILETYPE}" = "php" ]; then + phpOutput + elif [ "${AFILETYPE}" = "ini" ]; then + iniOutput + elif [ "${AFILETYPE}" = "js" ]; then + jsOutput + elif [ "${AFILETYPE}" = "json" ]; then + jsonOutput + elif [ "${AFILETYPE}" = "java" ]; then + javaOutput + elif [ "${AFILETYPE}" = "javaprop" ]; then + javapropOutput + elif [ "${AFILETYPE}" = "tex" ]; then + texOutput + elif [ "${AFILETYPE}" = "m4" ]; then + m4Output + elif [ "${AFILETYPE}" = "scheme" ]; then + schemeOutput + elif [ "${AFILETYPE}" = "clojure" ]; then + clojureOutput + elif [ "${AFILETYPE}" = "rpm" ]; then + rpmOutput + elif [ "${AFILETYPE}" = "hpp" ]; then + hppOutput + elif [ "${AFILETYPE}" = "matlab" ]; then + matlabOutput + elif [ "${AFILETYPE}" = "octave" ]; then + octaveOutput + elif [ "${AFILETYPE}" = "cmake" ]; then + cmakeOutput + else + echo "error: Not a valid output type." 1>&2 + exit 1 + fi +fi + + +# If requested, make a cache file. +if [ ! -z "${CACHEFILE}" ] && [ ! "${CACHEFORCE}" = "1" ]; then + TARGETFILE="${CACHEFILE}.tmp" + shOutput + + # Check to see if there have been any actual changes. + if [ ! -f "${CACHEFILE}" ]; then + mv -f "${CACHEFILE}.tmp" "${CACHEFILE}" + elif cmp -s "${CACHEFILE}.tmp" "${CACHEFILE}"; then + rm -f "${CACHEFILE}.tmp" + else + mv -f "${CACHEFILE}.tmp" "${CACHEFILE}" + fi +fi diff --git a/cmake/FindSYSTEMD.cmake b/cmake/FindSYSTEMD.cmake new file mode 100644 index 0000000..c7decde --- /dev/null +++ b/cmake/FindSYSTEMD.cmake @@ -0,0 +1,39 @@ +# - Find SystemdDaemon +# Find the systemd daemon library +# +# This module defines the following variables: +# SYSTEMD_FOUND - True if library and include directory are found +# If set to TRUE, the following are also defined: +# SYSTEMD_INCLUDE_DIRS - The directory where to find the header file +# SYSTEMD_LIBRARIES - Where to find the library file +# +# For conveniance, these variables are also set. They have the same values +# than the variables above. The user can thus choose his/her prefered way +# to write them. +# SYSTEMD_LIBRARY +# SYSTEMD_INCLUDE_DIR +# +# This file is in the public domain + +include(FindPkgConfig) +pkg_check_modules(SYSTEMD libsystemd) + +if(NOT SYSTEMD_FOUND) + find_path(SYSTEMD_INCLUDE_DIRS NAMES systemd/sd-daemon.h + DOC "The Systemd include directory") + + find_library(SYSTEMD_LIBRARIES NAMES systemd + DOC "The Systemd library") + + # Use some standard module to handle the QUIETLY and REQUIRED arguments, and + # set SYSTEMD_FOUND to TRUE if these two variables are set. + include(FindPackageHandleStandardArgs) + find_package_handle_standard_args(SYSTEMD REQUIRED_VARS SYSTEMD_LIBRARIES SYSTEMD_INCLUDE_DIRS) + + if(SYSTEMD_FOUND) + set(SYSTEMD_LIBRARY ${SYSTEMD_LIBRARIES}) + set(SYSTEMD_INCLUDE_DIR ${SYSTEMD_INCLUDE_DIRS}) + endif() +endif() + +mark_as_advanced(SYSTEMD_INCLUDE_DIRS SYSTEMD_LIBRARIES) \ No newline at end of file diff --git a/cmake/Package.cmake b/cmake/Package.cmake new file mode 100644 index 0000000..d51f373 --- /dev/null +++ b/cmake/Package.cmake @@ -0,0 +1,73 @@ +if(CMAKE_BUILD_TYPE STREQUAL "Debug") + set(MY_RPM_NAME_PREFIX "${project_name}-debug") +else() + set(MY_RPM_NAME_PREFIX "${project_name}") +endif() + +message(STATUS "Package: ${MY_RPM_NAME_PREFIX}") + +set(CPACK_PACKAGE_VECDOR "MESA") +set(CPACK_PACKAGE_VERSION_MAJOR "${VERSION_MAJOR}") +set(CPACK_PACKAGE_VERSION_MINOR "${VERSION_MINOR}") +set(CPACK_PACKAGE_VERSION_PATCH "${VERSION_PATCH}.${VERSION_BUILD}") +set(CPACK_PACKAGING_INSTALL_PREFIX ${CMAKE_INSTALL_PREFIX}) +set(CPACK_PACKAGE_VERSION "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}.${VERSION_BUILD}") +execute_process(COMMAND bash -c "echo -ne \"`uname -r | awk -F'.' '{print $5\".\"$6\".\"$7}'`\"" OUTPUT_VARIABLE SYSTEM_VERSION) + +# RPM Build +set(CPACK_GENERATOR "RPM") +set(CPACK_RPM_PACKAGE_VENDOR "MESA") +set(CPACK_RPM_PACKAGE_AUTOREQPROV "yes") +set(CPACK_RPM_PACKAGE_RELEASE_LIBRARY "on") +set(CPACK_RPM_DEBUGINFO_PACKAGE "on") +set(CPACK_RPM_PACKAGE_DEBUG 1) + +set(CPACK_RPM_COMPONENT_INSTALL ON) +set(CPACK_COMPONENTS_IGNORE_GROUPS 1) +set(CPACK_COMPONENTS_GROUPING ONE_PER_GROUP) +set(CPACK_COMPONENT_HEADER_DISPLAY_NAME "develop") + +set(CPACK_COMPONENT_EXECUTABLE_REQUIRED TRUE) +set(CPACK_RPM_EXECUTABLE_PACKAGE_NAME ${MY_RPM_NAME_PREFIX}) +set(CPACK_RPM_EXECUTABLE_FILE_NAME "${CPACK_RPM_EXECUTABLE_PACKAGE_NAME}-${CPACK_PACKAGE_VERSION}-${SYSTEM_VERSION}.rpm") +set(CPACK_RPM_EXECUTABLE_DEBUGINFO_FILE_NAME "${CPACK_RPM_EXECUTABLE_PACKAGE_NAME}-debuginfo-${CPACK_PACKAGE_VERSION}-${SYSTEM_VERSION}.rpm") + +set(CPACK_COMPONENT_EXECUTABLE_GROUP "executable") +set(CPACK_COMPONENT_LIBRARY_GROUP "executable") +set(CPACK_COMPONENT_PROFILE_GROUP "executable") + +set(CPACK_COMPONENT_HEADER_REQUIRED TRUE) +set(CPACK_RPM_HEADER_PACKAGE_NAME "${MY_RPM_NAME_PREFIX}-devel") +set(CPACK_RPM_HEADER_FILE_NAME "${CPACK_RPM_HEADER_PACKAGE_NAME}-${CPACK_PACKAGE_VERSION}-${SYSTEM_VERSION}.rpm") +set(CPACK_RPM_HEADER_DEBUGINFO_FILE_NAME "${CPACK_RPM_HEADER_PACKAGE_NAME}-debuginfo-${CPACK_PACKAGE_VERSION}-${SYSTEM_VERSION}.rpm") +set(CPACK_COMPONENT_HEADER_GROUP "header") + +set(CPACK_RPM_HEADER_PACKAGE_REQUIRES_PRE ${CPACK_RPM_LIBRARY_PACKAGE_NAME}) +set(CPACK_RPM_HEADER_PACKAGE_CONFLICTS ${CPACK_RPM_HEADER_PACKAGE_NAME}) + +set(CPACK_COMPONENTS_ALL LIBRARY HEADER EXECUTABLE PROFILE) + +set(CPACK_BUILD_SOURCE_DIRS "${CMAKE_SOURCE_DIR}") + +set(CPACK_RPM_PACKAGE_AUTOREQPROV "no") +set(CPACK_RPM_PACKAGE_AUTOREQ "no") + +# setup %config(noreplace) +set(CPACK_RPM_EXECUTABLE_USER_FILELIST "%config(noreplace) ${CMAKE_INSTALL_PREFIX}/etc/gdev.conf" + "%config(noreplace) ${CMAKE_INSTALL_PREFIX}/etc/sapp.toml" + "%config(noreplace) ${CMAKE_INSTALL_PREFIX}/etc/send_raw_pkt.conf" + "%config(noreplace) ${CMAKE_INSTALL_PREFIX}/etc/project_list.conf" + "%config(noreplace) ${CMAKE_INSTALL_PREFIX}/etc/plugin.conf" + "%config(noreplace) ${CMAKE_INSTALL_PREFIX}/etc/entrylist.conf" + "%config(noreplace) ${CMAKE_INSTALL_PREFIX}/plug/conflist.inf" + "%config(noreplace) ${CMAKE_INSTALL_PREFIX}/etc/gdev_block.conf" + "%config(noreplace) ${CMAKE_INSTALL_PREFIX}/etc/send_gdev.conf" + "%config(noreplace) ${CMAKE_INSTALL_PREFIX}/etc/send_route.conf") + +# Must uninstall the debug package before install release package +set(CPACK_RPM_PACKAGE_CONFLICTS ${MY_RPM_NAME_PREFIX}) + +# set(CPACK_STRIP_FILES TRUE) +include(CPack) + + diff --git a/cmake/Version.cmake b/cmake/Version.cmake new file mode 100644 index 0000000..b6fdab3 --- /dev/null +++ b/cmake/Version.cmake @@ -0,0 +1,49 @@ + +# Using autorevision.sh to generate version information + +set(__SOURCE_AUTORESIVISION ${CMAKE_SOURCE_DIR}/autorevision.sh) +set(__AUTORESIVISION ${CMAKE_BINARY_DIR}/autorevision.sh) +set(__VERSION_CACHE ${CMAKE_SOURCE_DIR}/version.txt) +set(__VERSION_CONFIG ${CMAKE_BINARY_DIR}/version.cmake) + +file(COPY ${__SOURCE_AUTORESIVISION} DESTINATION ${CMAKE_BINARY_DIR} + FILE_PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE + WORLD_READ WORLD_EXECUTE) + +# execute autorevision.sh to generate version information +execute_process(COMMAND ${__AUTORESIVISION} -t cmake -o ${__VERSION_CACHE} + OUTPUT_FILE ${__VERSION_CONFIG} ERROR_QUIET) +include(${__VERSION_CONFIG}) + +# extract major, minor, patch version from git tag +string(REGEX REPLACE "^v([0-9]+)\\..*" "\\1" VERSION_MAJOR "${VCS_TAG}") +string(REGEX REPLACE "^v[0-9]+\\.([0-9]+).*" "\\1" VERSION_MINOR "${VCS_TAG}") +string(REGEX REPLACE "^v[0-9]+\\.[0-9]+\\.([0-9]+).*" "\\1" VERSION_PATCH "${VCS_TAG}") + +if(NOT VERSION_MAJOR) + set(VERSION_MAJOR 1) +endif() + +if(NOT VERSION_MINOR) + set(VERSION_MINOR 0) +endif() + +if(NOT VERSION_PATCH) + set(VERSION_PATCH 0) +endif() + +set(VERSION "${VERSION_MAJOR}_${VERSION_MINOR}_${VERSION_PATCH}") +set(VERSION_BUILD "${VCS_SHORT_HASH}") + +# print information +message(STATUS "Version: ${VERSION}-${VERSION_BUILD}") + +option(DEFINE_GIT_VERSION "Set DEFINE_GIT_VERSION to TRUE or FALSE" TRUE) + +if(DEFINE_GIT_VERSION) + set(GIT_VERSION + "${VERSION}-${CMAKE_BUILD_TYPE}-${VERSION_BUILD}-${VCS_BRANCH}-${VCS_TAG}-${VCS_DATE}") + string(REGEX REPLACE "[-:+/\\.]" "_" GIT_VERSION ${GIT_VERSION}) + + add_definitions(-DGIT_VERSION=${GIT_VERSION}) +endif() diff --git a/tcpdump.c b/tcpdump.c index 4ab7a08..8029e28 100644 --- a/tcpdump.c +++ b/tcpdump.c @@ -44,7 +44,6 @@ #define MESA_DUMP (1) #if MESA_DUMP #include "mesa_pkt_dump.h" -const int tcpdump_mesa_version_VERSION_20181114 = 20181114; int tcpdump_data_offset = 0; /* 用于跳过某些底层数据, 如vxlan, 可以直接获取或设置过滤条件看vxlan的内层数据包内容 */ unsigned char tcpdump_thread_index_array[64]; /* 开启捕包线程id数组, 靠长度决定id数量, 每个占1字节, 命令行输入支持逗号分隔 */ int tcpdump_thread_index_array_num = 0; @@ -151,6 +150,12 @@ The Regents of the University of California. All rights reserved.\n"; #include "print.h" +#ifdef GIT_VERSION +const char *tcpdump_mesa_version = (const char *)GIT_VERSION; +#else +const char *tcpdump_mesa_version = "GIT_VERSION_UNKNOWN"; +#endif + #ifndef PATH_MAX #define PATH_MAX 1024 #endif @@ -3223,7 +3228,7 @@ print_usage(void) (void)fprintf(stderr, "----------------------------------------------------------------------------------------------.\n"); (void)fprintf(stderr, -"\t\tThe follow args is customized for tcpdump_mesa(%d):\n", tcpdump_mesa_version_VERSION_20181114); +"\t\tThe follow args is customized for tcpdump_mesa(%s):\n", tcpdump_mesa_version); (void)fprintf(stderr, "\t\t[ -a ] enable perceptive mode, can detect loss packet number.\n"); (void)fprintf(stderr, -- cgit v1.2.3 From 9b2c5038b1beab7ccdfd6a8c69d34834ef8e7958 Mon Sep 17 00:00:00 2001 From: yangwei Date: Mon, 28 Sep 2020 14:13:26 +0800 Subject: 🌈style: 调整目录组织,tcpdump源代码放入src目录 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 2 +- CHANGES | 1168 --- CMakeLists.txt | 6 +- CREDITS | 234 - INSTALL.txt | 214 - LICENSE | 19 - Makefile-devel-adds | 22 - Makefile.in | 454 - README.md | 243 - Readme.Win32 | 24 - VERSION | 1 - aclocal.m4 | 1360 --- addrtoname.c | 1271 --- addrtoname.h | 61 - addrtostr.c | 199 - addrtostr.h | 42 - af.c | 58 - af.h | 55 - ah.h | 57 - appletalk.h | 166 - ascii_strcasecmp.c | 105 - ascii_strcasecmp.h | 33 - atime.awk | 18 - atm.h | 31 - bpf_dump.c | 61 - chdlc.h | 26 - checksum.c | 189 - .../.cmake/api/v1/query/client-vscode/query.json | 1 + .../v1/reply/cache-v2-d6be4d7a072d5438b4cc.json | 1275 +++ .../reply/codemodel-v2-26d6a3e73bd6e837eafc.json | 43 + .../v1/reply/index-2020-09-28T06-04-53-0037.json | 88 + cmake-build-debug/CMakeCache.txt | 400 + .../CMakeFiles/3.17.3/CMakeCCompiler.cmake | 76 + .../CMakeFiles/3.17.3/CMakeCXXCompiler.cmake | 88 + .../3.17.3/CMakeDetermineCompilerABI_C.bin | Bin 0 -> 8552 bytes .../3.17.3/CMakeDetermineCompilerABI_CXX.bin | Bin 0 -> 8560 bytes .../CMakeFiles/3.17.3/CMakeSystem.cmake | 15 + .../3.17.3/CompilerIdC/CMakeCCompilerId.c | 671 ++ .../CMakeFiles/3.17.3/CompilerIdC/a.out | Bin 0 -> 8712 bytes .../3.17.3/CompilerIdCXX/CMakeCXXCompilerId.cpp | 660 ++ .../CMakeFiles/3.17.3/CompilerIdCXX/a.out | Bin 0 -> 8720 bytes .../CMakeFiles/CMakeDirectoryInformation.cmake | 16 + cmake-build-debug/CMakeFiles/CMakeOutput.log | 498 + cmake-build-debug/CMakeFiles/Makefile.cmake | 129 + cmake-build-debug/CMakeFiles/Makefile2 | 99 + cmake-build-debug/CMakeFiles/TargetDirectories.txt | 8 + cmake-build-debug/CMakeFiles/cmake.check_cache | 1 + cmake-build-debug/CMakeFiles/feature_tests.bin | Bin 0 -> 12608 bytes cmake-build-debug/CMakeFiles/feature_tests.cxx | 405 + cmake-build-debug/CMakeFiles/progress.marks | 1 + cmake-build-debug/CPackConfig.cmake | 94 + cmake-build-debug/CPackSourceConfig.cmake | 102 + cmake-build-debug/Makefile | 228 + cmake-build-debug/addrtoname.o | Bin 0 -> 32168 bytes cmake-build-debug/addrtostr.o | Bin 0 -> 3120 bytes cmake-build-debug/af.o | Bin 0 -> 2416 bytes cmake-build-debug/ascii_strcasecmp.o | Bin 0 -> 2176 bytes cmake-build-debug/autorevision.sh | 1268 +++ cmake-build-debug/changelog.txt | 55 + cmake-build-debug/checksum.o | Bin 0 -> 3376 bytes cmake-build-debug/cmake_install.cmake | 53 + cmake-build-debug/config.h | 395 + cmake-build-debug/config.log | 3998 ++++++++ cmake-build-debug/config.status | 1083 +++ cmake-build-debug/cpack.o | Bin 0 -> 3088 bytes cmake-build-debug/gmpls.o | Bin 0 -> 8008 bytes cmake-build-debug/gmt2local.o | Bin 0 -> 1704 bytes cmake-build-debug/in_cksum.o | Bin 0 -> 2304 bytes cmake-build-debug/ipproto.o | Bin 0 -> 2472 bytes cmake-build-debug/l2vpn.o | Bin 0 -> 2872 bytes cmake-build-debug/libnetdissect.a | Bin 0 -> 2170748 bytes cmake-build-debug/machdep.o | Bin 0 -> 1264 bytes cmake-build-debug/net_common.o | Bin 0 -> 13432 bytes cmake-build-debug/nlpid.o | Bin 0 -> 1848 bytes cmake-build-debug/oui.o | Bin 0 -> 4440 bytes cmake-build-debug/parsenfsfh.o | Bin 0 -> 5432 bytes cmake-build-debug/print-802_11.o | Bin 0 -> 55744 bytes cmake-build-debug/print-802_15_4.o | Bin 0 -> 3808 bytes cmake-build-debug/print-ah.o | Bin 0 -> 2160 bytes cmake-build-debug/print-ahcp.o | Bin 0 -> 12224 bytes cmake-build-debug/print-aodv.o | Bin 0 -> 10992 bytes cmake-build-debug/print-aoe.o | Bin 0 -> 13656 bytes cmake-build-debug/print-ap1394.o | Bin 0 -> 2856 bytes cmake-build-debug/print-arcnet.o | Bin 0 -> 6848 bytes cmake-build-debug/print-arp.o | Bin 0 -> 10056 bytes cmake-build-debug/print-ascii.o | Bin 0 -> 3728 bytes cmake-build-debug/print-atalk.o | Bin 0 -> 13760 bytes cmake-build-debug/print-atm.o | Bin 0 -> 10568 bytes cmake-build-debug/print-babel.o | Bin 0 -> 17344 bytes cmake-build-debug/print-beep.o | Bin 0 -> 2616 bytes cmake-build-debug/print-bfd.o | Bin 0 -> 7992 bytes cmake-build-debug/print-bgp.o | Bin 0 -> 68944 bytes cmake-build-debug/print-bootp.o | Bin 0 -> 26496 bytes cmake-build-debug/print-bt.o | Bin 0 -> 1952 bytes cmake-build-debug/print-calm-fast.o | Bin 0 -> 1832 bytes cmake-build-debug/print-carp.o | Bin 0 -> 2912 bytes cmake-build-debug/print-cdp.o | Bin 0 -> 11368 bytes cmake-build-debug/print-cfm.o | Bin 0 -> 14288 bytes cmake-build-debug/print-chdlc.o | Bin 0 -> 4952 bytes cmake-build-debug/print-cip.o | Bin 0 -> 2160 bytes cmake-build-debug/print-cnfp.o | Bin 0 -> 9800 bytes cmake-build-debug/print-dccp.o | Bin 0 -> 17336 bytes cmake-build-debug/print-decnet.o | Bin 0 -> 20296 bytes cmake-build-debug/print-dhcp6.o | Bin 0 -> 19232 bytes cmake-build-debug/print-domain.o | Bin 0 -> 19800 bytes cmake-build-debug/print-dtp.o | Bin 0 -> 3304 bytes cmake-build-debug/print-dvmrp.o | Bin 0 -> 8336 bytes cmake-build-debug/print-eap.o | Bin 0 -> 8152 bytes cmake-build-debug/print-egp.o | Bin 0 -> 8112 bytes cmake-build-debug/print-eigrp.o | Bin 0 -> 9976 bytes cmake-build-debug/print-enc.o | Bin 0 -> 2512 bytes cmake-build-debug/print-esp.o | Bin 0 -> 11704 bytes cmake-build-debug/print-ether.o | Bin 0 -> 10304 bytes cmake-build-debug/print-fddi.o | Bin 0 -> 4728 bytes cmake-build-debug/print-forces.o | Bin 0 -> 32848 bytes cmake-build-debug/print-fr.o | Bin 0 -> 17240 bytes cmake-build-debug/print-frag6.o | Bin 0 -> 2344 bytes cmake-build-debug/print-ftp.o | Bin 0 -> 1592 bytes cmake-build-debug/print-geneve.o | Bin 0 -> 5768 bytes cmake-build-debug/print-geonet.o | Bin 0 -> 6440 bytes cmake-build-debug/print-gre.o | Bin 0 -> 8136 bytes cmake-build-debug/print-hncp.o | Bin 0 -> 16576 bytes cmake-build-debug/print-hsrp.o | Bin 0 -> 4136 bytes cmake-build-debug/print-http.o | Bin 0 -> 3248 bytes cmake-build-debug/print-icmp.o | Bin 0 -> 14400 bytes cmake-build-debug/print-icmp6.o | Bin 0 -> 48408 bytes cmake-build-debug/print-igmp.o | Bin 0 -> 10144 bytes cmake-build-debug/print-igrp.o | Bin 0 -> 3576 bytes cmake-build-debug/print-ip.o | Bin 0 -> 18816 bytes cmake-build-debug/print-ip6.o | Bin 0 -> 10976 bytes cmake-build-debug/print-ip6opts.o | Bin 0 -> 5456 bytes cmake-build-debug/print-ipcomp.o | Bin 0 -> 1816 bytes cmake-build-debug/print-ipfc.o | Bin 0 -> 2488 bytes cmake-build-debug/print-ipnet.o | Bin 0 -> 2936 bytes cmake-build-debug/print-ipx.o | Bin 0 -> 6240 bytes cmake-build-debug/print-isakmp.o | Bin 0 -> 77592 bytes cmake-build-debug/print-isoclns.o | Bin 0 -> 81040 bytes cmake-build-debug/print-juniper.o | Bin 0 -> 25656 bytes cmake-build-debug/print-krb.o | Bin 0 -> 6168 bytes cmake-build-debug/print-l2tp.o | Bin 0 -> 16968 bytes cmake-build-debug/print-lane.o | Bin 0 -> 3512 bytes cmake-build-debug/print-ldp.o | Bin 0 -> 16336 bytes cmake-build-debug/print-lisp.o | Bin 0 -> 8992 bytes cmake-build-debug/print-llc.o | Bin 0 -> 13328 bytes cmake-build-debug/print-lldp.o | Bin 0 -> 39992 bytes cmake-build-debug/print-lmp.o | Bin 0 -> 23832 bytes cmake-build-debug/print-loopback.o | Bin 0 -> 4072 bytes cmake-build-debug/print-lspping.o | Bin 0 -> 14312 bytes cmake-build-debug/print-lwapp.o | Bin 0 -> 7024 bytes cmake-build-debug/print-lwres.o | Bin 0 -> 9040 bytes cmake-build-debug/print-m3ua.o | Bin 0 -> 8440 bytes cmake-build-debug/print-medsa.o | Bin 0 -> 5264 bytes cmake-build-debug/print-mobile.o | Bin 0 -> 2536 bytes cmake-build-debug/print-mobility.o | Bin 0 -> 8488 bytes cmake-build-debug/print-mpcp.o | Bin 0 -> 7016 bytes cmake-build-debug/print-mpls.o | Bin 0 -> 3688 bytes cmake-build-debug/print-mptcp.o | Bin 0 -> 7664 bytes cmake-build-debug/print-msdp.o | Bin 0 -> 3584 bytes cmake-build-debug/print-msnlb.o | Bin 0 -> 2024 bytes cmake-build-debug/print-nflog.o | Bin 0 -> 3352 bytes cmake-build-debug/print-nfs.o | Bin 0 -> 36640 bytes cmake-build-debug/print-nsh.o | Bin 0 -> 4448 bytes cmake-build-debug/print-ntp.o | Bin 0 -> 8472 bytes cmake-build-debug/print-null.o | Bin 0 -> 3856 bytes cmake-build-debug/print-olsr.o | Bin 0 -> 12456 bytes cmake-build-debug/print-openflow-1.0.o | Bin 0 -> 63952 bytes cmake-build-debug/print-openflow.o | Bin 0 -> 4360 bytes cmake-build-debug/print-ospf.o | Bin 0 -> 32072 bytes cmake-build-debug/print-ospf6.o | Bin 0 -> 18848 bytes cmake-build-debug/print-otv.o | Bin 0 -> 2080 bytes cmake-build-debug/print-pgm.o | Bin 0 -> 15312 bytes cmake-build-debug/print-pim.o | Bin 0 -> 25096 bytes cmake-build-debug/print-pktap.o | Bin 0 -> 2912 bytes cmake-build-debug/print-ppi.o | Bin 0 -> 2872 bytes cmake-build-debug/print-ppp.o | Bin 0 -> 35688 bytes cmake-build-debug/print-pppoe.o | Bin 0 -> 5168 bytes cmake-build-debug/print-pptp.o | Bin 0 -> 25360 bytes cmake-build-debug/print-radius.o | Bin 0 -> 31968 bytes cmake-build-debug/print-raw.o | Bin 0 -> 1584 bytes cmake-build-debug/print-resp.o | Bin 0 -> 7024 bytes cmake-build-debug/print-rip.o | Bin 0 -> 6664 bytes cmake-build-debug/print-ripng.o | Bin 0 -> 3432 bytes cmake-build-debug/print-rpki-rtr.o | Bin 0 -> 6968 bytes cmake-build-debug/print-rrcp.o | Bin 0 -> 4136 bytes cmake-build-debug/print-rsvp.o | Bin 0 -> 52144 bytes cmake-build-debug/print-rt6.o | Bin 0 -> 2464 bytes cmake-build-debug/print-rtsp.o | Bin 0 -> 2176 bytes cmake-build-debug/print-rx.o | Bin 0 -> 109376 bytes cmake-build-debug/print-sctp.o | Bin 0 -> 10920 bytes cmake-build-debug/print-sflow.o | Bin 0 -> 16408 bytes cmake-build-debug/print-sip.o | Bin 0 -> 2336 bytes cmake-build-debug/print-sl.o | Bin 0 -> 5192 bytes cmake-build-debug/print-sll.o | Bin 0 -> 4200 bytes cmake-build-debug/print-slow.o | Bin 0 -> 13048 bytes cmake-build-debug/print-smb.o | Bin 0 -> 52248 bytes cmake-build-debug/print-smtp.o | Bin 0 -> 1544 bytes cmake-build-debug/print-snmp.o | Bin 0 -> 75208 bytes cmake-build-debug/print-stp.o | Bin 0 -> 9912 bytes cmake-build-debug/print-sunatm.o | Bin 0 -> 2016 bytes cmake-build-debug/print-sunrpc.o | Bin 0 -> 4224 bytes cmake-build-debug/print-symantec.o | Bin 0 -> 2888 bytes cmake-build-debug/print-syslog.o | Bin 0 -> 4888 bytes cmake-build-debug/print-tcp.o | Bin 0 -> 20160 bytes cmake-build-debug/print-telnet.o | Bin 0 -> 9632 bytes cmake-build-debug/print-tftp.o | Bin 0 -> 4352 bytes cmake-build-debug/print-timed.o | Bin 0 -> 5048 bytes cmake-build-debug/print-tipc.o | Bin 0 -> 8432 bytes cmake-build-debug/print-token.o | Bin 0 -> 4992 bytes cmake-build-debug/print-udld.o | Bin 0 -> 4872 bytes cmake-build-debug/print-udp.o | Bin 0 -> 17168 bytes cmake-build-debug/print-usb.o | Bin 0 -> 3104 bytes cmake-build-debug/print-vjc.o | Bin 0 -> 2328 bytes cmake-build-debug/print-vqp.o | Bin 0 -> 5344 bytes cmake-build-debug/print-vrrp.o | Bin 0 -> 4464 bytes cmake-build-debug/print-vtp.o | Bin 0 -> 7896 bytes cmake-build-debug/print-vxlan-gpe.o | Bin 0 -> 3216 bytes cmake-build-debug/print-vxlan.o | Bin 0 -> 2080 bytes cmake-build-debug/print-wb.o | Bin 0 -> 8424 bytes cmake-build-debug/print-zephyr.o | Bin 0 -> 10704 bytes cmake-build-debug/print-zeromq.o | Bin 0 -> 5480 bytes cmake-build-debug/print.o | Bin 0 -> 10936 bytes cmake-build-debug/setsignal.o | Bin 0 -> 1544 bytes cmake-build-debug/signature.o | Bin 0 -> 3768 bytes cmake-build-debug/smbutil.o | Bin 0 -> 89624 bytes cmake-build-debug/strlcat.o | Bin 0 -> 1552 bytes cmake-build-debug/strlcpy.o | Bin 0 -> 1376 bytes cmake-build-debug/strtoaddr.o | Bin 0 -> 3304 bytes cmake-build-debug/tcpdump | Bin 0 -> 1357784 bytes cmake-build-debug/tcpdump.1 | 1975 ++++ cmake-build-debug/tcpdump.o | Bin 0 -> 64432 bytes cmake-build-debug/tcpdump_mesa | Bin 0 -> 1357784 bytes cmake-build-debug/util-print.o | Bin 0 -> 12728 bytes cmake-build-debug/util.o | Bin 0 -> 4584 bytes cmake-build-debug/version.c | 1 + cmake-build-debug/version.cmake | 19 + cmake-build-debug/version.o | Bin 0 -> 1080 bytes cmake/Package.cmake | 15 +- cmake/Version.cmake | 2 +- cmake/changelog.sh | 4 + config.guess | 1435 --- config.h.in | 394 - config.sub | 1807 ---- configure | 9609 -------------------- configure.in | 1006 -- cpack.c | 155 - cpack.h | 56 - ether.h | 57 - ethertype.h | 203 - extract.h | 217 - getopt_long.h | 66 - gmpls.c | 192 - gmpls.h | 33 - gmt2local.c | 66 - gmt2local.h | 25 - in_cksum.c | 200 - install-sh | 250 - interface.h | 94 - ip.h | 164 - ip6.h | 202 - ipproto.c | 56 - ipproto.h | 145 - l2vpn.c | 53 - l2vpn.h | 16 - lbl/os-osf4.h | 24 - lbl/os-solaris2.h | 27 - lbl/os-sunos4.h | 211 - lbl/os-ultrix4.h | 36 - llc.h | 122 - machdep.c | 74 - machdep.h | 25 - makemib | 247 - mesa_net.h | 811 -- mesa_pkt_dump.h | 46 - mib.h | 1460 --- missing/datalinks.c | 62 - missing/dlnames.c | 171 - missing/getopt_long.c | 612 -- missing/snprintf.c | 625 -- missing/strdup.c | 52 - missing/strlcat.c | 73 - missing/strlcpy.c | 70 - missing/strsep.c | 80 - mkdep | 112 - mpls.h | 41 - nameser.h | 300 - net_common.c | 848 -- netdissect-stdinc.h | 404 - netdissect.h | 633 -- nfs.h | 438 - nfsfh.h | 66 - nlpid.c | 41 - nlpid.h | 32 - openflow.h | 51 - ospf.h | 325 - oui.c | 103 - oui.h | 90 - packetdat.awk | 61 - parsenfsfh.c | 466 - pcap-missing.h | 49 - pcap_dump_ftell.c | 31 - ppp.h | 68 - print-802_11.c | 3371 ------- print-802_15_4.c | 179 - print-ah.c | 63 - print-ahcp.c | 411 - print-aodv.c | 530 -- print-aoe.c | 430 - print-ap1394.c | 112 - print-arcnet.c | 358 - print-arp.c | 413 - print-ascii.c | 207 - print-atalk.c | 629 -- print-atm.c | 547 -- print-babel.c | 715 -- print-beep.c | 58 - print-bfd.c | 281 - print-bgp.c | 2787 ------ print-bootp.c | 1087 --- print-bt.c | 69 - print-calm-fast.c | 59 - print-carp.c | 81 - print-cdp.c | 402 - print-cfm.c | 634 -- print-chdlc.c | 204 - print-cip.c | 102 - print-cnfp.c | 475 - print-dccp.c | 657 -- print-decnet.c | 1344 --- print-dhcp6.c | 809 -- print-domain.c | 746 -- print-dtp.c | 128 - print-dvmrp.c | 365 - print-eap.c | 295 - print-egp.c | 355 - print-eigrp.c | 473 - print-enc.c | 136 - print-esp.c | 744 -- print-ether.c | 451 - print-fddi.c | 337 - print-forces.c | 1759 ---- print-fr.c | 948 -- print-frag6.c | 67 - print-ftp.c | 35 - print-geneve.c | 235 - print-geonet.c | 278 - print-gre.c | 395 - print-hncp.c | 740 -- print-hsrp.c | 133 - print-http.c | 80 - print-icmp.c | 696 -- print-icmp6.c | 1957 ---- print-igmp.c | 339 - print-igrp.c | 153 - print-ip.c | 702 -- print-ip6.c | 401 - print-ip6opts.c | 211 - print-ipcomp.c | 82 - print-ipfc.c | 139 - print-ipnet.c | 115 - print-ipx.c | 237 - print-isakmp.c | 2981 ------ print-isoclns.c | 3127 ------- print-juniper.c | 1461 --- print-krb.c | 256 - print-l2tp.c | 747 -- print-lane.c | 122 - print-ldp.c | 692 -- print-lisp.c | 448 - print-llc.c | 592 -- print-lldp.c | 1612 ---- print-lmp.c | 869 -- print-loopback.c | 134 - print-lspping.c | 878 -- print-lwapp.c | 347 - print-lwres.c | 593 -- print-m3ua.c | 337 - print-medsa.c | 195 - print-mobile.c | 101 - print-mobility.c | 331 - print-mpcp.c | 259 - print-mpls.c | 210 - print-mptcp.c | 426 - print-msdp.c | 101 - print-msnlb.c | 63 - print-nflog.c | 166 - print-nfs.c | 1708 ---- print-nsh.c | 185 - print-ntp.c | 426 - print-null.c | 145 - print-olsr.c | 714 -- print-openflow-1.0.c | 2558 ------ print-openflow.c | 140 - print-ospf.c | 1206 --- print-ospf6.c | 1008 -- print-otv.c | 64 - print-pflog.c | 184 - print-pgm.c | 782 -- print-pim.c | 1150 --- print-pktap.c | 165 - print-ppi.c | 125 - print-ppp.c | 1850 ---- print-pppoe.c | 199 - print-pptp.c | 1004 -- print-radius.c | 993 -- print-raw.c | 43 - print-resp.c | 375 - print-rip.c | 271 - print-ripng.c | 172 - print-rpki-rtr.c | 366 - print-rrcp.c | 127 - print-rsvp.c | 1967 ---- print-rt6.c | 91 - print-rtsp.c | 50 - print-rx.c | 2884 ------ print-sctp.c | 815 -- print-sflow.c | 989 -- print-sip.c | 52 - print-sl.c | 247 - print-sll.c | 308 - print-slow.c | 657 -- print-smb.c | 1492 --- print-smtp.c | 30 - print-snmp.c | 1907 ---- print-stp.c | 463 - print-sunatm.c | 106 - print-sunrpc.c | 248 - print-symantec.c | 112 - print-syslog.c | 144 - print-tcp.c | 895 -- print-telnet.c | 546 -- print-tftp.c | 184 - print-timed.c | 148 - print-tipc.c | 384 - print-token.c | 243 - print-udld.c | 196 - print-udp.c | 681 -- print-usb.c | 174 - print-vjc.c | 116 - print-vqp.c | 199 - print-vrrp.c | 181 - print-vtp.c | 378 - print-vxlan-gpe.c | 109 - print-vxlan.c | 70 - print-wb.c | 451 - print-zephyr.c | 318 - print-zeromq.c | 214 - print.c | 483 - print.h | 44 - readme.md | 59 + readme.txt | 14 - rpc_auth.h | 78 - rpc_msg.h | 127 - rpl.h | 174 - send-ack.awk | 68 - setsignal.c | 90 - setsignal.h | 25 - signature.c | 214 - signature.h | 29 - slcompress.h | 85 - smb.h | 122 - smbutil.c | 1892 ---- src/CHANGES | 1168 +++ src/CREDITS | 234 + src/INSTALL.txt | 214 + src/LICENSE | 19 + src/Makefile-devel-adds | 22 + src/Makefile.in | 454 + src/README.md | 243 + src/Readme.Win32 | 24 + src/VERSION | 1 + src/aclocal.m4 | 1360 +++ src/addrtoname.c | 1271 +++ src/addrtoname.h | 61 + src/addrtostr.c | 199 + src/addrtostr.h | 42 + src/af.c | 58 + src/af.h | 55 + src/ah.h | 57 + src/appletalk.h | 166 + src/ascii_strcasecmp.c | 105 + src/ascii_strcasecmp.h | 33 + src/atime.awk | 18 + src/atm.h | 31 + src/bpf_dump.c | 61 + src/chdlc.h | 26 + src/checksum.c | 189 + src/config.guess | 1435 +++ src/config.h.in | 394 + src/config.sub | 1807 ++++ src/configure | 9609 ++++++++++++++++++++ src/configure.in | 1006 ++ src/cpack.c | 155 + src/cpack.h | 56 + src/ether.h | 57 + src/ethertype.h | 203 + src/extract.h | 217 + src/getopt_long.h | 66 + src/gmpls.c | 192 + src/gmpls.h | 33 + src/gmt2local.c | 66 + src/gmt2local.h | 25 + src/in_cksum.c | 200 + src/install-sh | 250 + src/interface.h | 94 + src/ip.h | 164 + src/ip6.h | 202 + src/ipproto.c | 56 + src/ipproto.h | 145 + src/l2vpn.c | 53 + src/l2vpn.h | 16 + src/lbl/os-osf4.h | 24 + src/lbl/os-solaris2.h | 27 + src/lbl/os-sunos4.h | 211 + src/lbl/os-ultrix4.h | 36 + src/llc.h | 122 + src/machdep.c | 74 + src/machdep.h | 25 + src/makemib | 247 + src/mesa_net.h | 811 ++ src/mesa_pkt_dump.h | 46 + src/mib.h | 1460 +++ src/missing/datalinks.c | 62 + src/missing/dlnames.c | 171 + src/missing/getopt_long.c | 612 ++ src/missing/snprintf.c | 625 ++ src/missing/strdup.c | 52 + src/missing/strlcat.c | 73 + src/missing/strlcpy.c | 70 + src/missing/strsep.c | 80 + src/mkdep | 112 + src/mpls.h | 41 + src/nameser.h | 300 + src/net_common.c | 848 ++ src/netdissect-stdinc.h | 404 + src/netdissect.h | 633 ++ src/nfs.h | 438 + src/nfsfh.h | 66 + src/nlpid.c | 41 + src/nlpid.h | 32 + src/openflow.h | 51 + src/ospf.h | 325 + src/oui.c | 103 + src/oui.h | 90 + src/packetdat.awk | 61 + src/parsenfsfh.c | 466 + src/pcap-missing.h | 49 + src/pcap_dump_ftell.c | 31 + src/ppp.h | 68 + src/print-802_11.c | 3371 +++++++ src/print-802_15_4.c | 179 + src/print-ah.c | 63 + src/print-ahcp.c | 411 + src/print-aodv.c | 530 ++ src/print-aoe.c | 430 + src/print-ap1394.c | 112 + src/print-arcnet.c | 358 + src/print-arp.c | 413 + src/print-ascii.c | 207 + src/print-atalk.c | 629 ++ src/print-atm.c | 547 ++ src/print-babel.c | 715 ++ src/print-beep.c | 58 + src/print-bfd.c | 281 + src/print-bgp.c | 2787 ++++++ src/print-bootp.c | 1087 +++ src/print-bt.c | 69 + src/print-calm-fast.c | 59 + src/print-carp.c | 81 + src/print-cdp.c | 402 + src/print-cfm.c | 634 ++ src/print-chdlc.c | 204 + src/print-cip.c | 102 + src/print-cnfp.c | 475 + src/print-dccp.c | 657 ++ src/print-decnet.c | 1344 +++ src/print-dhcp6.c | 809 ++ src/print-domain.c | 746 ++ src/print-dtp.c | 128 + src/print-dvmrp.c | 365 + src/print-eap.c | 295 + src/print-egp.c | 355 + src/print-eigrp.c | 473 + src/print-enc.c | 136 + src/print-esp.c | 744 ++ src/print-ether.c | 451 + src/print-fddi.c | 337 + src/print-forces.c | 1759 ++++ src/print-fr.c | 948 ++ src/print-frag6.c | 67 + src/print-ftp.c | 35 + src/print-geneve.c | 235 + src/print-geonet.c | 278 + src/print-gre.c | 395 + src/print-hncp.c | 740 ++ src/print-hsrp.c | 133 + src/print-http.c | 80 + src/print-icmp.c | 696 ++ src/print-icmp6.c | 1957 ++++ src/print-igmp.c | 339 + src/print-igrp.c | 153 + src/print-ip.c | 702 ++ src/print-ip6.c | 401 + src/print-ip6opts.c | 211 + src/print-ipcomp.c | 82 + src/print-ipfc.c | 139 + src/print-ipnet.c | 115 + src/print-ipx.c | 237 + src/print-isakmp.c | 2981 ++++++ src/print-isoclns.c | 3127 +++++++ src/print-juniper.c | 1461 +++ src/print-krb.c | 256 + src/print-l2tp.c | 747 ++ src/print-lane.c | 122 + src/print-ldp.c | 692 ++ src/print-lisp.c | 448 + src/print-llc.c | 592 ++ src/print-lldp.c | 1612 ++++ src/print-lmp.c | 869 ++ src/print-loopback.c | 134 + src/print-lspping.c | 878 ++ src/print-lwapp.c | 347 + src/print-lwres.c | 593 ++ src/print-m3ua.c | 337 + src/print-medsa.c | 195 + src/print-mobile.c | 101 + src/print-mobility.c | 331 + src/print-mpcp.c | 259 + src/print-mpls.c | 210 + src/print-mptcp.c | 426 + src/print-msdp.c | 101 + src/print-msnlb.c | 63 + src/print-nflog.c | 166 + src/print-nfs.c | 1708 ++++ src/print-nsh.c | 185 + src/print-ntp.c | 426 + src/print-null.c | 145 + src/print-olsr.c | 714 ++ src/print-openflow-1.0.c | 2558 ++++++ src/print-openflow.c | 140 + src/print-ospf.c | 1206 +++ src/print-ospf6.c | 1008 ++ src/print-otv.c | 64 + src/print-pflog.c | 184 + src/print-pgm.c | 782 ++ src/print-pim.c | 1150 +++ src/print-pktap.c | 165 + src/print-ppi.c | 125 + src/print-ppp.c | 1850 ++++ src/print-pppoe.c | 199 + src/print-pptp.c | 1004 ++ src/print-radius.c | 993 ++ src/print-raw.c | 43 + src/print-resp.c | 375 + src/print-rip.c | 271 + src/print-ripng.c | 172 + src/print-rpki-rtr.c | 366 + src/print-rrcp.c | 127 + src/print-rsvp.c | 1967 ++++ src/print-rt6.c | 91 + src/print-rtsp.c | 50 + src/print-rx.c | 2884 ++++++ src/print-sctp.c | 815 ++ src/print-sflow.c | 989 ++ src/print-sip.c | 52 + src/print-sl.c | 247 + src/print-sll.c | 308 + src/print-slow.c | 657 ++ src/print-smb.c | 1492 +++ src/print-smtp.c | 30 + src/print-snmp.c | 1907 ++++ src/print-stp.c | 463 + src/print-sunatm.c | 106 + src/print-sunrpc.c | 248 + src/print-symantec.c | 112 + src/print-syslog.c | 144 + src/print-tcp.c | 895 ++ src/print-telnet.c | 546 ++ src/print-tftp.c | 184 + src/print-timed.c | 148 + src/print-tipc.c | 384 + src/print-token.c | 243 + src/print-udld.c | 196 + src/print-udp.c | 681 ++ src/print-usb.c | 174 + src/print-vjc.c | 116 + src/print-vqp.c | 199 + src/print-vrrp.c | 181 + src/print-vtp.c | 378 + src/print-vxlan-gpe.c | 109 + src/print-vxlan.c | 70 + src/print-wb.c | 451 + src/print-zephyr.c | 318 + src/print-zeromq.c | 214 + src/print.c | 483 + src/print.h | 44 + src/rpc_auth.h | 78 + src/rpc_msg.h | 127 + src/rpl.h | 174 + src/send-ack.awk | 68 + src/setsignal.c | 90 + src/setsignal.h | 25 + src/signature.c | 214 + src/signature.h | 29 + src/slcompress.h | 85 + src/smb.h | 122 + src/smbutil.c | 1892 ++++ src/stime.awk | 19 + src/stream_base.h | 520 ++ src/strtoaddr.c | 239 + src/strtoaddr.h | 23 + src/tcp.h | 164 + src/tcpdump.1.in | 1975 ++++ src/tcpdump.c | 3251 +++++++ src/tests/02-sunrise-sunset-esp.pcap | Bin 0 -> 1352 bytes src/tests/08-sunrise-sunset-aes.pcap | Bin 0 -> 1480 bytes src/tests/08-sunrise-sunset-esp2.pcap | Bin 0 -> 1800 bytes src/tests/3560_CDP.pcap | Bin 0 -> 1272 bytes src/tests/802.1D_spanning_tree.pcap | Bin 0 -> 1088 bytes src/tests/802.1w_rapid_STP.pcap | Bin 0 -> 2304 bytes src/tests/AoE_Linux.pcap | Bin 0 -> 95288 bytes src/tests/DECnet_Phone.pcap | Bin 0 -> 7678 bytes src/tests/DTP.pcap | Bin 0 -> 934 bytes src/tests/EIGRP_adjacency.pcap | Bin 0 -> 5195 bytes src/tests/EIGRP_goodbye.pcap | Bin 0 -> 1374 bytes src/tests/EIGRP_subnet_down.pcap | Bin 0 -> 1884 bytes src/tests/EIGRP_subnet_up.pcap | Bin 0 -> 1356 bytes src/tests/HDLC.pcap | Bin 0 -> 3532 bytes src/tests/HSRP_coup.pcap | Bin 0 -> 3984 bytes src/tests/HSRP_election.pcap | Bin 0 -> 3832 bytes src/tests/HSRP_failover.pcap | Bin 0 -> 3056 bytes src/tests/IGMP_V1.pcap | Bin 0 -> 2062 bytes src/tests/IGMP_V2.pcap | Bin 0 -> 1364 bytes src/tests/ISAKMP_sa_setup.pcap | Bin 0 -> 2030 bytes src/tests/ISIS_external_lsp.pcap | Bin 0 -> 17371 bytes src/tests/ISIS_level1_adjacency.pcap | Bin 0 -> 28022 bytes src/tests/ISIS_level2_adjacency.pcap | Bin 0 -> 53091 bytes src/tests/ISIS_p2p_adjacency.pcap | Bin 0 -> 22260 bytes src/tests/LACP.pcap | Bin 0 -> 2824 bytes src/tests/LLDP_and_CDP.pcap | Bin 0 -> 4108 bytes src/tests/MSTP_Intra-Region_BPDUs.pcap | Bin 0 -> 1714 bytes src/tests/OLSRv1_HNA_sgw_1.out | 13 + src/tests/OLSRv1_HNA_sgw_1.pcap | Bin 0 -> 158 bytes src/tests/OSPFv3_NBMA_adjacencies.pcap | Bin 0 -> 13188 bytes src/tests/OSPFv3_broadcast_adjacency.pcap | Bin 0 -> 5536 bytes src/tests/OSPFv3_multipoint_adjacencies.pcap | Bin 0 -> 11816 bytes src/tests/OSPFv3_with_AH.pcap | Bin 0 -> 10974 bytes src/tests/PIM-DM_pruning.pcap | Bin 0 -> 10436 bytes src/tests/PIM-SM_join_prune.pcap | Bin 0 -> 3940 bytes src/tests/PIM_register_register-stop.pcap | Bin 0 -> 258 bytes src/tests/PIMv2_bootstrap.pcap | Bin 0 -> 712 bytes src/tests/PIMv2_hellos.pcap | Bin 0 -> 528 bytes src/tests/QinQpacket.out | 249 + src/tests/QinQpacket.pcap | Bin 0 -> 78264 bytes src/tests/QinQpacketv.out | 1977 ++++ src/tests/RADIUS-RFC4675.pcap | Bin 0 -> 766 bytes src/tests/RADIUS-RFC5176.pcap | Bin 0 -> 600 bytes src/tests/RADIUS-port1700.pcap | Bin 0 -> 107 bytes src/tests/RADIUS.pcap | Bin 0 -> 775 bytes src/tests/TESTLIST | 352 + src/tests/TESTonce | 68 + src/tests/TESTrun.sh | 72 + src/tests/UDLD.pcap | Bin 0 -> 3426 bytes src/tests/ahcp-vv.out | 76 + src/tests/ahcp.pcap | Bin 0 -> 1784 bytes src/tests/aoe_1-v.out | 888 ++ src/tests/aoe_1.out | 186 + src/tests/babel.pcap | Bin 0 -> 3320 bytes src/tests/babel1.out | 25 + src/tests/babel1v.out | 67 + src/tests/babel_auth.out | 13 + src/tests/babel_auth.pcap | Bin 0 -> 530 bytes src/tests/babel_pad1.out | 2 + src/tests/babel_pad1.pcap | Bin 0 -> 257 bytes src/tests/babel_rtt.out | 25 + src/tests/babel_rtt.pcap | Bin 0 -> 902 bytes src/tests/bgp-aigp.out | 20 + src/tests/bgp-aigp.pcap | Bin 0 -> 258 bytes src/tests/bgp-infinite-loop.pcap | Bin 0 -> 554 bytes src/tests/bgp_infloop-v.out | 15 + src/tests/bgp_vpn_attrset.out | 19 + src/tests/bgp_vpn_attrset.pcap | Bin 0 -> 217 bytes src/tests/cdp-v.out | 57 + src/tests/chdlc-slarp-short.pcap | Bin 0 -> 58 bytes src/tests/chdlc-slarp.pcap | Bin 0 -> 62 bytes src/tests/crypto.sh | 36 + src/tests/cve-2014-8767-OLSR.out | 4 + src/tests/cve-2014-8767-OLSR.pcap | Bin 0 -> 115 bytes src/tests/cve-2014-8768-Geonet.out | 1 + src/tests/cve-2014-8768-Geonet.pcap | Bin 0 -> 115 bytes src/tests/cve-2014-8769-AODV.out | 2 + src/tests/cve-2014-8769-AODV.pcap | Bin 0 -> 115 bytes src/tests/cve2015-0261-crash.out | 1 + src/tests/cve2015-0261-crash.pcap | Bin 0 -> 201 bytes src/tests/cve2015-0261-ipv6.out | 3 + src/tests/cve2015-0261-ipv6.pcap | Bin 0 -> 682 bytes src/tests/dcb_ets.out | 1923 ++++ src/tests/dcb_ets.pcap | Bin 0 -> 13279 bytes src/tests/dcb_pfc.out | 148 + src/tests/dcb_pfc.pcap | Bin 0 -> 850 bytes src/tests/dcb_qcn.out | 363 + src/tests/dcb_qcn.pcap | Bin 0 -> 3730 bytes src/tests/dccp_partial_csum_v4_longer.out | 30 + src/tests/dccp_partial_csum_v4_longer.pcap | Bin 0 -> 1778 bytes src/tests/dccp_partial_csum_v4_simple.out | 14 + src/tests/dccp_partial_csum_v4_simple.pcap | Bin 0 -> 642 bytes src/tests/dccp_partial_csum_v6_longer.out | 9 + src/tests/dccp_partial_csum_v6_longer.pcap | Bin 0 -> 1230 bytes src/tests/dccp_partial_csum_v6_simple.out | 7 + src/tests/dccp_partial_csum_v6_simple.pcap | Bin 0 -> 782 bytes src/tests/decnet.out | 139 + src/tests/dhcp-rfc3004-v.out | 55 + src/tests/dhcp-rfc3004.pcap | Bin 0 -> 1420 bytes src/tests/dhcp-rfc5859-v.out | 44 + src/tests/dhcp-rfc5859.pcap | Bin 0 -> 1456 bytes src/tests/dhcpv6-AFTR-Name-RFC6334.out | 4 + src/tests/dhcpv6-AFTR-Name-RFC6334.pcap | Bin 0 -> 747 bytes src/tests/dhcpv6-domain-list.out | 1 + src/tests/dhcpv6-domain-list.pcap | Bin 0 -> 195 bytes src/tests/dhcpv6-ia-na.out | 4 + src/tests/dhcpv6-ia-na.pcap | Bin 0 -> 638 bytes src/tests/dhcpv6-ia-pd.out | 4 + src/tests/dhcpv6-ia-pd.pcap | Bin 0 -> 641 bytes src/tests/dhcpv6-ia-ta.out | 4 + src/tests/dhcpv6-ia-ta.pcap | Bin 0 -> 606 bytes src/tests/dhcpv6-ntp-server.out | 1 + src/tests/dhcpv6-ntp-server.pcap | Bin 0 -> 207 bytes src/tests/dhcpv6-sip-server-d.out | 1 + src/tests/dhcpv6-sip-server-d.pcap | Bin 0 -> 208 bytes src/tests/dnssec-vv.out | 12 + src/tests/dnssec.pcap | Bin 0 -> 3936 bytes src/tests/dtp-v.out | 55 + src/tests/dvmrp.out | 2 + src/tests/e1000g.out | 20 + src/tests/e1000g.pcap | Bin 0 -> 2504 bytes src/tests/eapon1.gdbinit | 1 + src/tests/eapon1.out | 114 + src/tests/eapon1.pcap | Bin 0 -> 16412 bytes src/tests/eigrp1-v.out | 444 + src/tests/eigrp2-v.out | 120 + src/tests/eigrp3-v.out | 143 + src/tests/eigrp4-v.out | 105 + src/tests/epgm_zmtp1.pcap | Bin 0 -> 4355 bytes src/tests/epgm_zmtp1v.out | 79 + src/tests/epgmv.out | 30 + src/tests/esp-secrets.txt | 5 + src/tests/esp0.out | 8 + src/tests/esp1.gdbinit | 1 + src/tests/esp1.out | 8 + src/tests/esp2.gdbinit | 1 + src/tests/esp2.out | 8 + src/tests/esp3.gdbinit | 1 + src/tests/esp4.gdbinit | 2 + src/tests/esp5.gdbinit | 3 + src/tests/esp5.out | 8 + src/tests/espudp1.out | 8 + src/tests/espudp1.pcap | Bin 0 -> 1416 bytes src/tests/evb.out | 146 + src/tests/evb.pcap | Bin 0 -> 2182 bytes src/tests/failure-outputs.txt | 0 src/tests/forces1.out | 40 + src/tests/forces1.pcap | Bin 0 -> 2488 bytes src/tests/forces1vvv.out | 227 + src/tests/forces1vvvv.out | 306 + src/tests/forces2.pcap | Bin 0 -> 9878 bytes src/tests/forces2v.out | 0 src/tests/forces2vv.out | 378 + src/tests/forces2vvv.out | 751 ++ src/tests/forces3.pcap | Bin 0 -> 18176 bytes src/tests/forces3vvv.out | 602 ++ src/tests/geneve-tcp.out | 33 + src/tests/geneve-vni.out | 20 + src/tests/geneve-vv.out | 156 + src/tests/geneve.pcap | Bin 0 -> 9928 bytes src/tests/geonet_and_calm_fast.out | 169 + src/tests/geonet_and_calm_fast.pcap | Bin 0 -> 7794 bytes src/tests/hdlc1.out | 1 + src/tests/hdlc2.out | 1 + src/tests/hdlc3.out | 38 + src/tests/hdlc4.out | 7 + src/tests/hdlc_slarp.pcap | Bin 0 -> 612 bytes src/tests/hncp.out | 53 + src/tests/hncp.pcap | Bin 0 -> 1566 bytes src/tests/hsrp_1-v.out | 102 + src/tests/hsrp_1.out | 51 + src/tests/hsrp_2-v.out | 98 + src/tests/hsrp_3-v.out | 78 + src/tests/icmpv6.out | 26 + src/tests/icmpv6.pcap | Bin 0 -> 754 bytes src/tests/icmpv6_opt24-v.out | 16 + src/tests/icmpv6_opt24.pcap | Bin 0 -> 404 bytes src/tests/ieee802.11_exthdr.out | 26 + src/tests/ieee802.11_exthdr.pcap | Bin 0 -> 4499 bytes src/tests/ieee802.11_rx-stbc.out | 3 + src/tests/ieee802.11_rx-stbc.pcap | Bin 0 -> 541 bytes src/tests/igmpv1.out | 27 + src/tests/igmpv2.out | 18 + src/tests/igmpv3-queries.out | 6 + src/tests/igmpv3-queries.pcap | Bin 0 -> 420 bytes src/tests/ikev2four.out | 107 + src/tests/ikev2four.pcap | Bin 0 -> 5856 bytes src/tests/ikev2fourv.out | 107 + src/tests/ikev2fourv4.out | 107 + src/tests/ikev2pI2-secrets.txt | 2 + src/tests/ikev2pI2.out | 41 + src/tests/ikev2pI2.pcap | Bin 0 -> 912 bytes src/tests/ipv6-bad-version.out | 4 + src/tests/ipv6-bad-version.pcap | Bin 0 -> 416 bytes src/tests/ipv6-routing-header.out | 4 + src/tests/ipv6-routing-header.pcap | Bin 0 -> 464 bytes src/tests/isakmp-delete-segfault.pcap | Bin 0 -> 721 bytes src/tests/isakmp-identification-segfault.pcap | Bin 0 -> 356 bytes src/tests/isakmp-pointer-loop.pcap | Bin 0 -> 112 bytes src/tests/isakmp1.out | 1 + src/tests/isakmp2.out | 1 + src/tests/isakmp3.out | 3 + src/tests/isakmp4.out | 35 + src/tests/isakmp4500.pcap | Bin 0 -> 6830 bytes src/tests/isakmp5-v.out | 44 + src/tests/isis-infinite-loop.pcap | Bin 0 -> 454 bytes src/tests/isis_1-v.out | 270 + src/tests/isis_1.out | 15 + src/tests/isis_2-v.out | 403 + src/tests/isis_3-v.out | 774 ++ src/tests/isis_4-v.out | 400 + src/tests/isis_infloop-v.out | 40 + src/tests/isis_poi.out | 8 + src/tests/isis_poi.pcap | Bin 0 -> 122 bytes src/tests/isis_poi2.out | 9 + src/tests/isis_poi2.pcap | Bin 0 -> 128 bytes src/tests/isup.out | 6 + src/tests/isup.pcap | Bin 0 -> 704 bytes src/tests/isupvv.out | 30 + src/tests/kday1.out | 15 + src/tests/kday1.pcap | Bin 0 -> 535 bytes src/tests/kday2.out | 34 + src/tests/kday2.pcap | Bin 0 -> 900 bytes src/tests/kday3.out | 41 + src/tests/kday3.pcap | Bin 0 -> 4049 bytes src/tests/kday4.out | 64 + src/tests/kday4.pcap | Bin 0 -> 2248 bytes src/tests/kday5.out | 35 + src/tests/kday5.pcap | Bin 0 -> 7225 bytes src/tests/kday6.out | 448 + src/tests/kday6.pcap | Bin 0 -> 4956 bytes src/tests/kday7.out | 63 + src/tests/kday7.pcap | Bin 0 -> 3955 bytes src/tests/kday8.out | 34 + src/tests/kday8.pcap | Bin 0 -> 900 bytes src/tests/lacp-ev.out | 200 + src/tests/ldp-infinite-loop.pcap | Bin 0 -> 414 bytes src/tests/ldp_infloop.out | 5 + src/tests/lisp_eid_notify.out | 63 + src/tests/lisp_eid_notify.pcap | Bin 0 -> 776 bytes src/tests/lisp_eid_register.out | 28 + src/tests/lisp_eid_register.pcap | Bin 0 -> 384 bytes src/tests/lisp_ipv6.out | 24 + src/tests/lisp_ipv6.pcap | Bin 0 -> 396 bytes src/tests/lldp_cdp-ev.out | 252 + src/tests/lmp-v.out | 200 + src/tests/lmp-v.sh | 19 + src/tests/lmp.out | 18 + src/tests/lmp.pcap | Bin 0 -> 1732 bytes src/tests/loopback.out | 6 + src/tests/loopback.pcap | Bin 0 -> 592 bytes src/tests/lspping-fec-ldp-v.out | 111 + src/tests/lspping-fec-ldp-vv.out | 121 + src/tests/lspping-fec-ldp.out | 13 + src/tests/lspping-fec-ldp.pcap | Bin 0 -> 1190 bytes src/tests/lspping-fec-rsvp-v.out | 105 + src/tests/lspping-fec-rsvp-vv.out | 125 + src/tests/lspping-fec-rsvp.out | 10 + src/tests/lspping-fec-rsvp.pcap | Bin 0 -> 984 bytes src/tests/medsa-e.out | 20 + src/tests/medsa.out | 20 + src/tests/medsa.pcap | Bin 0 -> 2568 bytes src/tests/mpbgp-linklocal-nexthop.out | 10 + src/tests/mpbgp-linklocal-nexthop.pcap | Bin 0 -> 196 bytes src/tests/mpls-ldp-hello.out | 10 + src/tests/mpls-ldp-hello.pcap | Bin 0 -> 114 bytes src/tests/mpls-traceroute-v.out | 81 + src/tests/mpls-traceroute.out | 18 + src/tests/mpls-traceroute.pcap | Bin 0 -> 1956 bytes src/tests/mptcp-fclose.out | 11 + src/tests/mptcp-fclose.pcap | Bin 0 -> 1016 bytes src/tests/mptcp.out | 264 + src/tests/mptcp.pcap | Bin 0 -> 39394 bytes src/tests/mrinfo_query.pcap | Bin 0 -> 182 bytes src/tests/msnlb.out | 2 + src/tests/msnlb.pcap | Bin 0 -> 248 bytes src/tests/msnlb2.out | 2 + src/tests/msnlb2.pcap | Bin 0 -> 188 bytes src/tests/mstp-v.out | 130 + src/tests/mtrace.out | 2 + src/tests/mtrace.pcap | Bin 0 -> 238 bytes src/tests/nflog-e.out | 4 + src/tests/nflog-e.sh | 10 + src/tests/nflog.pcap | Bin 0 -> 840 bytes src/tests/nsh-over-vxlan-gpe-v.out | 5 + src/tests/nsh-over-vxlan-gpe-vv.out | 5 + src/tests/nsh-over-vxlan-gpe-vvv.out | 9 + src/tests/nsh-over-vxlan-gpe.out | 1 + src/tests/nsh-over-vxlan-gpe.pcap | Bin 0 -> 146 bytes src/tests/of10_7050q-v.out | 18 + src/tests/of10_7050q.pcap | Bin 0 -> 588 bytes src/tests/of10_7050sx_bsn-vv.out | 343 + src/tests/of10_7050sx_bsn.pcap | Bin 0 -> 6680 bytes src/tests/of10_p3295-vv.out | 798 ++ src/tests/of10_p3295.pcap | Bin 0 -> 20028 bytes src/tests/of10_pf5240-vv.out | 428 + src/tests/of10_pf5240.pcap | Bin 0 -> 9196 bytes src/tests/of10_s4810-vvvv.out | 1337 +++ src/tests/of10_s4810.pcap | Bin 0 -> 31208 bytes src/tests/ospf-gmpls.out | 86 + src/tests/ospf-gmpls.pcap | Bin 0 -> 640 bytes src/tests/ospf3_ah-vv.out | 645 ++ src/tests/ospf3_auth-vv.out | 10 + src/tests/ospf3_auth.pcap | Bin 0 -> 260 bytes src/tests/ospf3_bc-vv.out | 335 + src/tests/ospf3_mp-vv.out | 817 ++ src/tests/ospf3_nbma-vv.out | 912 ++ src/tests/pcap-invalid-version-1.out | 1 + src/tests/pcap-invalid-version-1.pcap | Bin 0 -> 530 bytes src/tests/pcap-invalid-version-2.out | 1 + src/tests/pcap-invalid-version-2.pcap | Bin 0 -> 530 bytes src/tests/pcap-ng-invalid-vers-1.out | 1 + src/tests/pcap-ng-invalid-vers-1.pcap | Bin 0 -> 260 bytes src/tests/pcap-ng-invalid-vers-2.out | 1 + src/tests/pcap-ng-invalid-vers-2.pcap | Bin 0 -> 260 bytes src/tests/pgm_zmtp1.pcap | Bin 0 -> 4149 bytes src/tests/pgm_zmtp1v.out | 76 + src/tests/pgmv.out | 28 + src/tests/pimv2_bootstrap-v.out | 24 + src/tests/pimv2_dm-v.out | 238 + src/tests/pimv2_hellos-v.out | 42 + src/tests/pimv2_register-v.out | 8 + src/tests/pimv2_sm-v.out | 300 + src/tests/pppoe.out | 1 + src/tests/pppoe.pcap | Bin 0 -> 78 bytes src/tests/pppoes.out | 2 + src/tests/pppoes.pcap | Bin 0 -> 124 bytes src/tests/pppoes_id.out | 1 + src/tests/print-A.out | 193 + src/tests/print-AA.out | 193 + src/tests/print-capX.out | 409 + src/tests/print-capXX.out | 419 + src/tests/print-flags.pcap | Bin 0 -> 6621 bytes src/tests/print-x.out | 409 + src/tests/print-xx.out | 419 + src/tests/radius-port1700-v.out | 4 + src/tests/radius-rfc4675-v.out | 43 + src/tests/radius-rfc5176-v.out | 24 + src/tests/radius-v.out | 47 + src/tests/resp_1.out | 150 + src/tests/resp_1_benchmark.pcap | Bin 0 -> 26858 bytes src/tests/resp_2.out | 14 + src/tests/resp_2_inline.pcap | Bin 0 -> 2671 bytes src/tests/resp_3.out | 163 + src/tests/resp_3_malicious.pcap | Bin 0 -> 14724 bytes src/tests/ripv1v2.out | 16 + src/tests/ripv1v2.pcap | Bin 0 -> 352 bytes src/tests/ripv2_auth.out | 94 + src/tests/ripv2_auth.pcap | Bin 0 -> 1648 bytes src/tests/rpl-14-dao.pcap | Bin 0 -> 118 bytes src/tests/rpl-14-daovvv.out | 1 + src/tests/rpl-19-pickdag.out | 1 + src/tests/rpl-19-pickdag.pcap | Bin 0 -> 150 bytes src/tests/rpl-19-pickdagvvv.out | 1 + src/tests/rpl-26-senddaoack.pcap | Bin 0 -> 118 bytes src/tests/rpl-26-senddaovv.out | 1 + src/tests/rpvst-v.out | 68 + src/tests/rpvstp-trunk-native-vid5.pcap | Bin 0 -> 1811 bytes src/tests/rstp-v.out | 90 + src/tests/rsvp-infinite-loop.pcap | Bin 0 -> 384 bytes src/tests/rsvp_infloop-v.out | 35 + src/tests/sflow_multiple_counter_30_pdus-nv.out | 30 + src/tests/sflow_multiple_counter_30_pdus.out | 1828 ++++ src/tests/sflow_multiple_counter_30_pdus.pcap | Bin 0 -> 29308 bytes src/tests/spb.out | 53 + src/tests/spb.pcap | Bin 0 -> 75249 bytes src/tests/spb_bpduv4.out | 25 + src/tests/spb_bpduv4.pcap | Bin 0 -> 5974 bytes src/tests/stp-v.out | 42 + src/tests/syslog-v.out | 16 + src/tests/syslog_udp.pcap | Bin 0 -> 515 bytes src/tests/tfo-5c1fa7f9ae91.pcap | Bin 0 -> 1084 bytes src/tests/tfo.out | 14 + src/tests/udld-v.out | 261 + src/tests/unaligned-nfs-1.out | 2 + src/tests/unaligned-nfs-1.pcap | Bin 0 -> 222 bytes src/tests/vrrp-v.out | 266 + src/tests/vrrp.out | 165 + src/tests/vrrp.pcap | Bin 0 -> 16344 bytes src/tests/vxlan.out | 20 + src/tests/vxlan.pcap | Bin 0 -> 1552 bytes src/tests/zmtp1.out | 73 + src/tests/zmtp1.pcap | Bin 0 -> 2119 bytes src/timeval-operations.h | 78 + src/udp.h | 321 + src/util-print.c | 856 ++ src/util.c | 169 + src/vfprintf.c | 54 + src/win32/prj/GNUmakefile | 175 + src/win32/prj/WinDump.dsp | 771 ++ src/win32/prj/WinDump.dsw | 29 + stime.awk | 19 - stream_base.h | 520 -- strtoaddr.c | 239 - strtoaddr.h | 23 - tcp.h | 164 - tcpdump.1.in | 1975 ---- tcpdump.c | 3251 ------- tests/02-sunrise-sunset-esp.pcap | Bin 1352 -> 0 bytes tests/08-sunrise-sunset-aes.pcap | Bin 1480 -> 0 bytes tests/08-sunrise-sunset-esp2.pcap | Bin 1800 -> 0 bytes tests/3560_CDP.pcap | Bin 1272 -> 0 bytes tests/802.1D_spanning_tree.pcap | Bin 1088 -> 0 bytes tests/802.1w_rapid_STP.pcap | Bin 2304 -> 0 bytes tests/AoE_Linux.pcap | Bin 95288 -> 0 bytes tests/DECnet_Phone.pcap | Bin 7678 -> 0 bytes tests/DTP.pcap | Bin 934 -> 0 bytes tests/EIGRP_adjacency.pcap | Bin 5195 -> 0 bytes tests/EIGRP_goodbye.pcap | Bin 1374 -> 0 bytes tests/EIGRP_subnet_down.pcap | Bin 1884 -> 0 bytes tests/EIGRP_subnet_up.pcap | Bin 1356 -> 0 bytes tests/HDLC.pcap | Bin 3532 -> 0 bytes tests/HSRP_coup.pcap | Bin 3984 -> 0 bytes tests/HSRP_election.pcap | Bin 3832 -> 0 bytes tests/HSRP_failover.pcap | Bin 3056 -> 0 bytes tests/IGMP_V1.pcap | Bin 2062 -> 0 bytes tests/IGMP_V2.pcap | Bin 1364 -> 0 bytes tests/ISAKMP_sa_setup.pcap | Bin 2030 -> 0 bytes tests/ISIS_external_lsp.pcap | Bin 17371 -> 0 bytes tests/ISIS_level1_adjacency.pcap | Bin 28022 -> 0 bytes tests/ISIS_level2_adjacency.pcap | Bin 53091 -> 0 bytes tests/ISIS_p2p_adjacency.pcap | Bin 22260 -> 0 bytes tests/LACP.pcap | Bin 2824 -> 0 bytes tests/LLDP_and_CDP.pcap | Bin 4108 -> 0 bytes tests/MSTP_Intra-Region_BPDUs.pcap | Bin 1714 -> 0 bytes tests/OLSRv1_HNA_sgw_1.out | 13 - tests/OLSRv1_HNA_sgw_1.pcap | Bin 158 -> 0 bytes tests/OSPFv3_NBMA_adjacencies.pcap | Bin 13188 -> 0 bytes tests/OSPFv3_broadcast_adjacency.pcap | Bin 5536 -> 0 bytes tests/OSPFv3_multipoint_adjacencies.pcap | Bin 11816 -> 0 bytes tests/OSPFv3_with_AH.pcap | Bin 10974 -> 0 bytes tests/PIM-DM_pruning.pcap | Bin 10436 -> 0 bytes tests/PIM-SM_join_prune.pcap | Bin 3940 -> 0 bytes tests/PIM_register_register-stop.pcap | Bin 258 -> 0 bytes tests/PIMv2_bootstrap.pcap | Bin 712 -> 0 bytes tests/PIMv2_hellos.pcap | Bin 528 -> 0 bytes tests/QinQpacket.out | 249 - tests/QinQpacket.pcap | Bin 78264 -> 0 bytes tests/QinQpacketv.out | 1977 ---- tests/RADIUS-RFC4675.pcap | Bin 766 -> 0 bytes tests/RADIUS-RFC5176.pcap | Bin 600 -> 0 bytes tests/RADIUS-port1700.pcap | Bin 107 -> 0 bytes tests/RADIUS.pcap | Bin 775 -> 0 bytes tests/TESTLIST | 352 - tests/TESTonce | 68 - tests/TESTrun.sh | 72 - tests/UDLD.pcap | Bin 3426 -> 0 bytes tests/ahcp-vv.out | 76 - tests/ahcp.pcap | Bin 1784 -> 0 bytes tests/aoe_1-v.out | 888 -- tests/aoe_1.out | 186 - tests/babel.pcap | Bin 3320 -> 0 bytes tests/babel1.out | 25 - tests/babel1v.out | 67 - tests/babel_auth.out | 13 - tests/babel_auth.pcap | Bin 530 -> 0 bytes tests/babel_pad1.out | 2 - tests/babel_pad1.pcap | Bin 257 -> 0 bytes tests/babel_rtt.out | 25 - tests/babel_rtt.pcap | Bin 902 -> 0 bytes tests/bgp-aigp.out | 20 - tests/bgp-aigp.pcap | Bin 258 -> 0 bytes tests/bgp-infinite-loop.pcap | Bin 554 -> 0 bytes tests/bgp_infloop-v.out | 15 - tests/bgp_vpn_attrset.out | 19 - tests/bgp_vpn_attrset.pcap | Bin 217 -> 0 bytes tests/cdp-v.out | 57 - tests/chdlc-slarp-short.pcap | Bin 58 -> 0 bytes tests/chdlc-slarp.pcap | Bin 62 -> 0 bytes tests/crypto.sh | 36 - tests/cve-2014-8767-OLSR.out | 4 - tests/cve-2014-8767-OLSR.pcap | Bin 115 -> 0 bytes tests/cve-2014-8768-Geonet.out | 1 - tests/cve-2014-8768-Geonet.pcap | Bin 115 -> 0 bytes tests/cve-2014-8769-AODV.out | 2 - tests/cve-2014-8769-AODV.pcap | Bin 115 -> 0 bytes tests/cve2015-0261-crash.out | 1 - tests/cve2015-0261-crash.pcap | Bin 201 -> 0 bytes tests/cve2015-0261-ipv6.out | 3 - tests/cve2015-0261-ipv6.pcap | Bin 682 -> 0 bytes tests/dcb_ets.out | 1923 ---- tests/dcb_ets.pcap | Bin 13279 -> 0 bytes tests/dcb_pfc.out | 148 - tests/dcb_pfc.pcap | Bin 850 -> 0 bytes tests/dcb_qcn.out | 363 - tests/dcb_qcn.pcap | Bin 3730 -> 0 bytes tests/dccp_partial_csum_v4_longer.out | 30 - tests/dccp_partial_csum_v4_longer.pcap | Bin 1778 -> 0 bytes tests/dccp_partial_csum_v4_simple.out | 14 - tests/dccp_partial_csum_v4_simple.pcap | Bin 642 -> 0 bytes tests/dccp_partial_csum_v6_longer.out | 9 - tests/dccp_partial_csum_v6_longer.pcap | Bin 1230 -> 0 bytes tests/dccp_partial_csum_v6_simple.out | 7 - tests/dccp_partial_csum_v6_simple.pcap | Bin 782 -> 0 bytes tests/decnet.out | 139 - tests/dhcp-rfc3004-v.out | 55 - tests/dhcp-rfc3004.pcap | Bin 1420 -> 0 bytes tests/dhcp-rfc5859-v.out | 44 - tests/dhcp-rfc5859.pcap | Bin 1456 -> 0 bytes tests/dhcpv6-AFTR-Name-RFC6334.out | 4 - tests/dhcpv6-AFTR-Name-RFC6334.pcap | Bin 747 -> 0 bytes tests/dhcpv6-domain-list.out | 1 - tests/dhcpv6-domain-list.pcap | Bin 195 -> 0 bytes tests/dhcpv6-ia-na.out | 4 - tests/dhcpv6-ia-na.pcap | Bin 638 -> 0 bytes tests/dhcpv6-ia-pd.out | 4 - tests/dhcpv6-ia-pd.pcap | Bin 641 -> 0 bytes tests/dhcpv6-ia-ta.out | 4 - tests/dhcpv6-ia-ta.pcap | Bin 606 -> 0 bytes tests/dhcpv6-ntp-server.out | 1 - tests/dhcpv6-ntp-server.pcap | Bin 207 -> 0 bytes tests/dhcpv6-sip-server-d.out | 1 - tests/dhcpv6-sip-server-d.pcap | Bin 208 -> 0 bytes tests/dnssec-vv.out | 12 - tests/dnssec.pcap | Bin 3936 -> 0 bytes tests/dtp-v.out | 55 - tests/dvmrp.out | 2 - tests/e1000g.out | 20 - tests/e1000g.pcap | Bin 2504 -> 0 bytes tests/eapon1.gdbinit | 1 - tests/eapon1.out | 114 - tests/eapon1.pcap | Bin 16412 -> 0 bytes tests/eigrp1-v.out | 444 - tests/eigrp2-v.out | 120 - tests/eigrp3-v.out | 143 - tests/eigrp4-v.out | 105 - tests/epgm_zmtp1.pcap | Bin 4355 -> 0 bytes tests/epgm_zmtp1v.out | 79 - tests/epgmv.out | 30 - tests/esp-secrets.txt | 5 - tests/esp0.out | 8 - tests/esp1.gdbinit | 1 - tests/esp1.out | 8 - tests/esp2.gdbinit | 1 - tests/esp2.out | 8 - tests/esp3.gdbinit | 1 - tests/esp4.gdbinit | 2 - tests/esp5.gdbinit | 3 - tests/esp5.out | 8 - tests/espudp1.out | 8 - tests/espudp1.pcap | Bin 1416 -> 0 bytes tests/evb.out | 146 - tests/evb.pcap | Bin 2182 -> 0 bytes tests/failure-outputs.txt | 0 tests/forces1.out | 40 - tests/forces1.pcap | Bin 2488 -> 0 bytes tests/forces1vvv.out | 227 - tests/forces1vvvv.out | 306 - tests/forces2.pcap | Bin 9878 -> 0 bytes tests/forces2v.out | 0 tests/forces2vv.out | 378 - tests/forces2vvv.out | 751 -- tests/forces3.pcap | Bin 18176 -> 0 bytes tests/forces3vvv.out | 602 -- tests/geneve-tcp.out | 33 - tests/geneve-vni.out | 20 - tests/geneve-vv.out | 156 - tests/geneve.pcap | Bin 9928 -> 0 bytes tests/geonet_and_calm_fast.out | 169 - tests/geonet_and_calm_fast.pcap | Bin 7794 -> 0 bytes tests/hdlc1.out | 1 - tests/hdlc2.out | 1 - tests/hdlc3.out | 38 - tests/hdlc4.out | 7 - tests/hdlc_slarp.pcap | Bin 612 -> 0 bytes tests/hncp.out | 53 - tests/hncp.pcap | Bin 1566 -> 0 bytes tests/hsrp_1-v.out | 102 - tests/hsrp_1.out | 51 - tests/hsrp_2-v.out | 98 - tests/hsrp_3-v.out | 78 - tests/icmpv6.out | 26 - tests/icmpv6.pcap | Bin 754 -> 0 bytes tests/icmpv6_opt24-v.out | 16 - tests/icmpv6_opt24.pcap | Bin 404 -> 0 bytes tests/ieee802.11_exthdr.out | 26 - tests/ieee802.11_exthdr.pcap | Bin 4499 -> 0 bytes tests/ieee802.11_rx-stbc.out | 3 - tests/ieee802.11_rx-stbc.pcap | Bin 541 -> 0 bytes tests/igmpv1.out | 27 - tests/igmpv2.out | 18 - tests/igmpv3-queries.out | 6 - tests/igmpv3-queries.pcap | Bin 420 -> 0 bytes tests/ikev2four.out | 107 - tests/ikev2four.pcap | Bin 5856 -> 0 bytes tests/ikev2fourv.out | 107 - tests/ikev2fourv4.out | 107 - tests/ikev2pI2-secrets.txt | 2 - tests/ikev2pI2.out | 41 - tests/ikev2pI2.pcap | Bin 912 -> 0 bytes tests/ipv6-bad-version.out | 4 - tests/ipv6-bad-version.pcap | Bin 416 -> 0 bytes tests/ipv6-routing-header.out | 4 - tests/ipv6-routing-header.pcap | Bin 464 -> 0 bytes tests/isakmp-delete-segfault.pcap | Bin 721 -> 0 bytes tests/isakmp-identification-segfault.pcap | Bin 356 -> 0 bytes tests/isakmp-pointer-loop.pcap | Bin 112 -> 0 bytes tests/isakmp1.out | 1 - tests/isakmp2.out | 1 - tests/isakmp3.out | 3 - tests/isakmp4.out | 35 - tests/isakmp4500.pcap | Bin 6830 -> 0 bytes tests/isakmp5-v.out | 44 - tests/isis-infinite-loop.pcap | Bin 454 -> 0 bytes tests/isis_1-v.out | 270 - tests/isis_1.out | 15 - tests/isis_2-v.out | 403 - tests/isis_3-v.out | 774 -- tests/isis_4-v.out | 400 - tests/isis_infloop-v.out | 40 - tests/isis_poi.out | 8 - tests/isis_poi.pcap | Bin 122 -> 0 bytes tests/isis_poi2.out | 9 - tests/isis_poi2.pcap | Bin 128 -> 0 bytes tests/isup.out | 6 - tests/isup.pcap | Bin 704 -> 0 bytes tests/isupvv.out | 30 - tests/kday1.out | 15 - tests/kday1.pcap | Bin 535 -> 0 bytes tests/kday2.out | 34 - tests/kday2.pcap | Bin 900 -> 0 bytes tests/kday3.out | 41 - tests/kday3.pcap | Bin 4049 -> 0 bytes tests/kday4.out | 64 - tests/kday4.pcap | Bin 2248 -> 0 bytes tests/kday5.out | 35 - tests/kday5.pcap | Bin 7225 -> 0 bytes tests/kday6.out | 448 - tests/kday6.pcap | Bin 4956 -> 0 bytes tests/kday7.out | 63 - tests/kday7.pcap | Bin 3955 -> 0 bytes tests/kday8.out | 34 - tests/kday8.pcap | Bin 900 -> 0 bytes tests/lacp-ev.out | 200 - tests/ldp-infinite-loop.pcap | Bin 414 -> 0 bytes tests/ldp_infloop.out | 5 - tests/lisp_eid_notify.out | 63 - tests/lisp_eid_notify.pcap | Bin 776 -> 0 bytes tests/lisp_eid_register.out | 28 - tests/lisp_eid_register.pcap | Bin 384 -> 0 bytes tests/lisp_ipv6.out | 24 - tests/lisp_ipv6.pcap | Bin 396 -> 0 bytes tests/lldp_cdp-ev.out | 252 - tests/lmp-v.out | 200 - tests/lmp-v.sh | 19 - tests/lmp.out | 18 - tests/lmp.pcap | Bin 1732 -> 0 bytes tests/loopback.out | 6 - tests/loopback.pcap | Bin 592 -> 0 bytes tests/lspping-fec-ldp-v.out | 111 - tests/lspping-fec-ldp-vv.out | 121 - tests/lspping-fec-ldp.out | 13 - tests/lspping-fec-ldp.pcap | Bin 1190 -> 0 bytes tests/lspping-fec-rsvp-v.out | 105 - tests/lspping-fec-rsvp-vv.out | 125 - tests/lspping-fec-rsvp.out | 10 - tests/lspping-fec-rsvp.pcap | Bin 984 -> 0 bytes tests/medsa-e.out | 20 - tests/medsa.out | 20 - tests/medsa.pcap | Bin 2568 -> 0 bytes tests/mpbgp-linklocal-nexthop.out | 10 - tests/mpbgp-linklocal-nexthop.pcap | Bin 196 -> 0 bytes tests/mpls-ldp-hello.out | 10 - tests/mpls-ldp-hello.pcap | Bin 114 -> 0 bytes tests/mpls-traceroute-v.out | 81 - tests/mpls-traceroute.out | 18 - tests/mpls-traceroute.pcap | Bin 1956 -> 0 bytes tests/mptcp-fclose.out | 11 - tests/mptcp-fclose.pcap | Bin 1016 -> 0 bytes tests/mptcp.out | 264 - tests/mptcp.pcap | Bin 39394 -> 0 bytes tests/mrinfo_query.pcap | Bin 182 -> 0 bytes tests/msnlb.out | 2 - tests/msnlb.pcap | Bin 248 -> 0 bytes tests/msnlb2.out | 2 - tests/msnlb2.pcap | Bin 188 -> 0 bytes tests/mstp-v.out | 130 - tests/mtrace.out | 2 - tests/mtrace.pcap | Bin 238 -> 0 bytes tests/nflog-e.out | 4 - tests/nflog-e.sh | 10 - tests/nflog.pcap | Bin 840 -> 0 bytes tests/nsh-over-vxlan-gpe-v.out | 5 - tests/nsh-over-vxlan-gpe-vv.out | 5 - tests/nsh-over-vxlan-gpe-vvv.out | 9 - tests/nsh-over-vxlan-gpe.out | 1 - tests/nsh-over-vxlan-gpe.pcap | Bin 146 -> 0 bytes tests/of10_7050q-v.out | 18 - tests/of10_7050q.pcap | Bin 588 -> 0 bytes tests/of10_7050sx_bsn-vv.out | 343 - tests/of10_7050sx_bsn.pcap | Bin 6680 -> 0 bytes tests/of10_p3295-vv.out | 798 -- tests/of10_p3295.pcap | Bin 20028 -> 0 bytes tests/of10_pf5240-vv.out | 428 - tests/of10_pf5240.pcap | Bin 9196 -> 0 bytes tests/of10_s4810-vvvv.out | 1337 --- tests/of10_s4810.pcap | Bin 31208 -> 0 bytes tests/ospf-gmpls.out | 86 - tests/ospf-gmpls.pcap | Bin 640 -> 0 bytes tests/ospf3_ah-vv.out | 645 -- tests/ospf3_auth-vv.out | 10 - tests/ospf3_auth.pcap | Bin 260 -> 0 bytes tests/ospf3_bc-vv.out | 335 - tests/ospf3_mp-vv.out | 817 -- tests/ospf3_nbma-vv.out | 912 -- tests/pcap-invalid-version-1.out | 1 - tests/pcap-invalid-version-1.pcap | Bin 530 -> 0 bytes tests/pcap-invalid-version-2.out | 1 - tests/pcap-invalid-version-2.pcap | Bin 530 -> 0 bytes tests/pcap-ng-invalid-vers-1.out | 1 - tests/pcap-ng-invalid-vers-1.pcap | Bin 260 -> 0 bytes tests/pcap-ng-invalid-vers-2.out | 1 - tests/pcap-ng-invalid-vers-2.pcap | Bin 260 -> 0 bytes tests/pgm_zmtp1.pcap | Bin 4149 -> 0 bytes tests/pgm_zmtp1v.out | 76 - tests/pgmv.out | 28 - tests/pimv2_bootstrap-v.out | 24 - tests/pimv2_dm-v.out | 238 - tests/pimv2_hellos-v.out | 42 - tests/pimv2_register-v.out | 8 - tests/pimv2_sm-v.out | 300 - tests/pppoe.out | 1 - tests/pppoe.pcap | Bin 78 -> 0 bytes tests/pppoes.out | 2 - tests/pppoes.pcap | Bin 124 -> 0 bytes tests/pppoes_id.out | 1 - tests/print-A.out | 193 - tests/print-AA.out | 193 - tests/print-capX.out | 409 - tests/print-capXX.out | 419 - tests/print-flags.pcap | Bin 6621 -> 0 bytes tests/print-x.out | 409 - tests/print-xx.out | 419 - tests/radius-port1700-v.out | 4 - tests/radius-rfc4675-v.out | 43 - tests/radius-rfc5176-v.out | 24 - tests/radius-v.out | 47 - tests/resp_1.out | 150 - tests/resp_1_benchmark.pcap | Bin 26858 -> 0 bytes tests/resp_2.out | 14 - tests/resp_2_inline.pcap | Bin 2671 -> 0 bytes tests/resp_3.out | 163 - tests/resp_3_malicious.pcap | Bin 14724 -> 0 bytes tests/ripv1v2.out | 16 - tests/ripv1v2.pcap | Bin 352 -> 0 bytes tests/ripv2_auth.out | 94 - tests/ripv2_auth.pcap | Bin 1648 -> 0 bytes tests/rpl-14-dao.pcap | Bin 118 -> 0 bytes tests/rpl-14-daovvv.out | 1 - tests/rpl-19-pickdag.out | 1 - tests/rpl-19-pickdag.pcap | Bin 150 -> 0 bytes tests/rpl-19-pickdagvvv.out | 1 - tests/rpl-26-senddaoack.pcap | Bin 118 -> 0 bytes tests/rpl-26-senddaovv.out | 1 - tests/rpvst-v.out | 68 - tests/rpvstp-trunk-native-vid5.pcap | Bin 1811 -> 0 bytes tests/rstp-v.out | 90 - tests/rsvp-infinite-loop.pcap | Bin 384 -> 0 bytes tests/rsvp_infloop-v.out | 35 - tests/sflow_multiple_counter_30_pdus-nv.out | 30 - tests/sflow_multiple_counter_30_pdus.out | 1828 ---- tests/sflow_multiple_counter_30_pdus.pcap | Bin 29308 -> 0 bytes tests/spb.out | 53 - tests/spb.pcap | Bin 75249 -> 0 bytes tests/spb_bpduv4.out | 25 - tests/spb_bpduv4.pcap | Bin 5974 -> 0 bytes tests/stp-v.out | 42 - tests/syslog-v.out | 16 - tests/syslog_udp.pcap | Bin 515 -> 0 bytes tests/tfo-5c1fa7f9ae91.pcap | Bin 1084 -> 0 bytes tests/tfo.out | 14 - tests/udld-v.out | 261 - tests/unaligned-nfs-1.out | 2 - tests/unaligned-nfs-1.pcap | Bin 222 -> 0 bytes tests/vrrp-v.out | 266 - tests/vrrp.out | 165 - tests/vrrp.pcap | Bin 16344 -> 0 bytes tests/vxlan.out | 20 - tests/vxlan.pcap | Bin 1552 -> 0 bytes tests/zmtp1.out | 73 - tests/zmtp1.pcap | Bin 2119 -> 0 bytes timeval-operations.h | 78 - udp.h | 321 - util-print.c | 856 -- util.c | 169 - vfprintf.c | 54 - win32/prj/GNUmakefile | 175 - win32/prj/WinDump.dsp | 771 -- win32/prj/WinDump.dsw | 29 - 1502 files changed, 167864 insertions(+), 154077 deletions(-) delete mode 100644 CHANGES delete mode 100644 CREDITS delete mode 100644 INSTALL.txt delete mode 100644 LICENSE delete mode 100644 Makefile-devel-adds delete mode 100644 Makefile.in delete mode 100644 README.md delete mode 100644 Readme.Win32 delete mode 100644 VERSION delete mode 100644 aclocal.m4 delete mode 100644 addrtoname.c delete mode 100644 addrtoname.h delete mode 100644 addrtostr.c delete mode 100644 addrtostr.h delete mode 100644 af.c delete mode 100644 af.h delete mode 100644 ah.h delete mode 100644 appletalk.h delete mode 100644 ascii_strcasecmp.c delete mode 100644 ascii_strcasecmp.h delete mode 100644 atime.awk delete mode 100644 atm.h delete mode 100644 bpf_dump.c delete mode 100644 chdlc.h delete mode 100644 checksum.c create mode 100644 cmake-build-debug/.cmake/api/v1/query/client-vscode/query.json create mode 100644 cmake-build-debug/.cmake/api/v1/reply/cache-v2-d6be4d7a072d5438b4cc.json create mode 100644 cmake-build-debug/.cmake/api/v1/reply/codemodel-v2-26d6a3e73bd6e837eafc.json create mode 100644 cmake-build-debug/.cmake/api/v1/reply/index-2020-09-28T06-04-53-0037.json create mode 100644 cmake-build-debug/CMakeCache.txt create mode 100644 cmake-build-debug/CMakeFiles/3.17.3/CMakeCCompiler.cmake create mode 100644 cmake-build-debug/CMakeFiles/3.17.3/CMakeCXXCompiler.cmake create mode 100755 cmake-build-debug/CMakeFiles/3.17.3/CMakeDetermineCompilerABI_C.bin create mode 100755 cmake-build-debug/CMakeFiles/3.17.3/CMakeDetermineCompilerABI_CXX.bin create mode 100644 cmake-build-debug/CMakeFiles/3.17.3/CMakeSystem.cmake create mode 100644 cmake-build-debug/CMakeFiles/3.17.3/CompilerIdC/CMakeCCompilerId.c create mode 100755 cmake-build-debug/CMakeFiles/3.17.3/CompilerIdC/a.out create mode 100644 cmake-build-debug/CMakeFiles/3.17.3/CompilerIdCXX/CMakeCXXCompilerId.cpp create mode 100755 cmake-build-debug/CMakeFiles/3.17.3/CompilerIdCXX/a.out create mode 100644 cmake-build-debug/CMakeFiles/CMakeDirectoryInformation.cmake create mode 100644 cmake-build-debug/CMakeFiles/CMakeOutput.log create mode 100644 cmake-build-debug/CMakeFiles/Makefile.cmake create mode 100644 cmake-build-debug/CMakeFiles/Makefile2 create mode 100644 cmake-build-debug/CMakeFiles/TargetDirectories.txt create mode 100644 cmake-build-debug/CMakeFiles/cmake.check_cache create mode 100755 cmake-build-debug/CMakeFiles/feature_tests.bin create mode 100644 cmake-build-debug/CMakeFiles/feature_tests.cxx create mode 100644 cmake-build-debug/CMakeFiles/progress.marks create mode 100644 cmake-build-debug/CPackConfig.cmake create mode 100644 cmake-build-debug/CPackSourceConfig.cmake create mode 100644 cmake-build-debug/Makefile create mode 100644 cmake-build-debug/addrtoname.o create mode 100644 cmake-build-debug/addrtostr.o create mode 100644 cmake-build-debug/af.o create mode 100644 cmake-build-debug/ascii_strcasecmp.o create mode 100755 cmake-build-debug/autorevision.sh create mode 100644 cmake-build-debug/changelog.txt create mode 100644 cmake-build-debug/checksum.o create mode 100644 cmake-build-debug/cmake_install.cmake create mode 100644 cmake-build-debug/config.h create mode 100644 cmake-build-debug/config.log create mode 100755 cmake-build-debug/config.status create mode 100644 cmake-build-debug/cpack.o create mode 100644 cmake-build-debug/gmpls.o create mode 100644 cmake-build-debug/gmt2local.o create mode 100644 cmake-build-debug/in_cksum.o create mode 100644 cmake-build-debug/ipproto.o create mode 100644 cmake-build-debug/l2vpn.o create mode 100644 cmake-build-debug/libnetdissect.a create mode 100644 cmake-build-debug/machdep.o create mode 100644 cmake-build-debug/net_common.o create mode 100644 cmake-build-debug/nlpid.o create mode 100644 cmake-build-debug/oui.o create mode 100644 cmake-build-debug/parsenfsfh.o create mode 100644 cmake-build-debug/print-802_11.o create mode 100644 cmake-build-debug/print-802_15_4.o create mode 100644 cmake-build-debug/print-ah.o create mode 100644 cmake-build-debug/print-ahcp.o create mode 100644 cmake-build-debug/print-aodv.o create mode 100644 cmake-build-debug/print-aoe.o create mode 100644 cmake-build-debug/print-ap1394.o create mode 100644 cmake-build-debug/print-arcnet.o create mode 100644 cmake-build-debug/print-arp.o create mode 100644 cmake-build-debug/print-ascii.o create mode 100644 cmake-build-debug/print-atalk.o create mode 100644 cmake-build-debug/print-atm.o create mode 100644 cmake-build-debug/print-babel.o create mode 100644 cmake-build-debug/print-beep.o create mode 100644 cmake-build-debug/print-bfd.o create mode 100644 cmake-build-debug/print-bgp.o create mode 100644 cmake-build-debug/print-bootp.o create mode 100644 cmake-build-debug/print-bt.o create mode 100644 cmake-build-debug/print-calm-fast.o create mode 100644 cmake-build-debug/print-carp.o create mode 100644 cmake-build-debug/print-cdp.o create mode 100644 cmake-build-debug/print-cfm.o create mode 100644 cmake-build-debug/print-chdlc.o create mode 100644 cmake-build-debug/print-cip.o create mode 100644 cmake-build-debug/print-cnfp.o create mode 100644 cmake-build-debug/print-dccp.o create mode 100644 cmake-build-debug/print-decnet.o create mode 100644 cmake-build-debug/print-dhcp6.o create mode 100644 cmake-build-debug/print-domain.o create mode 100644 cmake-build-debug/print-dtp.o create mode 100644 cmake-build-debug/print-dvmrp.o create mode 100644 cmake-build-debug/print-eap.o create mode 100644 cmake-build-debug/print-egp.o create mode 100644 cmake-build-debug/print-eigrp.o create mode 100644 cmake-build-debug/print-enc.o create mode 100644 cmake-build-debug/print-esp.o create mode 100644 cmake-build-debug/print-ether.o create mode 100644 cmake-build-debug/print-fddi.o create mode 100644 cmake-build-debug/print-forces.o create mode 100644 cmake-build-debug/print-fr.o create mode 100644 cmake-build-debug/print-frag6.o create mode 100644 cmake-build-debug/print-ftp.o create mode 100644 cmake-build-debug/print-geneve.o create mode 100644 cmake-build-debug/print-geonet.o create mode 100644 cmake-build-debug/print-gre.o create mode 100644 cmake-build-debug/print-hncp.o create mode 100644 cmake-build-debug/print-hsrp.o create mode 100644 cmake-build-debug/print-http.o create mode 100644 cmake-build-debug/print-icmp.o create mode 100644 cmake-build-debug/print-icmp6.o create mode 100644 cmake-build-debug/print-igmp.o create mode 100644 cmake-build-debug/print-igrp.o create mode 100644 cmake-build-debug/print-ip.o create mode 100644 cmake-build-debug/print-ip6.o create mode 100644 cmake-build-debug/print-ip6opts.o create mode 100644 cmake-build-debug/print-ipcomp.o create mode 100644 cmake-build-debug/print-ipfc.o create mode 100644 cmake-build-debug/print-ipnet.o create mode 100644 cmake-build-debug/print-ipx.o create mode 100644 cmake-build-debug/print-isakmp.o create mode 100644 cmake-build-debug/print-isoclns.o create mode 100644 cmake-build-debug/print-juniper.o create mode 100644 cmake-build-debug/print-krb.o create mode 100644 cmake-build-debug/print-l2tp.o create mode 100644 cmake-build-debug/print-lane.o create mode 100644 cmake-build-debug/print-ldp.o create mode 100644 cmake-build-debug/print-lisp.o create mode 100644 cmake-build-debug/print-llc.o create mode 100644 cmake-build-debug/print-lldp.o create mode 100644 cmake-build-debug/print-lmp.o create mode 100644 cmake-build-debug/print-loopback.o create mode 100644 cmake-build-debug/print-lspping.o create mode 100644 cmake-build-debug/print-lwapp.o create mode 100644 cmake-build-debug/print-lwres.o create mode 100644 cmake-build-debug/print-m3ua.o create mode 100644 cmake-build-debug/print-medsa.o create mode 100644 cmake-build-debug/print-mobile.o create mode 100644 cmake-build-debug/print-mobility.o create mode 100644 cmake-build-debug/print-mpcp.o create mode 100644 cmake-build-debug/print-mpls.o create mode 100644 cmake-build-debug/print-mptcp.o create mode 100644 cmake-build-debug/print-msdp.o create mode 100644 cmake-build-debug/print-msnlb.o create mode 100644 cmake-build-debug/print-nflog.o create mode 100644 cmake-build-debug/print-nfs.o create mode 100644 cmake-build-debug/print-nsh.o create mode 100644 cmake-build-debug/print-ntp.o create mode 100644 cmake-build-debug/print-null.o create mode 100644 cmake-build-debug/print-olsr.o create mode 100644 cmake-build-debug/print-openflow-1.0.o create mode 100644 cmake-build-debug/print-openflow.o create mode 100644 cmake-build-debug/print-ospf.o create mode 100644 cmake-build-debug/print-ospf6.o create mode 100644 cmake-build-debug/print-otv.o create mode 100644 cmake-build-debug/print-pgm.o create mode 100644 cmake-build-debug/print-pim.o create mode 100644 cmake-build-debug/print-pktap.o create mode 100644 cmake-build-debug/print-ppi.o create mode 100644 cmake-build-debug/print-ppp.o create mode 100644 cmake-build-debug/print-pppoe.o create mode 100644 cmake-build-debug/print-pptp.o create mode 100644 cmake-build-debug/print-radius.o create mode 100644 cmake-build-debug/print-raw.o create mode 100644 cmake-build-debug/print-resp.o create mode 100644 cmake-build-debug/print-rip.o create mode 100644 cmake-build-debug/print-ripng.o create mode 100644 cmake-build-debug/print-rpki-rtr.o create mode 100644 cmake-build-debug/print-rrcp.o create mode 100644 cmake-build-debug/print-rsvp.o create mode 100644 cmake-build-debug/print-rt6.o create mode 100644 cmake-build-debug/print-rtsp.o create mode 100644 cmake-build-debug/print-rx.o create mode 100644 cmake-build-debug/print-sctp.o create mode 100644 cmake-build-debug/print-sflow.o create mode 100644 cmake-build-debug/print-sip.o create mode 100644 cmake-build-debug/print-sl.o create mode 100644 cmake-build-debug/print-sll.o create mode 100644 cmake-build-debug/print-slow.o create mode 100644 cmake-build-debug/print-smb.o create mode 100644 cmake-build-debug/print-smtp.o create mode 100644 cmake-build-debug/print-snmp.o create mode 100644 cmake-build-debug/print-stp.o create mode 100644 cmake-build-debug/print-sunatm.o create mode 100644 cmake-build-debug/print-sunrpc.o create mode 100644 cmake-build-debug/print-symantec.o create mode 100644 cmake-build-debug/print-syslog.o create mode 100644 cmake-build-debug/print-tcp.o create mode 100644 cmake-build-debug/print-telnet.o create mode 100644 cmake-build-debug/print-tftp.o create mode 100644 cmake-build-debug/print-timed.o create mode 100644 cmake-build-debug/print-tipc.o create mode 100644 cmake-build-debug/print-token.o create mode 100644 cmake-build-debug/print-udld.o create mode 100644 cmake-build-debug/print-udp.o create mode 100644 cmake-build-debug/print-usb.o create mode 100644 cmake-build-debug/print-vjc.o create mode 100644 cmake-build-debug/print-vqp.o create mode 100644 cmake-build-debug/print-vrrp.o create mode 100644 cmake-build-debug/print-vtp.o create mode 100644 cmake-build-debug/print-vxlan-gpe.o create mode 100644 cmake-build-debug/print-vxlan.o create mode 100644 cmake-build-debug/print-wb.o create mode 100644 cmake-build-debug/print-zephyr.o create mode 100644 cmake-build-debug/print-zeromq.o create mode 100644 cmake-build-debug/print.o create mode 100644 cmake-build-debug/setsignal.o create mode 100644 cmake-build-debug/signature.o create mode 100644 cmake-build-debug/smbutil.o create mode 100644 cmake-build-debug/strlcat.o create mode 100644 cmake-build-debug/strlcpy.o create mode 100644 cmake-build-debug/strtoaddr.o create mode 100755 cmake-build-debug/tcpdump create mode 100644 cmake-build-debug/tcpdump.1 create mode 100644 cmake-build-debug/tcpdump.o create mode 100755 cmake-build-debug/tcpdump_mesa create mode 100644 cmake-build-debug/util-print.o create mode 100644 cmake-build-debug/util.o create mode 100644 cmake-build-debug/version.c create mode 100644 cmake-build-debug/version.cmake create mode 100644 cmake-build-debug/version.o create mode 100644 cmake/changelog.sh delete mode 100644 config.guess delete mode 100644 config.h.in delete mode 100644 config.sub delete mode 100755 configure delete mode 100644 configure.in delete mode 100644 cpack.c delete mode 100644 cpack.h delete mode 100644 ether.h delete mode 100644 ethertype.h delete mode 100644 extract.h delete mode 100644 getopt_long.h delete mode 100644 gmpls.c delete mode 100644 gmpls.h delete mode 100644 gmt2local.c delete mode 100644 gmt2local.h delete mode 100644 in_cksum.c delete mode 100644 install-sh delete mode 100644 interface.h delete mode 100644 ip.h delete mode 100644 ip6.h delete mode 100644 ipproto.c delete mode 100644 ipproto.h delete mode 100644 l2vpn.c delete mode 100644 l2vpn.h delete mode 100644 lbl/os-osf4.h delete mode 100644 lbl/os-solaris2.h delete mode 100644 lbl/os-sunos4.h delete mode 100644 lbl/os-ultrix4.h delete mode 100644 llc.h delete mode 100644 machdep.c delete mode 100644 machdep.h delete mode 100644 makemib delete mode 100644 mesa_net.h delete mode 100644 mesa_pkt_dump.h delete mode 100644 mib.h delete mode 100644 missing/datalinks.c delete mode 100644 missing/dlnames.c delete mode 100644 missing/getopt_long.c delete mode 100644 missing/snprintf.c delete mode 100644 missing/strdup.c delete mode 100644 missing/strlcat.c delete mode 100644 missing/strlcpy.c delete mode 100644 missing/strsep.c delete mode 100644 mkdep delete mode 100644 mpls.h delete mode 100644 nameser.h delete mode 100644 net_common.c delete mode 100644 netdissect-stdinc.h delete mode 100644 netdissect.h delete mode 100644 nfs.h delete mode 100644 nfsfh.h delete mode 100644 nlpid.c delete mode 100644 nlpid.h delete mode 100644 openflow.h delete mode 100644 ospf.h delete mode 100644 oui.c delete mode 100644 oui.h delete mode 100644 packetdat.awk delete mode 100644 parsenfsfh.c delete mode 100644 pcap-missing.h delete mode 100644 pcap_dump_ftell.c delete mode 100644 ppp.h delete mode 100644 print-802_11.c delete mode 100644 print-802_15_4.c delete mode 100644 print-ah.c delete mode 100644 print-ahcp.c delete mode 100644 print-aodv.c delete mode 100644 print-aoe.c delete mode 100644 print-ap1394.c delete mode 100644 print-arcnet.c delete mode 100644 print-arp.c delete mode 100644 print-ascii.c delete mode 100644 print-atalk.c delete mode 100644 print-atm.c delete mode 100644 print-babel.c delete mode 100644 print-beep.c delete mode 100644 print-bfd.c delete mode 100644 print-bgp.c delete mode 100644 print-bootp.c delete mode 100644 print-bt.c delete mode 100644 print-calm-fast.c delete mode 100644 print-carp.c delete mode 100644 print-cdp.c delete mode 100644 print-cfm.c delete mode 100644 print-chdlc.c delete mode 100644 print-cip.c delete mode 100644 print-cnfp.c delete mode 100644 print-dccp.c delete mode 100644 print-decnet.c delete mode 100644 print-dhcp6.c delete mode 100644 print-domain.c delete mode 100644 print-dtp.c delete mode 100644 print-dvmrp.c delete mode 100644 print-eap.c delete mode 100644 print-egp.c delete mode 100644 print-eigrp.c delete mode 100644 print-enc.c delete mode 100644 print-esp.c delete mode 100644 print-ether.c delete mode 100644 print-fddi.c delete mode 100644 print-forces.c delete mode 100644 print-fr.c delete mode 100644 print-frag6.c delete mode 100644 print-ftp.c delete mode 100644 print-geneve.c delete mode 100644 print-geonet.c delete mode 100644 print-gre.c delete mode 100644 print-hncp.c delete mode 100644 print-hsrp.c delete mode 100644 print-http.c delete mode 100644 print-icmp.c delete mode 100644 print-icmp6.c delete mode 100644 print-igmp.c delete mode 100644 print-igrp.c delete mode 100644 print-ip.c delete mode 100644 print-ip6.c delete mode 100644 print-ip6opts.c delete mode 100644 print-ipcomp.c delete mode 100644 print-ipfc.c delete mode 100644 print-ipnet.c delete mode 100644 print-ipx.c delete mode 100644 print-isakmp.c delete mode 100644 print-isoclns.c delete mode 100644 print-juniper.c delete mode 100644 print-krb.c delete mode 100644 print-l2tp.c delete mode 100644 print-lane.c delete mode 100644 print-ldp.c delete mode 100644 print-lisp.c delete mode 100644 print-llc.c delete mode 100644 print-lldp.c delete mode 100644 print-lmp.c delete mode 100644 print-loopback.c delete mode 100644 print-lspping.c delete mode 100644 print-lwapp.c delete mode 100644 print-lwres.c delete mode 100644 print-m3ua.c delete mode 100644 print-medsa.c delete mode 100644 print-mobile.c delete mode 100644 print-mobility.c delete mode 100644 print-mpcp.c delete mode 100644 print-mpls.c delete mode 100644 print-mptcp.c delete mode 100644 print-msdp.c delete mode 100644 print-msnlb.c delete mode 100644 print-nflog.c delete mode 100644 print-nfs.c delete mode 100644 print-nsh.c delete mode 100644 print-ntp.c delete mode 100644 print-null.c delete mode 100644 print-olsr.c delete mode 100644 print-openflow-1.0.c delete mode 100644 print-openflow.c delete mode 100644 print-ospf.c delete mode 100644 print-ospf6.c delete mode 100644 print-otv.c delete mode 100644 print-pflog.c delete mode 100644 print-pgm.c delete mode 100644 print-pim.c delete mode 100644 print-pktap.c delete mode 100644 print-ppi.c delete mode 100644 print-ppp.c delete mode 100644 print-pppoe.c delete mode 100644 print-pptp.c delete mode 100644 print-radius.c delete mode 100644 print-raw.c delete mode 100644 print-resp.c delete mode 100644 print-rip.c delete mode 100644 print-ripng.c delete mode 100644 print-rpki-rtr.c delete mode 100644 print-rrcp.c delete mode 100644 print-rsvp.c delete mode 100644 print-rt6.c delete mode 100644 print-rtsp.c delete mode 100644 print-rx.c delete mode 100644 print-sctp.c delete mode 100644 print-sflow.c delete mode 100644 print-sip.c delete mode 100644 print-sl.c delete mode 100644 print-sll.c delete mode 100644 print-slow.c delete mode 100644 print-smb.c delete mode 100644 print-smtp.c delete mode 100644 print-snmp.c delete mode 100644 print-stp.c delete mode 100644 print-sunatm.c delete mode 100644 print-sunrpc.c delete mode 100644 print-symantec.c delete mode 100644 print-syslog.c delete mode 100644 print-tcp.c delete mode 100644 print-telnet.c delete mode 100644 print-tftp.c delete mode 100644 print-timed.c delete mode 100644 print-tipc.c delete mode 100644 print-token.c delete mode 100644 print-udld.c delete mode 100644 print-udp.c delete mode 100644 print-usb.c delete mode 100644 print-vjc.c delete mode 100644 print-vqp.c delete mode 100644 print-vrrp.c delete mode 100644 print-vtp.c delete mode 100644 print-vxlan-gpe.c delete mode 100644 print-vxlan.c delete mode 100644 print-wb.c delete mode 100644 print-zephyr.c delete mode 100644 print-zeromq.c delete mode 100644 print.c delete mode 100644 print.h create mode 100644 readme.md delete mode 100644 readme.txt delete mode 100644 rpc_auth.h delete mode 100644 rpc_msg.h delete mode 100644 rpl.h delete mode 100644 send-ack.awk delete mode 100644 setsignal.c delete mode 100644 setsignal.h delete mode 100644 signature.c delete mode 100644 signature.h delete mode 100644 slcompress.h delete mode 100644 smb.h delete mode 100644 smbutil.c create mode 100644 src/CHANGES create mode 100644 src/CREDITS create mode 100644 src/INSTALL.txt create mode 100644 src/LICENSE create mode 100644 src/Makefile-devel-adds create mode 100644 src/Makefile.in create mode 100644 src/README.md create mode 100644 src/Readme.Win32 create mode 100644 src/VERSION create mode 100644 src/aclocal.m4 create mode 100644 src/addrtoname.c create mode 100644 src/addrtoname.h create mode 100644 src/addrtostr.c create mode 100644 src/addrtostr.h create mode 100644 src/af.c create mode 100644 src/af.h create mode 100644 src/ah.h create mode 100644 src/appletalk.h create mode 100644 src/ascii_strcasecmp.c create mode 100644 src/ascii_strcasecmp.h create mode 100644 src/atime.awk create mode 100644 src/atm.h create mode 100644 src/bpf_dump.c create mode 100644 src/chdlc.h create mode 100644 src/checksum.c create mode 100644 src/config.guess create mode 100644 src/config.h.in create mode 100644 src/config.sub create mode 100755 src/configure create mode 100644 src/configure.in create mode 100644 src/cpack.c create mode 100644 src/cpack.h create mode 100644 src/ether.h create mode 100644 src/ethertype.h create mode 100644 src/extract.h create mode 100644 src/getopt_long.h create mode 100644 src/gmpls.c create mode 100644 src/gmpls.h create mode 100644 src/gmt2local.c create mode 100644 src/gmt2local.h create mode 100644 src/in_cksum.c create mode 100644 src/install-sh create mode 100644 src/interface.h create mode 100644 src/ip.h create mode 100644 src/ip6.h create mode 100644 src/ipproto.c create mode 100644 src/ipproto.h create mode 100644 src/l2vpn.c create mode 100644 src/l2vpn.h create mode 100644 src/lbl/os-osf4.h create mode 100644 src/lbl/os-solaris2.h create mode 100644 src/lbl/os-sunos4.h create mode 100644 src/lbl/os-ultrix4.h create mode 100644 src/llc.h create mode 100644 src/machdep.c create mode 100644 src/machdep.h create mode 100644 src/makemib create mode 100644 src/mesa_net.h create mode 100644 src/mesa_pkt_dump.h create mode 100644 src/mib.h create mode 100644 src/missing/datalinks.c create mode 100644 src/missing/dlnames.c create mode 100644 src/missing/getopt_long.c create mode 100644 src/missing/snprintf.c create mode 100644 src/missing/strdup.c create mode 100644 src/missing/strlcat.c create mode 100644 src/missing/strlcpy.c create mode 100644 src/missing/strsep.c create mode 100644 src/mkdep create mode 100644 src/mpls.h create mode 100644 src/nameser.h create mode 100644 src/net_common.c create mode 100644 src/netdissect-stdinc.h create mode 100644 src/netdissect.h create mode 100644 src/nfs.h create mode 100644 src/nfsfh.h create mode 100644 src/nlpid.c create mode 100644 src/nlpid.h create mode 100644 src/openflow.h create mode 100644 src/ospf.h create mode 100644 src/oui.c create mode 100644 src/oui.h create mode 100644 src/packetdat.awk create mode 100644 src/parsenfsfh.c create mode 100644 src/pcap-missing.h create mode 100644 src/pcap_dump_ftell.c create mode 100644 src/ppp.h create mode 100644 src/print-802_11.c create mode 100644 src/print-802_15_4.c create mode 100644 src/print-ah.c create mode 100644 src/print-ahcp.c create mode 100644 src/print-aodv.c create mode 100644 src/print-aoe.c create mode 100644 src/print-ap1394.c create mode 100644 src/print-arcnet.c create mode 100644 src/print-arp.c create mode 100644 src/print-ascii.c create mode 100644 src/print-atalk.c create mode 100644 src/print-atm.c create mode 100644 src/print-babel.c create mode 100644 src/print-beep.c create mode 100644 src/print-bfd.c create mode 100644 src/print-bgp.c create mode 100644 src/print-bootp.c create mode 100644 src/print-bt.c create mode 100644 src/print-calm-fast.c create mode 100644 src/print-carp.c create mode 100644 src/print-cdp.c create mode 100644 src/print-cfm.c create mode 100644 src/print-chdlc.c create mode 100644 src/print-cip.c create mode 100644 src/print-cnfp.c create mode 100644 src/print-dccp.c create mode 100644 src/print-decnet.c create mode 100644 src/print-dhcp6.c create mode 100644 src/print-domain.c create mode 100644 src/print-dtp.c create mode 100644 src/print-dvmrp.c create mode 100644 src/print-eap.c create mode 100644 src/print-egp.c create mode 100644 src/print-eigrp.c create mode 100644 src/print-enc.c create mode 100644 src/print-esp.c create mode 100644 src/print-ether.c create mode 100644 src/print-fddi.c create mode 100644 src/print-forces.c create mode 100644 src/print-fr.c create mode 100644 src/print-frag6.c create mode 100644 src/print-ftp.c create mode 100644 src/print-geneve.c create mode 100644 src/print-geonet.c create mode 100644 src/print-gre.c create mode 100644 src/print-hncp.c create mode 100644 src/print-hsrp.c create mode 100644 src/print-http.c create mode 100644 src/print-icmp.c create mode 100644 src/print-icmp6.c create mode 100644 src/print-igmp.c create mode 100644 src/print-igrp.c create mode 100644 src/print-ip.c create mode 100644 src/print-ip6.c create mode 100644 src/print-ip6opts.c create mode 100644 src/print-ipcomp.c create mode 100644 src/print-ipfc.c create mode 100644 src/print-ipnet.c create mode 100644 src/print-ipx.c create mode 100644 src/print-isakmp.c create mode 100644 src/print-isoclns.c create mode 100644 src/print-juniper.c create mode 100644 src/print-krb.c create mode 100644 src/print-l2tp.c create mode 100644 src/print-lane.c create mode 100644 src/print-ldp.c create mode 100644 src/print-lisp.c create mode 100644 src/print-llc.c create mode 100644 src/print-lldp.c create mode 100644 src/print-lmp.c create mode 100644 src/print-loopback.c create mode 100644 src/print-lspping.c create mode 100644 src/print-lwapp.c create mode 100644 src/print-lwres.c create mode 100644 src/print-m3ua.c create mode 100644 src/print-medsa.c create mode 100644 src/print-mobile.c create mode 100644 src/print-mobility.c create mode 100644 src/print-mpcp.c create mode 100644 src/print-mpls.c create mode 100644 src/print-mptcp.c create mode 100644 src/print-msdp.c create mode 100644 src/print-msnlb.c create mode 100644 src/print-nflog.c create mode 100644 src/print-nfs.c create mode 100644 src/print-nsh.c create mode 100644 src/print-ntp.c create mode 100644 src/print-null.c create mode 100644 src/print-olsr.c create mode 100644 src/print-openflow-1.0.c create mode 100644 src/print-openflow.c create mode 100644 src/print-ospf.c create mode 100644 src/print-ospf6.c create mode 100644 src/print-otv.c create mode 100644 src/print-pflog.c create mode 100644 src/print-pgm.c create mode 100644 src/print-pim.c create mode 100644 src/print-pktap.c create mode 100644 src/print-ppi.c create mode 100644 src/print-ppp.c create mode 100644 src/print-pppoe.c create mode 100644 src/print-pptp.c create mode 100644 src/print-radius.c create mode 100644 src/print-raw.c create mode 100644 src/print-resp.c create mode 100644 src/print-rip.c create mode 100644 src/print-ripng.c create mode 100644 src/print-rpki-rtr.c create mode 100644 src/print-rrcp.c create mode 100644 src/print-rsvp.c create mode 100644 src/print-rt6.c create mode 100644 src/print-rtsp.c create mode 100644 src/print-rx.c create mode 100644 src/print-sctp.c create mode 100644 src/print-sflow.c create mode 100644 src/print-sip.c create mode 100644 src/print-sl.c create mode 100644 src/print-sll.c create mode 100644 src/print-slow.c create mode 100644 src/print-smb.c create mode 100644 src/print-smtp.c create mode 100644 src/print-snmp.c create mode 100644 src/print-stp.c create mode 100644 src/print-sunatm.c create mode 100644 src/print-sunrpc.c create mode 100644 src/print-symantec.c create mode 100644 src/print-syslog.c create mode 100644 src/print-tcp.c create mode 100644 src/print-telnet.c create mode 100644 src/print-tftp.c create mode 100644 src/print-timed.c create mode 100644 src/print-tipc.c create mode 100644 src/print-token.c create mode 100644 src/print-udld.c create mode 100644 src/print-udp.c create mode 100644 src/print-usb.c create mode 100644 src/print-vjc.c create mode 100644 src/print-vqp.c create mode 100644 src/print-vrrp.c create mode 100644 src/print-vtp.c create mode 100644 src/print-vxlan-gpe.c create mode 100644 src/print-vxlan.c create mode 100644 src/print-wb.c create mode 100644 src/print-zephyr.c create mode 100644 src/print-zeromq.c create mode 100644 src/print.c create mode 100644 src/print.h create mode 100644 src/rpc_auth.h create mode 100644 src/rpc_msg.h create mode 100644 src/rpl.h create mode 100644 src/send-ack.awk create mode 100644 src/setsignal.c create mode 100644 src/setsignal.h create mode 100644 src/signature.c create mode 100644 src/signature.h create mode 100644 src/slcompress.h create mode 100644 src/smb.h create mode 100644 src/smbutil.c create mode 100644 src/stime.awk create mode 100644 src/stream_base.h create mode 100644 src/strtoaddr.c create mode 100644 src/strtoaddr.h create mode 100644 src/tcp.h create mode 100644 src/tcpdump.1.in create mode 100644 src/tcpdump.c create mode 100644 src/tests/02-sunrise-sunset-esp.pcap create mode 100644 src/tests/08-sunrise-sunset-aes.pcap create mode 100644 src/tests/08-sunrise-sunset-esp2.pcap create mode 100644 src/tests/3560_CDP.pcap create mode 100644 src/tests/802.1D_spanning_tree.pcap create mode 100644 src/tests/802.1w_rapid_STP.pcap create mode 100644 src/tests/AoE_Linux.pcap create mode 100644 src/tests/DECnet_Phone.pcap create mode 100644 src/tests/DTP.pcap create mode 100644 src/tests/EIGRP_adjacency.pcap create mode 100644 src/tests/EIGRP_goodbye.pcap create mode 100644 src/tests/EIGRP_subnet_down.pcap create mode 100644 src/tests/EIGRP_subnet_up.pcap create mode 100644 src/tests/HDLC.pcap create mode 100644 src/tests/HSRP_coup.pcap create mode 100644 src/tests/HSRP_election.pcap create mode 100644 src/tests/HSRP_failover.pcap create mode 100644 src/tests/IGMP_V1.pcap create mode 100644 src/tests/IGMP_V2.pcap create mode 100644 src/tests/ISAKMP_sa_setup.pcap create mode 100644 src/tests/ISIS_external_lsp.pcap create mode 100644 src/tests/ISIS_level1_adjacency.pcap create mode 100644 src/tests/ISIS_level2_adjacency.pcap create mode 100644 src/tests/ISIS_p2p_adjacency.pcap create mode 100644 src/tests/LACP.pcap create mode 100644 src/tests/LLDP_and_CDP.pcap create mode 100644 src/tests/MSTP_Intra-Region_BPDUs.pcap create mode 100644 src/tests/OLSRv1_HNA_sgw_1.out create mode 100644 src/tests/OLSRv1_HNA_sgw_1.pcap create mode 100644 src/tests/OSPFv3_NBMA_adjacencies.pcap create mode 100644 src/tests/OSPFv3_broadcast_adjacency.pcap create mode 100644 src/tests/OSPFv3_multipoint_adjacencies.pcap create mode 100644 src/tests/OSPFv3_with_AH.pcap create mode 100644 src/tests/PIM-DM_pruning.pcap create mode 100644 src/tests/PIM-SM_join_prune.pcap create mode 100644 src/tests/PIM_register_register-stop.pcap create mode 100644 src/tests/PIMv2_bootstrap.pcap create mode 100644 src/tests/PIMv2_hellos.pcap create mode 100644 src/tests/QinQpacket.out create mode 100644 src/tests/QinQpacket.pcap create mode 100644 src/tests/QinQpacketv.out create mode 100644 src/tests/RADIUS-RFC4675.pcap create mode 100644 src/tests/RADIUS-RFC5176.pcap create mode 100644 src/tests/RADIUS-port1700.pcap create mode 100644 src/tests/RADIUS.pcap create mode 100644 src/tests/TESTLIST create mode 100644 src/tests/TESTonce create mode 100644 src/tests/TESTrun.sh create mode 100644 src/tests/UDLD.pcap create mode 100644 src/tests/ahcp-vv.out create mode 100644 src/tests/ahcp.pcap create mode 100644 src/tests/aoe_1-v.out create mode 100644 src/tests/aoe_1.out create mode 100644 src/tests/babel.pcap create mode 100644 src/tests/babel1.out create mode 100644 src/tests/babel1v.out create mode 100644 src/tests/babel_auth.out create mode 100644 src/tests/babel_auth.pcap create mode 100644 src/tests/babel_pad1.out create mode 100644 src/tests/babel_pad1.pcap create mode 100644 src/tests/babel_rtt.out create mode 100644 src/tests/babel_rtt.pcap create mode 100644 src/tests/bgp-aigp.out create mode 100644 src/tests/bgp-aigp.pcap create mode 100644 src/tests/bgp-infinite-loop.pcap create mode 100644 src/tests/bgp_infloop-v.out create mode 100644 src/tests/bgp_vpn_attrset.out create mode 100644 src/tests/bgp_vpn_attrset.pcap create mode 100644 src/tests/cdp-v.out create mode 100644 src/tests/chdlc-slarp-short.pcap create mode 100644 src/tests/chdlc-slarp.pcap create mode 100644 src/tests/crypto.sh create mode 100644 src/tests/cve-2014-8767-OLSR.out create mode 100644 src/tests/cve-2014-8767-OLSR.pcap create mode 100644 src/tests/cve-2014-8768-Geonet.out create mode 100644 src/tests/cve-2014-8768-Geonet.pcap create mode 100644 src/tests/cve-2014-8769-AODV.out create mode 100644 src/tests/cve-2014-8769-AODV.pcap create mode 100644 src/tests/cve2015-0261-crash.out create mode 100644 src/tests/cve2015-0261-crash.pcap create mode 100644 src/tests/cve2015-0261-ipv6.out create mode 100644 src/tests/cve2015-0261-ipv6.pcap create mode 100644 src/tests/dcb_ets.out create mode 100644 src/tests/dcb_ets.pcap create mode 100644 src/tests/dcb_pfc.out create mode 100644 src/tests/dcb_pfc.pcap create mode 100644 src/tests/dcb_qcn.out create mode 100644 src/tests/dcb_qcn.pcap create mode 100644 src/tests/dccp_partial_csum_v4_longer.out create mode 100644 src/tests/dccp_partial_csum_v4_longer.pcap create mode 100644 src/tests/dccp_partial_csum_v4_simple.out create mode 100644 src/tests/dccp_partial_csum_v4_simple.pcap create mode 100644 src/tests/dccp_partial_csum_v6_longer.out create mode 100644 src/tests/dccp_partial_csum_v6_longer.pcap create mode 100644 src/tests/dccp_partial_csum_v6_simple.out create mode 100644 src/tests/dccp_partial_csum_v6_simple.pcap create mode 100644 src/tests/decnet.out create mode 100644 src/tests/dhcp-rfc3004-v.out create mode 100644 src/tests/dhcp-rfc3004.pcap create mode 100644 src/tests/dhcp-rfc5859-v.out create mode 100644 src/tests/dhcp-rfc5859.pcap create mode 100644 src/tests/dhcpv6-AFTR-Name-RFC6334.out create mode 100644 src/tests/dhcpv6-AFTR-Name-RFC6334.pcap create mode 100644 src/tests/dhcpv6-domain-list.out create mode 100644 src/tests/dhcpv6-domain-list.pcap create mode 100644 src/tests/dhcpv6-ia-na.out create mode 100644 src/tests/dhcpv6-ia-na.pcap create mode 100644 src/tests/dhcpv6-ia-pd.out create mode 100644 src/tests/dhcpv6-ia-pd.pcap create mode 100644 src/tests/dhcpv6-ia-ta.out create mode 100644 src/tests/dhcpv6-ia-ta.pcap create mode 100644 src/tests/dhcpv6-ntp-server.out create mode 100644 src/tests/dhcpv6-ntp-server.pcap create mode 100644 src/tests/dhcpv6-sip-server-d.out create mode 100644 src/tests/dhcpv6-sip-server-d.pcap create mode 100644 src/tests/dnssec-vv.out create mode 100644 src/tests/dnssec.pcap create mode 100644 src/tests/dtp-v.out create mode 100644 src/tests/dvmrp.out create mode 100644 src/tests/e1000g.out create mode 100644 src/tests/e1000g.pcap create mode 100644 src/tests/eapon1.gdbinit create mode 100644 src/tests/eapon1.out create mode 100644 src/tests/eapon1.pcap create mode 100644 src/tests/eigrp1-v.out create mode 100644 src/tests/eigrp2-v.out create mode 100644 src/tests/eigrp3-v.out create mode 100644 src/tests/eigrp4-v.out create mode 100644 src/tests/epgm_zmtp1.pcap create mode 100644 src/tests/epgm_zmtp1v.out create mode 100644 src/tests/epgmv.out create mode 100644 src/tests/esp-secrets.txt create mode 100644 src/tests/esp0.out create mode 100644 src/tests/esp1.gdbinit create mode 100644 src/tests/esp1.out create mode 100644 src/tests/esp2.gdbinit create mode 100644 src/tests/esp2.out create mode 100644 src/tests/esp3.gdbinit create mode 100644 src/tests/esp4.gdbinit create mode 100644 src/tests/esp5.gdbinit create mode 100644 src/tests/esp5.out create mode 100644 src/tests/espudp1.out create mode 100644 src/tests/espudp1.pcap create mode 100644 src/tests/evb.out create mode 100644 src/tests/evb.pcap create mode 100644 src/tests/failure-outputs.txt create mode 100644 src/tests/forces1.out create mode 100644 src/tests/forces1.pcap create mode 100644 src/tests/forces1vvv.out create mode 100644 src/tests/forces1vvvv.out create mode 100644 src/tests/forces2.pcap create mode 100644 src/tests/forces2v.out create mode 100644 src/tests/forces2vv.out create mode 100644 src/tests/forces2vvv.out create mode 100644 src/tests/forces3.pcap create mode 100644 src/tests/forces3vvv.out create mode 100644 src/tests/geneve-tcp.out create mode 100644 src/tests/geneve-vni.out create mode 100644 src/tests/geneve-vv.out create mode 100644 src/tests/geneve.pcap create mode 100644 src/tests/geonet_and_calm_fast.out create mode 100644 src/tests/geonet_and_calm_fast.pcap create mode 100644 src/tests/hdlc1.out create mode 100644 src/tests/hdlc2.out create mode 100644 src/tests/hdlc3.out create mode 100644 src/tests/hdlc4.out create mode 100644 src/tests/hdlc_slarp.pcap create mode 100644 src/tests/hncp.out create mode 100644 src/tests/hncp.pcap create mode 100644 src/tests/hsrp_1-v.out create mode 100644 src/tests/hsrp_1.out create mode 100644 src/tests/hsrp_2-v.out create mode 100644 src/tests/hsrp_3-v.out create mode 100644 src/tests/icmpv6.out create mode 100644 src/tests/icmpv6.pcap create mode 100644 src/tests/icmpv6_opt24-v.out create mode 100644 src/tests/icmpv6_opt24.pcap create mode 100644 src/tests/ieee802.11_exthdr.out create mode 100644 src/tests/ieee802.11_exthdr.pcap create mode 100644 src/tests/ieee802.11_rx-stbc.out create mode 100644 src/tests/ieee802.11_rx-stbc.pcap create mode 100644 src/tests/igmpv1.out create mode 100644 src/tests/igmpv2.out create mode 100644 src/tests/igmpv3-queries.out create mode 100644 src/tests/igmpv3-queries.pcap create mode 100644 src/tests/ikev2four.out create mode 100644 src/tests/ikev2four.pcap create mode 100644 src/tests/ikev2fourv.out create mode 100644 src/tests/ikev2fourv4.out create mode 100644 src/tests/ikev2pI2-secrets.txt create mode 100644 src/tests/ikev2pI2.out create mode 100644 src/tests/ikev2pI2.pcap create mode 100644 src/tests/ipv6-bad-version.out create mode 100644 src/tests/ipv6-bad-version.pcap create mode 100644 src/tests/ipv6-routing-header.out create mode 100644 src/tests/ipv6-routing-header.pcap create mode 100644 src/tests/isakmp-delete-segfault.pcap create mode 100644 src/tests/isakmp-identification-segfault.pcap create mode 100644 src/tests/isakmp-pointer-loop.pcap create mode 100644 src/tests/isakmp1.out create mode 100644 src/tests/isakmp2.out create mode 100644 src/tests/isakmp3.out create mode 100644 src/tests/isakmp4.out create mode 100644 src/tests/isakmp4500.pcap create mode 100644 src/tests/isakmp5-v.out create mode 100644 src/tests/isis-infinite-loop.pcap create mode 100644 src/tests/isis_1-v.out create mode 100644 src/tests/isis_1.out create mode 100644 src/tests/isis_2-v.out create mode 100644 src/tests/isis_3-v.out create mode 100644 src/tests/isis_4-v.out create mode 100644 src/tests/isis_infloop-v.out create mode 100644 src/tests/isis_poi.out create mode 100644 src/tests/isis_poi.pcap create mode 100644 src/tests/isis_poi2.out create mode 100644 src/tests/isis_poi2.pcap create mode 100644 src/tests/isup.out create mode 100644 src/tests/isup.pcap create mode 100644 src/tests/isupvv.out create mode 100644 src/tests/kday1.out create mode 100644 src/tests/kday1.pcap create mode 100644 src/tests/kday2.out create mode 100644 src/tests/kday2.pcap create mode 100644 src/tests/kday3.out create mode 100644 src/tests/kday3.pcap create mode 100644 src/tests/kday4.out create mode 100644 src/tests/kday4.pcap create mode 100644 src/tests/kday5.out create mode 100644 src/tests/kday5.pcap create mode 100644 src/tests/kday6.out create mode 100644 src/tests/kday6.pcap create mode 100644 src/tests/kday7.out create mode 100644 src/tests/kday7.pcap create mode 100644 src/tests/kday8.out create mode 100644 src/tests/kday8.pcap create mode 100644 src/tests/lacp-ev.out create mode 100644 src/tests/ldp-infinite-loop.pcap create mode 100644 src/tests/ldp_infloop.out create mode 100644 src/tests/lisp_eid_notify.out create mode 100644 src/tests/lisp_eid_notify.pcap create mode 100644 src/tests/lisp_eid_register.out create mode 100644 src/tests/lisp_eid_register.pcap create mode 100644 src/tests/lisp_ipv6.out create mode 100644 src/tests/lisp_ipv6.pcap create mode 100644 src/tests/lldp_cdp-ev.out create mode 100644 src/tests/lmp-v.out create mode 100644 src/tests/lmp-v.sh create mode 100644 src/tests/lmp.out create mode 100644 src/tests/lmp.pcap create mode 100644 src/tests/loopback.out create mode 100644 src/tests/loopback.pcap create mode 100644 src/tests/lspping-fec-ldp-v.out create mode 100644 src/tests/lspping-fec-ldp-vv.out create mode 100644 src/tests/lspping-fec-ldp.out create mode 100644 src/tests/lspping-fec-ldp.pcap create mode 100644 src/tests/lspping-fec-rsvp-v.out create mode 100644 src/tests/lspping-fec-rsvp-vv.out create mode 100644 src/tests/lspping-fec-rsvp.out create mode 100644 src/tests/lspping-fec-rsvp.pcap create mode 100644 src/tests/medsa-e.out create mode 100644 src/tests/medsa.out create mode 100644 src/tests/medsa.pcap create mode 100644 src/tests/mpbgp-linklocal-nexthop.out create mode 100644 src/tests/mpbgp-linklocal-nexthop.pcap create mode 100644 src/tests/mpls-ldp-hello.out create mode 100644 src/tests/mpls-ldp-hello.pcap create mode 100644 src/tests/mpls-traceroute-v.out create mode 100644 src/tests/mpls-traceroute.out create mode 100644 src/tests/mpls-traceroute.pcap create mode 100644 src/tests/mptcp-fclose.out create mode 100644 src/tests/mptcp-fclose.pcap create mode 100644 src/tests/mptcp.out create mode 100644 src/tests/mptcp.pcap create mode 100644 src/tests/mrinfo_query.pcap create mode 100644 src/tests/msnlb.out create mode 100644 src/tests/msnlb.pcap create mode 100644 src/tests/msnlb2.out create mode 100644 src/tests/msnlb2.pcap create mode 100644 src/tests/mstp-v.out create mode 100644 src/tests/mtrace.out create mode 100644 src/tests/mtrace.pcap create mode 100644 src/tests/nflog-e.out create mode 100644 src/tests/nflog-e.sh create mode 100644 src/tests/nflog.pcap create mode 100644 src/tests/nsh-over-vxlan-gpe-v.out create mode 100644 src/tests/nsh-over-vxlan-gpe-vv.out create mode 100644 src/tests/nsh-over-vxlan-gpe-vvv.out create mode 100644 src/tests/nsh-over-vxlan-gpe.out create mode 100644 src/tests/nsh-over-vxlan-gpe.pcap create mode 100644 src/tests/of10_7050q-v.out create mode 100644 src/tests/of10_7050q.pcap create mode 100644 src/tests/of10_7050sx_bsn-vv.out create mode 100644 src/tests/of10_7050sx_bsn.pcap create mode 100644 src/tests/of10_p3295-vv.out create mode 100644 src/tests/of10_p3295.pcap create mode 100644 src/tests/of10_pf5240-vv.out create mode 100644 src/tests/of10_pf5240.pcap create mode 100644 src/tests/of10_s4810-vvvv.out create mode 100644 src/tests/of10_s4810.pcap create mode 100644 src/tests/ospf-gmpls.out create mode 100644 src/tests/ospf-gmpls.pcap create mode 100644 src/tests/ospf3_ah-vv.out create mode 100644 src/tests/ospf3_auth-vv.out create mode 100644 src/tests/ospf3_auth.pcap create mode 100644 src/tests/ospf3_bc-vv.out create mode 100644 src/tests/ospf3_mp-vv.out create mode 100644 src/tests/ospf3_nbma-vv.out create mode 100644 src/tests/pcap-invalid-version-1.out create mode 100644 src/tests/pcap-invalid-version-1.pcap create mode 100644 src/tests/pcap-invalid-version-2.out create mode 100644 src/tests/pcap-invalid-version-2.pcap create mode 100644 src/tests/pcap-ng-invalid-vers-1.out create mode 100644 src/tests/pcap-ng-invalid-vers-1.pcap create mode 100644 src/tests/pcap-ng-invalid-vers-2.out create mode 100644 src/tests/pcap-ng-invalid-vers-2.pcap create mode 100644 src/tests/pgm_zmtp1.pcap create mode 100644 src/tests/pgm_zmtp1v.out create mode 100644 src/tests/pgmv.out create mode 100644 src/tests/pimv2_bootstrap-v.out create mode 100644 src/tests/pimv2_dm-v.out create mode 100644 src/tests/pimv2_hellos-v.out create mode 100644 src/tests/pimv2_register-v.out create mode 100644 src/tests/pimv2_sm-v.out create mode 100644 src/tests/pppoe.out create mode 100644 src/tests/pppoe.pcap create mode 100644 src/tests/pppoes.out create mode 100644 src/tests/pppoes.pcap create mode 100644 src/tests/pppoes_id.out create mode 100644 src/tests/print-A.out create mode 100644 src/tests/print-AA.out create mode 100644 src/tests/print-capX.out create mode 100644 src/tests/print-capXX.out create mode 100644 src/tests/print-flags.pcap create mode 100644 src/tests/print-x.out create mode 100644 src/tests/print-xx.out create mode 100644 src/tests/radius-port1700-v.out create mode 100644 src/tests/radius-rfc4675-v.out create mode 100644 src/tests/radius-rfc5176-v.out create mode 100644 src/tests/radius-v.out create mode 100644 src/tests/resp_1.out create mode 100644 src/tests/resp_1_benchmark.pcap create mode 100644 src/tests/resp_2.out create mode 100644 src/tests/resp_2_inline.pcap create mode 100644 src/tests/resp_3.out create mode 100644 src/tests/resp_3_malicious.pcap create mode 100644 src/tests/ripv1v2.out create mode 100644 src/tests/ripv1v2.pcap create mode 100644 src/tests/ripv2_auth.out create mode 100644 src/tests/ripv2_auth.pcap create mode 100644 src/tests/rpl-14-dao.pcap create mode 100644 src/tests/rpl-14-daovvv.out create mode 100644 src/tests/rpl-19-pickdag.out create mode 100644 src/tests/rpl-19-pickdag.pcap create mode 100644 src/tests/rpl-19-pickdagvvv.out create mode 100644 src/tests/rpl-26-senddaoack.pcap create mode 100644 src/tests/rpl-26-senddaovv.out create mode 100644 src/tests/rpvst-v.out create mode 100644 src/tests/rpvstp-trunk-native-vid5.pcap create mode 100644 src/tests/rstp-v.out create mode 100644 src/tests/rsvp-infinite-loop.pcap create mode 100644 src/tests/rsvp_infloop-v.out create mode 100644 src/tests/sflow_multiple_counter_30_pdus-nv.out create mode 100644 src/tests/sflow_multiple_counter_30_pdus.out create mode 100644 src/tests/sflow_multiple_counter_30_pdus.pcap create mode 100644 src/tests/spb.out create mode 100644 src/tests/spb.pcap create mode 100644 src/tests/spb_bpduv4.out create mode 100644 src/tests/spb_bpduv4.pcap create mode 100644 src/tests/stp-v.out create mode 100644 src/tests/syslog-v.out create mode 100644 src/tests/syslog_udp.pcap create mode 100644 src/tests/tfo-5c1fa7f9ae91.pcap create mode 100644 src/tests/tfo.out create mode 100644 src/tests/udld-v.out create mode 100644 src/tests/unaligned-nfs-1.out create mode 100644 src/tests/unaligned-nfs-1.pcap create mode 100644 src/tests/vrrp-v.out create mode 100644 src/tests/vrrp.out create mode 100644 src/tests/vrrp.pcap create mode 100644 src/tests/vxlan.out create mode 100644 src/tests/vxlan.pcap create mode 100644 src/tests/zmtp1.out create mode 100644 src/tests/zmtp1.pcap create mode 100644 src/timeval-operations.h create mode 100644 src/udp.h create mode 100644 src/util-print.c create mode 100644 src/util.c create mode 100644 src/vfprintf.c create mode 100644 src/win32/prj/GNUmakefile create mode 100644 src/win32/prj/WinDump.dsp create mode 100644 src/win32/prj/WinDump.dsw delete mode 100644 stime.awk delete mode 100644 stream_base.h delete mode 100644 strtoaddr.c delete mode 100644 strtoaddr.h delete mode 100644 tcp.h delete mode 100644 tcpdump.1.in delete mode 100644 tcpdump.c delete mode 100644 tests/02-sunrise-sunset-esp.pcap delete mode 100644 tests/08-sunrise-sunset-aes.pcap delete mode 100644 tests/08-sunrise-sunset-esp2.pcap delete mode 100644 tests/3560_CDP.pcap delete mode 100644 tests/802.1D_spanning_tree.pcap delete mode 100644 tests/802.1w_rapid_STP.pcap delete mode 100644 tests/AoE_Linux.pcap delete mode 100644 tests/DECnet_Phone.pcap delete mode 100644 tests/DTP.pcap delete mode 100644 tests/EIGRP_adjacency.pcap delete mode 100644 tests/EIGRP_goodbye.pcap delete mode 100644 tests/EIGRP_subnet_down.pcap delete mode 100644 tests/EIGRP_subnet_up.pcap delete mode 100644 tests/HDLC.pcap delete mode 100644 tests/HSRP_coup.pcap delete mode 100644 tests/HSRP_election.pcap delete mode 100644 tests/HSRP_failover.pcap delete mode 100644 tests/IGMP_V1.pcap delete mode 100644 tests/IGMP_V2.pcap delete mode 100644 tests/ISAKMP_sa_setup.pcap delete mode 100644 tests/ISIS_external_lsp.pcap delete mode 100644 tests/ISIS_level1_adjacency.pcap delete mode 100644 tests/ISIS_level2_adjacency.pcap delete mode 100644 tests/ISIS_p2p_adjacency.pcap delete mode 100644 tests/LACP.pcap delete mode 100644 tests/LLDP_and_CDP.pcap delete mode 100644 tests/MSTP_Intra-Region_BPDUs.pcap delete mode 100644 tests/OLSRv1_HNA_sgw_1.out delete mode 100644 tests/OLSRv1_HNA_sgw_1.pcap delete mode 100644 tests/OSPFv3_NBMA_adjacencies.pcap delete mode 100644 tests/OSPFv3_broadcast_adjacency.pcap delete mode 100644 tests/OSPFv3_multipoint_adjacencies.pcap delete mode 100644 tests/OSPFv3_with_AH.pcap delete mode 100644 tests/PIM-DM_pruning.pcap delete mode 100644 tests/PIM-SM_join_prune.pcap delete mode 100644 tests/PIM_register_register-stop.pcap delete mode 100644 tests/PIMv2_bootstrap.pcap delete mode 100644 tests/PIMv2_hellos.pcap delete mode 100644 tests/QinQpacket.out delete mode 100644 tests/QinQpacket.pcap delete mode 100644 tests/QinQpacketv.out delete mode 100644 tests/RADIUS-RFC4675.pcap delete mode 100644 tests/RADIUS-RFC5176.pcap delete mode 100644 tests/RADIUS-port1700.pcap delete mode 100644 tests/RADIUS.pcap delete mode 100644 tests/TESTLIST delete mode 100644 tests/TESTonce delete mode 100644 tests/TESTrun.sh delete mode 100644 tests/UDLD.pcap delete mode 100644 tests/ahcp-vv.out delete mode 100644 tests/ahcp.pcap delete mode 100644 tests/aoe_1-v.out delete mode 100644 tests/aoe_1.out delete mode 100644 tests/babel.pcap delete mode 100644 tests/babel1.out delete mode 100644 tests/babel1v.out delete mode 100644 tests/babel_auth.out delete mode 100644 tests/babel_auth.pcap delete mode 100644 tests/babel_pad1.out delete mode 100644 tests/babel_pad1.pcap delete mode 100644 tests/babel_rtt.out delete mode 100644 tests/babel_rtt.pcap delete mode 100644 tests/bgp-aigp.out delete mode 100644 tests/bgp-aigp.pcap delete mode 100644 tests/bgp-infinite-loop.pcap delete mode 100644 tests/bgp_infloop-v.out delete mode 100644 tests/bgp_vpn_attrset.out delete mode 100644 tests/bgp_vpn_attrset.pcap delete mode 100644 tests/cdp-v.out delete mode 100644 tests/chdlc-slarp-short.pcap delete mode 100644 tests/chdlc-slarp.pcap delete mode 100644 tests/crypto.sh delete mode 100644 tests/cve-2014-8767-OLSR.out delete mode 100644 tests/cve-2014-8767-OLSR.pcap delete mode 100644 tests/cve-2014-8768-Geonet.out delete mode 100644 tests/cve-2014-8768-Geonet.pcap delete mode 100644 tests/cve-2014-8769-AODV.out delete mode 100644 tests/cve-2014-8769-AODV.pcap delete mode 100644 tests/cve2015-0261-crash.out delete mode 100644 tests/cve2015-0261-crash.pcap delete mode 100644 tests/cve2015-0261-ipv6.out delete mode 100644 tests/cve2015-0261-ipv6.pcap delete mode 100644 tests/dcb_ets.out delete mode 100644 tests/dcb_ets.pcap delete mode 100644 tests/dcb_pfc.out delete mode 100644 tests/dcb_pfc.pcap delete mode 100644 tests/dcb_qcn.out delete mode 100644 tests/dcb_qcn.pcap delete mode 100644 tests/dccp_partial_csum_v4_longer.out delete mode 100644 tests/dccp_partial_csum_v4_longer.pcap delete mode 100644 tests/dccp_partial_csum_v4_simple.out delete mode 100644 tests/dccp_partial_csum_v4_simple.pcap delete mode 100644 tests/dccp_partial_csum_v6_longer.out delete mode 100644 tests/dccp_partial_csum_v6_longer.pcap delete mode 100644 tests/dccp_partial_csum_v6_simple.out delete mode 100644 tests/dccp_partial_csum_v6_simple.pcap delete mode 100644 tests/decnet.out delete mode 100644 tests/dhcp-rfc3004-v.out delete mode 100644 tests/dhcp-rfc3004.pcap delete mode 100644 tests/dhcp-rfc5859-v.out delete mode 100644 tests/dhcp-rfc5859.pcap delete mode 100644 tests/dhcpv6-AFTR-Name-RFC6334.out delete mode 100644 tests/dhcpv6-AFTR-Name-RFC6334.pcap delete mode 100644 tests/dhcpv6-domain-list.out delete mode 100644 tests/dhcpv6-domain-list.pcap delete mode 100644 tests/dhcpv6-ia-na.out delete mode 100644 tests/dhcpv6-ia-na.pcap delete mode 100644 tests/dhcpv6-ia-pd.out delete mode 100644 tests/dhcpv6-ia-pd.pcap delete mode 100644 tests/dhcpv6-ia-ta.out delete mode 100644 tests/dhcpv6-ia-ta.pcap delete mode 100644 tests/dhcpv6-ntp-server.out delete mode 100644 tests/dhcpv6-ntp-server.pcap delete mode 100644 tests/dhcpv6-sip-server-d.out delete mode 100644 tests/dhcpv6-sip-server-d.pcap delete mode 100644 tests/dnssec-vv.out delete mode 100644 tests/dnssec.pcap delete mode 100644 tests/dtp-v.out delete mode 100644 tests/dvmrp.out delete mode 100644 tests/e1000g.out delete mode 100644 tests/e1000g.pcap delete mode 100644 tests/eapon1.gdbinit delete mode 100644 tests/eapon1.out delete mode 100644 tests/eapon1.pcap delete mode 100644 tests/eigrp1-v.out delete mode 100644 tests/eigrp2-v.out delete mode 100644 tests/eigrp3-v.out delete mode 100644 tests/eigrp4-v.out delete mode 100644 tests/epgm_zmtp1.pcap delete mode 100644 tests/epgm_zmtp1v.out delete mode 100644 tests/epgmv.out delete mode 100644 tests/esp-secrets.txt delete mode 100644 tests/esp0.out delete mode 100644 tests/esp1.gdbinit delete mode 100644 tests/esp1.out delete mode 100644 tests/esp2.gdbinit delete mode 100644 tests/esp2.out delete mode 100644 tests/esp3.gdbinit delete mode 100644 tests/esp4.gdbinit delete mode 100644 tests/esp5.gdbinit delete mode 100644 tests/esp5.out delete mode 100644 tests/espudp1.out delete mode 100644 tests/espudp1.pcap delete mode 100644 tests/evb.out delete mode 100644 tests/evb.pcap delete mode 100644 tests/failure-outputs.txt delete mode 100644 tests/forces1.out delete mode 100644 tests/forces1.pcap delete mode 100644 tests/forces1vvv.out delete mode 100644 tests/forces1vvvv.out delete mode 100644 tests/forces2.pcap delete mode 100644 tests/forces2v.out delete mode 100644 tests/forces2vv.out delete mode 100644 tests/forces2vvv.out delete mode 100644 tests/forces3.pcap delete mode 100644 tests/forces3vvv.out delete mode 100644 tests/geneve-tcp.out delete mode 100644 tests/geneve-vni.out delete mode 100644 tests/geneve-vv.out delete mode 100644 tests/geneve.pcap delete mode 100644 tests/geonet_and_calm_fast.out delete mode 100644 tests/geonet_and_calm_fast.pcap delete mode 100644 tests/hdlc1.out delete mode 100644 tests/hdlc2.out delete mode 100644 tests/hdlc3.out delete mode 100644 tests/hdlc4.out delete mode 100644 tests/hdlc_slarp.pcap delete mode 100644 tests/hncp.out delete mode 100644 tests/hncp.pcap delete mode 100644 tests/hsrp_1-v.out delete mode 100644 tests/hsrp_1.out delete mode 100644 tests/hsrp_2-v.out delete mode 100644 tests/hsrp_3-v.out delete mode 100644 tests/icmpv6.out delete mode 100644 tests/icmpv6.pcap delete mode 100644 tests/icmpv6_opt24-v.out delete mode 100644 tests/icmpv6_opt24.pcap delete mode 100644 tests/ieee802.11_exthdr.out delete mode 100644 tests/ieee802.11_exthdr.pcap delete mode 100644 tests/ieee802.11_rx-stbc.out delete mode 100644 tests/ieee802.11_rx-stbc.pcap delete mode 100644 tests/igmpv1.out delete mode 100644 tests/igmpv2.out delete mode 100644 tests/igmpv3-queries.out delete mode 100644 tests/igmpv3-queries.pcap delete mode 100644 tests/ikev2four.out delete mode 100644 tests/ikev2four.pcap delete mode 100644 tests/ikev2fourv.out delete mode 100644 tests/ikev2fourv4.out delete mode 100644 tests/ikev2pI2-secrets.txt delete mode 100644 tests/ikev2pI2.out delete mode 100644 tests/ikev2pI2.pcap delete mode 100644 tests/ipv6-bad-version.out delete mode 100644 tests/ipv6-bad-version.pcap delete mode 100644 tests/ipv6-routing-header.out delete mode 100644 tests/ipv6-routing-header.pcap delete mode 100644 tests/isakmp-delete-segfault.pcap delete mode 100644 tests/isakmp-identification-segfault.pcap delete mode 100644 tests/isakmp-pointer-loop.pcap delete mode 100644 tests/isakmp1.out delete mode 100644 tests/isakmp2.out delete mode 100644 tests/isakmp3.out delete mode 100644 tests/isakmp4.out delete mode 100644 tests/isakmp4500.pcap delete mode 100644 tests/isakmp5-v.out delete mode 100644 tests/isis-infinite-loop.pcap delete mode 100644 tests/isis_1-v.out delete mode 100644 tests/isis_1.out delete mode 100644 tests/isis_2-v.out delete mode 100644 tests/isis_3-v.out delete mode 100644 tests/isis_4-v.out delete mode 100644 tests/isis_infloop-v.out delete mode 100644 tests/isis_poi.out delete mode 100644 tests/isis_poi.pcap delete mode 100644 tests/isis_poi2.out delete mode 100644 tests/isis_poi2.pcap delete mode 100644 tests/isup.out delete mode 100644 tests/isup.pcap delete mode 100644 tests/isupvv.out delete mode 100644 tests/kday1.out delete mode 100644 tests/kday1.pcap delete mode 100644 tests/kday2.out delete mode 100644 tests/kday2.pcap delete mode 100644 tests/kday3.out delete mode 100644 tests/kday3.pcap delete mode 100644 tests/kday4.out delete mode 100644 tests/kday4.pcap delete mode 100644 tests/kday5.out delete mode 100644 tests/kday5.pcap delete mode 100644 tests/kday6.out delete mode 100644 tests/kday6.pcap delete mode 100644 tests/kday7.out delete mode 100644 tests/kday7.pcap delete mode 100644 tests/kday8.out delete mode 100644 tests/kday8.pcap delete mode 100644 tests/lacp-ev.out delete mode 100644 tests/ldp-infinite-loop.pcap delete mode 100644 tests/ldp_infloop.out delete mode 100644 tests/lisp_eid_notify.out delete mode 100644 tests/lisp_eid_notify.pcap delete mode 100644 tests/lisp_eid_register.out delete mode 100644 tests/lisp_eid_register.pcap delete mode 100644 tests/lisp_ipv6.out delete mode 100644 tests/lisp_ipv6.pcap delete mode 100644 tests/lldp_cdp-ev.out delete mode 100644 tests/lmp-v.out delete mode 100644 tests/lmp-v.sh delete mode 100644 tests/lmp.out delete mode 100644 tests/lmp.pcap delete mode 100644 tests/loopback.out delete mode 100644 tests/loopback.pcap delete mode 100644 tests/lspping-fec-ldp-v.out delete mode 100644 tests/lspping-fec-ldp-vv.out delete mode 100644 tests/lspping-fec-ldp.out delete mode 100644 tests/lspping-fec-ldp.pcap delete mode 100644 tests/lspping-fec-rsvp-v.out delete mode 100644 tests/lspping-fec-rsvp-vv.out delete mode 100644 tests/lspping-fec-rsvp.out delete mode 100644 tests/lspping-fec-rsvp.pcap delete mode 100644 tests/medsa-e.out delete mode 100644 tests/medsa.out delete mode 100644 tests/medsa.pcap delete mode 100644 tests/mpbgp-linklocal-nexthop.out delete mode 100644 tests/mpbgp-linklocal-nexthop.pcap delete mode 100644 tests/mpls-ldp-hello.out delete mode 100644 tests/mpls-ldp-hello.pcap delete mode 100644 tests/mpls-traceroute-v.out delete mode 100644 tests/mpls-traceroute.out delete mode 100644 tests/mpls-traceroute.pcap delete mode 100644 tests/mptcp-fclose.out delete mode 100644 tests/mptcp-fclose.pcap delete mode 100644 tests/mptcp.out delete mode 100644 tests/mptcp.pcap delete mode 100644 tests/mrinfo_query.pcap delete mode 100644 tests/msnlb.out delete mode 100644 tests/msnlb.pcap delete mode 100644 tests/msnlb2.out delete mode 100644 tests/msnlb2.pcap delete mode 100644 tests/mstp-v.out delete mode 100644 tests/mtrace.out delete mode 100644 tests/mtrace.pcap delete mode 100644 tests/nflog-e.out delete mode 100644 tests/nflog-e.sh delete mode 100644 tests/nflog.pcap delete mode 100644 tests/nsh-over-vxlan-gpe-v.out delete mode 100644 tests/nsh-over-vxlan-gpe-vv.out delete mode 100644 tests/nsh-over-vxlan-gpe-vvv.out delete mode 100644 tests/nsh-over-vxlan-gpe.out delete mode 100644 tests/nsh-over-vxlan-gpe.pcap delete mode 100644 tests/of10_7050q-v.out delete mode 100644 tests/of10_7050q.pcap delete mode 100644 tests/of10_7050sx_bsn-vv.out delete mode 100644 tests/of10_7050sx_bsn.pcap delete mode 100644 tests/of10_p3295-vv.out delete mode 100644 tests/of10_p3295.pcap delete mode 100644 tests/of10_pf5240-vv.out delete mode 100644 tests/of10_pf5240.pcap delete mode 100644 tests/of10_s4810-vvvv.out delete mode 100644 tests/of10_s4810.pcap delete mode 100644 tests/ospf-gmpls.out delete mode 100644 tests/ospf-gmpls.pcap delete mode 100644 tests/ospf3_ah-vv.out delete mode 100644 tests/ospf3_auth-vv.out delete mode 100644 tests/ospf3_auth.pcap delete mode 100644 tests/ospf3_bc-vv.out delete mode 100644 tests/ospf3_mp-vv.out delete mode 100644 tests/ospf3_nbma-vv.out delete mode 100644 tests/pcap-invalid-version-1.out delete mode 100644 tests/pcap-invalid-version-1.pcap delete mode 100644 tests/pcap-invalid-version-2.out delete mode 100644 tests/pcap-invalid-version-2.pcap delete mode 100644 tests/pcap-ng-invalid-vers-1.out delete mode 100644 tests/pcap-ng-invalid-vers-1.pcap delete mode 100644 tests/pcap-ng-invalid-vers-2.out delete mode 100644 tests/pcap-ng-invalid-vers-2.pcap delete mode 100644 tests/pgm_zmtp1.pcap delete mode 100644 tests/pgm_zmtp1v.out delete mode 100644 tests/pgmv.out delete mode 100644 tests/pimv2_bootstrap-v.out delete mode 100644 tests/pimv2_dm-v.out delete mode 100644 tests/pimv2_hellos-v.out delete mode 100644 tests/pimv2_register-v.out delete mode 100644 tests/pimv2_sm-v.out delete mode 100644 tests/pppoe.out delete mode 100644 tests/pppoe.pcap delete mode 100644 tests/pppoes.out delete mode 100644 tests/pppoes.pcap delete mode 100644 tests/pppoes_id.out delete mode 100644 tests/print-A.out delete mode 100644 tests/print-AA.out delete mode 100644 tests/print-capX.out delete mode 100644 tests/print-capXX.out delete mode 100644 tests/print-flags.pcap delete mode 100644 tests/print-x.out delete mode 100644 tests/print-xx.out delete mode 100644 tests/radius-port1700-v.out delete mode 100644 tests/radius-rfc4675-v.out delete mode 100644 tests/radius-rfc5176-v.out delete mode 100644 tests/radius-v.out delete mode 100644 tests/resp_1.out delete mode 100644 tests/resp_1_benchmark.pcap delete mode 100644 tests/resp_2.out delete mode 100644 tests/resp_2_inline.pcap delete mode 100644 tests/resp_3.out delete mode 100644 tests/resp_3_malicious.pcap delete mode 100644 tests/ripv1v2.out delete mode 100644 tests/ripv1v2.pcap delete mode 100644 tests/ripv2_auth.out delete mode 100644 tests/ripv2_auth.pcap delete mode 100644 tests/rpl-14-dao.pcap delete mode 100644 tests/rpl-14-daovvv.out delete mode 100644 tests/rpl-19-pickdag.out delete mode 100644 tests/rpl-19-pickdag.pcap delete mode 100644 tests/rpl-19-pickdagvvv.out delete mode 100644 tests/rpl-26-senddaoack.pcap delete mode 100644 tests/rpl-26-senddaovv.out delete mode 100644 tests/rpvst-v.out delete mode 100644 tests/rpvstp-trunk-native-vid5.pcap delete mode 100644 tests/rstp-v.out delete mode 100644 tests/rsvp-infinite-loop.pcap delete mode 100644 tests/rsvp_infloop-v.out delete mode 100644 tests/sflow_multiple_counter_30_pdus-nv.out delete mode 100644 tests/sflow_multiple_counter_30_pdus.out delete mode 100644 tests/sflow_multiple_counter_30_pdus.pcap delete mode 100644 tests/spb.out delete mode 100644 tests/spb.pcap delete mode 100644 tests/spb_bpduv4.out delete mode 100644 tests/spb_bpduv4.pcap delete mode 100644 tests/stp-v.out delete mode 100644 tests/syslog-v.out delete mode 100644 tests/syslog_udp.pcap delete mode 100644 tests/tfo-5c1fa7f9ae91.pcap delete mode 100644 tests/tfo.out delete mode 100644 tests/udld-v.out delete mode 100644 tests/unaligned-nfs-1.out delete mode 100644 tests/unaligned-nfs-1.pcap delete mode 100644 tests/vrrp-v.out delete mode 100644 tests/vrrp.out delete mode 100644 tests/vrrp.pcap delete mode 100644 tests/vxlan.out delete mode 100644 tests/vxlan.pcap delete mode 100644 tests/zmtp1.out delete mode 100644 tests/zmtp1.pcap delete mode 100644 timeval-operations.h delete mode 100644 udp.h delete mode 100644 util-print.c delete mode 100644 util.c delete mode 100644 vfprintf.c delete mode 100644 win32/prj/GNUmakefile delete mode 100644 win32/prj/WinDump.dsp delete mode 100644 win32/prj/WinDump.dsw diff --git a/.gitignore b/.gitignore index a60896e..e524d79 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,2 @@ +.vscode/ build/ -version.txt \ No newline at end of file diff --git a/CHANGES b/CHANGES deleted file mode 100644 index 343e549..0000000 --- a/CHANGES +++ /dev/null @@ -1,1168 +0,0 @@ -Tuesday October 25, 2016 mcr@sandelman.ca - Summary for 4.8.1 tcpdump release - Fix "-x" for Apple PKTAP and PPI packets - Use PRIx64 to print a 64-bit number in hex. - Printer for HNCP (RFCs 7787 and 7788). - dagid is always an IPv6 address, not an opaque 128-bit string, and other fixes to RPL printer. - RSVP: Add bounds and length checks - OSPF: Do more bounds checking - Handle OpenSSL 1.1.x. - Initial support for the REdis Serialization Protocol known as RESP. - Add printing function for Generic Protocol Extension for VXLAN - draft-ietf-nvo3-vxlan-gpe-01 - Network Service Header: draft-ietf-sfc-nsh-01 - Don't recompile the filter if the new file has the same DLT. - Pass an adjusted struct pcap_pkthdr to the sub-printer. - Add three test cases for already fixed CVEs - CVE-2014-8767: OLSR - CVE-2014-8768: Geonet - CVE-2014-8769: AODV - Don't do the DDP-over-UDP heuristic first: GitHub issue #499. - Use the new debugging routines in libpcap. - Harmonize TCP source or destination ports tests with UDP ones - Introduce data types to use for integral values in packet structures. - RSVP: Fix an infinite loop - Support of Type 3 and Type 4 LISP packets. - Don't require IPv6 library support in order to support IPv6 addresses. - Many many changes to support libnetdissect usage. - Add a test that makes unaligned accesses: GitHub issue #478. - add a DNSSEC test case: GH #445 and GH #467. - BGP: add decoding of ADD-PATH capability - fixes to LLC header printing, and RFC948-style IP packets - -Friday April 10, 2015 guy@alum.mit.edu - Summary for 4.7.4 tcpdump release - RPKI to Router Protocol: Fix Segmentation Faults and other problems - RPKI to Router Protocol: print strings with fn_printn() - wb: fix some bounds checks - -Wednesday March 11, 2015 mcr@sandelman.ca - Summary for 4.7.3 tcpdump release - Capsicum fixes for FreeBSD 10 - -Tuesday March 10, 2015 mcr@sandelman.ca - Summary for 4.7.2 tcpdump release - DCCP: update Packet Types with RFC4340/IANA names - fixes for CVE-2015-0261: IPv6 mobility header check issue - fixes for CVE-2015-2153, 2154, 2155: kday packets - -Friday Nov. 12, 2014 guy@alum.mit.edu - Summary for 4.7.0 tcpdump release - changes to hex printing of CDP packets - Fix PPI printing - Radius: update Packet Type Codes and Attribute Types with RFC/IANA names - Add a routine to print "text protocols", and add FTP/HTTP/SMTP/RTSP support. - improvements to telnet printer, even if not -v - omit length for bcp, print-tcp uses it - formatting fixes for a bunch of protocols - new bounds checks for a number of protocols - split netflow 1,6, and 6 dissector up. - added geneve dissector - CVE-2014-9140 PPP dissector fixed. - -Tuesday Sep. 2, 2014 mcr@sandelman.ca - Summary for 4.6.2 tcpdump release - fix out-of-source-tree builds: find libpcap that is out of source - better configure check for libsmi - -Saturday Jul. 19, 2014 mcr@sandelman.ca - Summary for 4.6.1 tcpdump release - added FreeBSD capsicum - add a short option '#', same as long option '--number' - -Wednesday Jul. 2, 2014 mcr@sandelman.ca - Summary for 4.6.0 tcpdump release - all of tcpdump is now using the new "NDO" code base (Thanks Denis!) - nflog, mobile, forces, pptp, AODV, AHCP, IPv6, OSPFv4, RPL, DHCPv6 enhancements/fixes - M3UA decode added. - many new test cases: 82 in 4.5.1 to 133 in 4.6.0 - many improvements to travis continuous integration system: OSX, and Coverity options - cleaned up some unnecessary header files - Added bittok2str(). - a number of unaligned access faults fixed - -A flag does not consider CR to be printable anymore - fx.lebail took over coverity baby sitting - default snapshot size increased to 256K for accomodate USB captures - WARNING: this release contains a lot of very worthwhile code churn. - -Wednesday Jan. 15, 2014 guy@alum.mit.edu - Summary for 4.5.2 tcpdump release - Man page fix - Fix crashes on SPARC - -Monday Nov. 11, 2013 mcr@sandelman.ca - Summary for 4.5.1 tcpdump release - CREDITS file fixes - -Thursday Nov. 7, 2013 mcr@sandelman.ca and guy@alum.mit.edu. - Summary for 4.5.0 tcpdump release - some NFSv4 fixes for printing - fix printing of unknown TCP options, and tcp fast-open - fixes for syslog parser - some gcc-version-specific flag tuning - adopt MacOS deprecation workarounds for openssl - improvements to babel printing - add OpenFlow 1.0 (no SSL) and test cases - GeoNet printer. - added STBC Rx support - improvements to DHCPv6 decoder - clarify which autoconf is needed - Point users to the the-tcpdump-group repository on GitHub rather - than the mcr repository - Add MSDP printer. - Fixed IPv6 check on Solaris and other OSes requiring extra - networking libraries. - Add support for VXLAN (draft-mahalingam-dutt-dcops-vxlan-03), - and add "vxlan" as an option for -T. - Add support for OTV (draft-hasmit-otv-04). - fixes for DLT_IEEE802_11_RADIO datalink types - added MPTCP decoder - -Saturday April 6, 2013 guy@alum.mit.edu. - Summary for 4.4.0 tcpdump release - RPKI-RTR (RFC6810) is now official (TCP Port 323) - Fix detection of OpenSSL libcrypto. - Add DNSSL (RFC6106) support. - Add "radius" as an option for -T. - Update Action codes for handle_action function according to - 802.11s amendment. - Decode DHCPv6 AFTR-Name option (RFC6334). - Updates for Babel. - Fix printing of infinite lifetime in ICMPv6. - Added support for SPB, SPBM Service Identifier, and Unicast - Address sub-TLV in ISIS. - Decode RIPv2 authentication up to RFC4822. - Fix RIP Request/full table decoding issues. - On Linux systems with cap-ng.h, drop root privileges - using Linux Capabilities. - Add support for reading multiple files. - Add MS NLB heartbeat printer. - Separate multiple nexthops in BGP. - -Wednesday November 28, 2012 guy@alum.mit.edu. - Summary for 4.3.1 tcpdump release - Print "LLDP, length N" for LLDP packets even when not in verbose - mode, so something is printed even if only the timestamp is - present - Document "-T carp" - Print NTP poll interval correctly (it's an exponent, so print - both its raw value and 2^value) - Document that "-e" is used to get MAC addresses - More clearly document that you need to escape or quote - backslashes in filter expressions on the command line - Fix some "the the" in the man page - Use the right maximum path length - Don't treat 192_1_2, when passed to -i, as an interface number - -Friday April 3, 2012. mcr@sandelman.ca. - Summary for 4.3.0 tcpdump release - fixes for forces: SPARSE data (per RFC 5810) - some more test cases added - updates to documentation on -l, -U and -w flags. - Fix printing of BGP optional headers. - Tried to include DLT_PFSYNC support, failed due to headers required. - added TIPC support. - Fix LLDP Network Policy bit definitions. - fixes for IGMPv3's Max Response Time: it is in units of 0.1 second. - SIGUSR1 can be used rather than SIGINFO for stats - permit -n flag to affect print-ip for protocol numbers - ND_OPT_ADVINTERVAL is in milliseconds, not seconds - Teach PPPoE parser about RFC 4638 - - -Friday December 9, 2011. guy@alum.mit.edu. - Summary for 4.2.1 tcpdump release - Only build the Babel printer if IPv6 is enabled. - Support Babel on port 6696 as well as 6697. - Include ppi.h in release tarball. - Include all the test files in the release tarball, and don't - "include" test files that no longer exist. - Don't assume we have - check for it. - Support "-T carp" as a way of dissecting IP protocol 112 as CARP - rather than VRRP. - Support Hilscher NetAnalyzer link-layer header format. - Constify some pointers and fix compiler warnings. - Get rid of never-true test. - Fix an unintended fall-through in a case statement in the ARP - printer. - Fix several cases where sizeof(sizeof(XXX)) was used when just - sizeof(XXX) was intended. - Make stricter sanity checks in the ES-IS printer. - Get rid of some GCCisms that caused builds to fai with compilers - that don't support them. - Fix typo in man page. - Added length checks to Babel printer. - -Sunday July 24, 2011. mcr@sandelman.ca. - Summary for 4.2.+ - merged 802.15.4 decoder from Dmitry Eremin-Solenikov - updates to forces for new port numbers - Use "-H", not "-h", for the 802.11s option. (-h always help) - Better ICMPv6 checksum handling. - add support for the RPKI/Router Protocol, per -ietf-sidr-rpki-rtr-12 - get rid of uuencoded pcap test files, git can do binary. - sFlow changes for 64-bit counters. - fixes for PPI packet header handling and printing. - Add DCB Exchange protocol (DCBX) version 1.01. - Babel dissector, from Juliusz Chroboczek and Grégoire Henry. - improvements to radiotap for rate values > 127. - Many improvements to ForCES decode, including fix SCTP TML port - updated RPL type code to RPL-17 draft - Improve printout of DHCPv6 options. - added support and test case for QinQ (802.1q VLAN) packets - Handle DLT_IEEE802_15_4_NOFCS like DLT_IEEE802_15_4. - Build fixes for Sparc and other machines with alignment restrictions. - Merged changes from Debian package. - PGM: Add ACK decoding and add PGMCC DATA and FEEDBACK options. - Build fixes for OSX (Snow Leopard and others) - Add support for IEEE 802.15.4 packets - -Tue. July 20, 2010. guy@alum.mit.edu. - Summary for 4.1.2 tcpdump release - If -U is specified, flush the file after creating it, so it's - not zero-length - Fix TCP flags output description, and some typoes, in the man - page - Add a -h flag, and only attempt to recognize 802.11s mesh - headers if it's set - When printing the link-layer type list, send *all* output to - stderr - Include the CFLAGS setting when configure was run in the - compiler flags - -Thu. April 1, 2010. guy@alum.mit.edu. - Summary for 4.1.1 tcpdump release - Fix build on systems with PF, such as FreeBSD and OpenBSD. - Don't blow up if a zero-length link-layer address is passed to - linkaddr_string(). - -Thu. March 11, 2010. ken@netfunctional.ca/guy@alum.mit.edu. - Summary for 4.1.0 tcpdump release - Fix printing of MAC addresses for VLAN frames with a length - field - Add some additional bounds checks and use the EXTRACT_ macros - more - Add a -b flag to print the AS number in BGP packets in ASDOT - notation rather than ASPLAIN notation - Add ICMPv6 RFC 5006 support - Decode the access flags in NFS access requests - Handle the new DLT_ for memory-mapped USB captures on Linux - Make the default snapshot (-s) the maximum - Print name of device (when -L is used) - Support for OpenSolaris (and SXCE build 125 and later) - Print new TCP flags - Add support for RPL DIO - Add support for TCP User Timeout (UTO) - Add support for non-standard Ethertypes used by 3com PPPoE gear - Add support for 802.11n and 802.11s - Add support for Transparent Ethernet Bridge ethertype in GRE - Add 4 byte AS support for BGP printer - Add support for the MDT SAFI 66 BG printer - Add basic IPv6 support to print-olsr - Add USB printer - Add printer for ForCES - Handle frames with an FCS - Handle 802.11n Control Wrapper, Block Acq Req and Block Ack frames - Fix TCP sequence number printing - Report 802.2 packets as 802.2 instead of 802.3 - Don't include -L/usr/lib in LDFLAGS - On x86_64 Linux, look in lib64 directory too - Lots of code clean ups - Autoconf clean ups - Update testcases to make output changes - Fix compiling with/out smi (--with{,out}-smi) - Fix compiling without IPv6 support (--disable-ipv6) - -Mon. October 27, 2008. ken@netfunctional.ca. Summary for 4.0.0 tcpdump release - Add support for Bluetooth Sniffing - Add support for Realtek Remote Control Protocol (openrrcp.org.ru) - Add support for 802.11 AVS - Add support for SMB over TCP - Add support for 4 byte BGP AS printing - Add support for compiling on case-insensitive file systems - Add support for ikev2 printing - Update support for decoding AFS - Update DHCPv6 printer - Use newer libpcap API's (allows -B option on all platforms) - Add -I to turn on monitor mode - Bugfixes in lldp, lspping, dccp, ESP, NFS printers - Cleanup unused files and various cruft - -Mon. September 10, 2007. ken@xelerance.com. Summary for 3.9.8 tcpdump release - Rework ARP printer - Rework OSPFv3 printer - Add support for Frame-Relay ARP - Decode DHCP Option 121 (RFC 3442 Classless Static Route) - Decode DHCP Option 249 (MS Classless Static Route) the same as Option 121 - TLV: Add support for Juniper .pcap extensions - Print EGP header in new-world-order style - Converted print-isakmp.c to NETDISSECT - Moved AF specific stuff into af.h - Test subsystem now table driven, and saves outputs and diffs to one place - Require for pf definitions - allows reading of pflog formatted - libpcap files on an OS other than where the file was generated - - -Wed. July 23, 2007. mcr@xelerance.com. Summary for 3.9.7 libpcap release - - NFS: Print unsigned values as such. - RX: parse safely. - BGP: fixes for IPv6-less builds. - 801.1ag: use standard codepoint. - use /dev/bpf on systems with such a device. - 802.11: print QoS data, avoid dissect of no-data frame, ignore padding. - smb: make sure that we haven't gone past the end of the captured data. - smb: squelch an uninitialized complaint from coverity. - NFS: from NetBSD; don't interpret the reply as a possible NFS reply - if it got MSG_DENIED. - BGP: don't print TLV values that didn't fit, from www.digit-labs.org. - revised INSTALL.txt about libpcap dependancy. - -Wed. April 25, 2007. ken@xelerance.com. Summary for 3.9.6 tcpdump release - Update man page to reflect changes to libpcap - Changes to both TCP and IP Printer Output - Fix a potential buffer overflow in the 802.11 printer - Print basic info about a few more Cisco LAN protocols. - mDNS cleanup - ICMP MPLS rework of the extension code - bugfix: use the correct codepoint for the OSPF simple text auth token - entry, and use safeputs to print the password. - Add support in pflog for additional values - Add support for OIF RSVP Extensions UNI 1.0 Rev. 2 and additional RSVP objects - Add support for the Message-id NACK c-type. - Add support for 802.3ah loopback ctrl msg - Add support for Multiple-STP as per 802.1s - Add support for rapid-SPT as per 802.1w - Add support for CFM Link-trace msg, Link-trace-Reply msg, - Sender-ID tlv, private tlv, port, interface status - Add support for unidirectional link detection as per - http://www.ietf.org/internet-drafts/draft-foschiano-udld-02.txt - Add support for the olsr protocol as per RFC 3626 plus the LQ - extensions from olsr.org - Add support for variable-length checksum in DCCP, as per section 9 of - RFC 4340. - Add support for per-VLAN spanning tree and per-VLAN rapid spanning tree - Add support for Multiple-STP as per 802.1s - Add support for the cisco propriatry 'dynamic trunking protocol' - Add support for the cisco proprietary VTP protocol - Update dhcp6 options table as per IETF standardization activities - - -Tue. September 19, 2006. ken@xelerance.com. Summary for 3.9.5 tcpdump release - - Fix compiling on AIX (, at end of ENUM) - Updated list of DNS RR typecodes - Use local Ethernet defs on WIN32 - Add support for Frame-Relay ARP - Fixes for compiling under MSVC++ - Add support for parsing Juniper .pcap files - Add support for FRF.16 Multilink Frame-Relay (DLT_MFR) - Rework the OSPFv3 printer - Fix printing for 4.4BSD/NetBSD NFS Filehandles - Add support for Cisco style NLPID encapsulation - Add cisco prop. eigrp related, extended communities - Add support for BGP signaled VPLS - Cleanup the bootp printer - Add support for PPP over Frame-Relay - Add some bounds checking to the IP options code, and clean up - the options output a bit. - Add additional modp groups to ISAKMP printer - Add support for Address-Withdraw and Label-Withdraw Msgs - Add support for the BFD Discriminator TLV - Fixes for 64bit compiling - Add support for PIMv2 checksum verification - Add support for further dissection of the IPCP Compression Option - Add support for Cisco's proposed VQP protocol - Add basic support for keyed authentication TCP option - Lots of minor cosmetic changes to output printers - - -Mon. September 19, 2005. ken@xelerance.com. Summary for 3.9.4 tcpdump release - Decoder support for more Juniper link-layer types - Fix a potential buffer overflow (although it can't occur in - practice). - Fix the handling of unknown management frame types in the 802.11 - printer. - Add FRF.16 support, fix various Frame Relay bugs. - Add support for RSVP integrity objects, update fast-reroute - object printer to latest spec. - Clean up documentation of vlan filter expression, document mpls - filter expression. - Document new pppoed and pppoes filter expressions. - Update diffserver-TE codepoints as per RFC 4124. - Spelling fixes in ICMPv6. - Don't require any fields other than flags to be present in IS-IS - restart signaling TLVs, and only print the system ID in - those TLVs as system IDs, not as node IDs. - Support for DCCP. - -Tue. July 5, 2005. ken@xelerance.com. Summary for 3.9.3 tcpdump release - - Option to chroot() when dropping privs - Fixes for compiling on nearly every platform, - including improved 64bit support - Many new testcases - Support for sending packets - Many compliation fixes on most platforms - Fixes for recent version of GCC to eliminate warnings - Improved Unicode support - - Decoders & DLT Changes, Updates and New: - AES ESP support - Juniper ATM, FRF.15, FRF.16, PPPoE, - ML-FR, ML-PIC, ML-PPP, PL-PPP, LS-PIC - GGSN,ES,MONITOR,SERVICES - L2VPN - Axent Raptor/Symantec Firewall - TCP-MD5 (RFC 2385) - ESP-in-UDP (RFC 3948) - ATM OAM - LMP, LMP Service Discovery - IP over FC - IP over IEEE 1394 - BACnet MS/TP - SS7 - LDP over TCP - LACP, MARKER as per 802.3ad - PGM (RFC 3208) - LSP-PING - G.7041/Y.1303 Generic Framing Procedure - EIGRP-IP, EIGRP-IPX - ICMP6 - Radio - via radiotap - DHCPv6 - HDLC over PPP - -Tue. March 30, 2004. mcr@sandelman.ottawa.on.ca. Summary for 3.8.3 release - - No changes from 3.8.2. Version bumped only to maintain consistency - with libpcap 0.8.3. - -Mon. March 29, 2004. mcr@sandelman.ottawa.on.ca. Summary for 3.8.2 release - - Fixes for print-isakmp.c CVE: CAN-2004-0183, CAN-2004-0184 - http://www.rapid7.com/advisories/R7-0017.html - IP-over-IEEE1394 printing. - some MINGW32 changes. - updates for autoconf 2.5 - fixes for print-aodv.c - check for too short packets - formatting changes to print-ascii for hex output. - check for too short packets: print-bgp.c, print-bootp.c, print-cdp.c, - print-chdlc.c, print-domain.c, print-icmp.c, print-icmp6.c, - print-ip.c, print-lwres.c, print-ospf.c, print-pim.c, - print-ppp.c,print-pppoe.c, print-rsvp.c, print-wb.c - print-ether.c - better handling of unknown types. - print-isoclns.c - additional decoding of types. - print-llc.c - strings for LLC names added. - print-pfloc.c - various enhancements - print-radius.c - better decoding to strings. - -Wed. November 12, 2003. mcr@sandelman.ottawa.on.ca. Summary for 3.8 release - - changed syntax of -E argument so that multiple SAs can be decrypted - fixes for Digital Unix headers and Documentation - __attribute__ fixes - CDP changes from Terry Kennedy . - IPv6 mobility updates from Kazushi Sugyo - Fixes for ASN.1 decoder for 2.100.3 forms. - Added a count of packets received and processed to clarify numbers. - Incorporated WinDUMP patches for Win32 builds. - PPPoE payload length headers. - Fixes for HP C compiler builds. - Use new pcap_breakloop() and pcap_findalldevs() if we can. - BGP output split into multiple lines. - Fixes to 802.11 decoding. - Fixes to PIM decoder. - SuperH is a CPU that can't handle unaligned access. Many fixes for - unaligned access work. - Fixes to Frame-Relay decoder for Q.933/922 frames. - Clarified when Solaris can do captures as non-root. - Added tests/ subdir for examples/regression tests. - New -U flag. -flush stdout after every packet - New -A flag -print ascii only - support for decoding IS-IS inside Cisco HDLC Frames - more verbosity for tftp decoder - mDNS decoder - new BFD decoder - cross compilation patches - RFC 3561 AODV support. - UDP/TCP pseudo-checksum properly for source-route options. - sanitized all files to modified BSD license - Add support for RFC 2625 IP-over-Fibre Channel. - fixes for DECnet support. - Support RFC 2684 bridging of Ethernet, 802.5 Token Ring, and FDDI. - RFC 2684 encapsulation of BPDUs. - -Tuesday, February 25, 2003. fenner@research.att.com. 3.7.2 release - - Fixed infinite loop when parsing invalid isakmp packets. - (reported by iDefense; already fixed in CVS) - Fixed infinite loop when parsing invalid BGP packets. - Fixed buffer overflow with certain invalid NFS packets. - Pretty-print unprintable network names in 802.11 printer. - Handle truncated nbp (appletalk) packets. - Updated DHCPv6 printer to match draft-ietf-dhc-dhcpv6-22.txt - Print IP protocol name even if we don't have a printer for it. - Print IP protocol name or number for fragments. - Print the whole MPLS label stack, not just the top label. - Print request header and file handle for NFS v3 FSINFO and PATHCONF - requests. - Fix NFS packet truncation checks. - Handle "old" DR-Priority and Bidir-Capable PIM HELLO options. - Handle unknown RADIUS attributes properly. - Fix an ASN.1 parsing error that would cause e.g. the OID - 2.100.3 to be misrepresented as 4.20.3 . - -Monday, January 21, 2002. mcr@sandelman.ottawa.on.ca. Summary for 3.7 release -see http://www.tcpdump.org/cvs-log/2002-01-21.10:16:48.html for commit log. - keyword "ipx" added. - Better OSI/802.2 support on Linux. - IEEE 802.11 support, from clenahan@fortresstech.com, achirica@ttd.net. - LLC SAP support for FDDI/token ring/RFC-1483 style ATM - BXXP protocol was replaced by the BEEP protocol; - improvements to SNAP demux. - Changes to "any" interface documentation. - Documentation on pcap_stats() counters. - Fix a memory leak found by Miklos Szeredi - pcap_ether_aton(). - Added MPLS encapsulation decoding per RFC3032. - DNS dissector handles TKEY, TSIG and IXFR. - adaptive SLIP interface patch from Igor Khristophorov - SMB printing has much improved bounds checks - OUI 0x0000f8 decoded as encapsulated ethernet for Cisco-custom bridging - Zephyr support, from Nickolai Zeldovich . - Solaris - devices with digits in them. Stefan Hudson - IPX socket 0x85be is for Cisco EIGRP over IPX. - Improvements to fragmented ESP handling. - SCTP support from Armando L. Caro Jr. - Linux ARPHDR_ATM support fixed. - Added a "netbeui" keyword, which selects NetBEUI packets. - IPv6 ND improvements, MobileIP dissector, 2292bis-02 for RA option. - Handle ARPHDR_HDLC from Marcus Felipe Pereira . - Handle IPX socket 0x553 -> NetBIOS-over-IPX socket, "nwlink-dgm" - Better Linux libc5 compat. - BIND9 lwres dissector added. - MIPS and SPARC get strict alignment macros (affects print-bgp.c) - Apple LocalTalk LINKTYPE_ reserved. - New time stamp formats documented. - DHCP6 updated to draft-22.txt spec. - ICMP types/codes now accept symbolic names. - Add SIGINFO handler from LBL - encrypted CIPE tunnels in IRIX, from Franz Schaefer . - now we are -Wstrict-prototype clean. - NetBSD DLT_PPP_ETHER; adapted from Martin Husemann . - PPPoE dissector cleaned up. - Support for LocalTalk hardware, from Uns Lider . - In dissector, now the caller prints the IP addresses rather than proto. - cjclark@alum.mit.edu: print the IP proto for non-initial fragments. - LLC frames with a DSAP and LSAP of 0xe0 are IPX frames. - Linux cooked frames with a type value of LINUX_SLL_P_802_3 are IPX. - captures on the "any" device won't be done in promiscuous mode - Token Ring support on DLPI - Onno van der Linden - ARCNet support, from NetBSD. - HSRP dissector, from Julian Cowley . - Handle (GRE-encapsulated) PPTP - added -C option to rotate save file every optarg * 1,000,000 bytes. - support for "vrrp" name - NetBSD, by Klaus Klein . - PPTP support, from Motonori Shindo . - IS-IS over PPP support, from Hannes Gredler . - CNFP support for IPv6,format. Harry Raaymakers . - ESP printing updated to RFC2406. - HP-UX can now handle large number of PPAs. - MSDP printer added. - L2TP dissector improvements from Motonori Shindo. - -Tuesday January 9, 2001. mcr@sandelman.ottawa.on.ca. Summary for 3.6 release - Cleaned up documentation. - Promisc mode fixes for Linux - IPsec changes/cleanups. - Alignment fixes for picky architectures - - Removed dependency on native headers for packet dissectors. - Removed Linux specific headers that were shipped - - libpcap changes provide for exchanging capture files between - systems. Save files now have well known PACKET_ values instead of - depending upon system dependant mappings of DLT_* types. - - Support for computing/checking IP and UDP/TCP checksums. - - Updated autoconf stock files. - - IPv6 improvements: dhcp (draft-15), mobile-ip6, ppp, ospf6, - - Added dissector support for: ISOCLNS, Token Ring, IGMPv3, bxxp, - timed, vrrp, radius, chdlc, cnfp, cdp, IEEE802.1d, raw-AppleTalk - - Added filtering support for: VLANs, ESIS, ISIS - - Improvements to: print-telnet, IPTalk, bootp/dhcp, ECN, PPP, - L2TP, PPPoE - - HP-UX 11.0 -- find the right dlpi device. - Solaris 8 - IPv6 works - Linux - Added support for an "any" device to capture on all interfaces - - Security fixes: buffer overrun audit done. Strcpy replaced with - strlcpy, sprintf replaced with snprintf. - Look for lex problems, and warn about them. - - -v3.5 Fri Jan 28 18:00:00 PST 2000 - -Bill Fenner -- switch to config.h for autoconf -- unify RCSID strings -- Updated PIMv1, PIMv2, DVMRP, IGMP parsers, add Cisco Auto-RP parser -- Really fix the RIP printer -- Fix MAC address -> name translation. -- some -Wall -Wformat fixes -- update makemib to parse much of SMIv2 -- Print TCP sequence # with -vv even if you normally wouldn't -- Print as much of IP/TCP/UDP headers as possible even if truncated. - -itojun@iijlab.net -- -X will make a ascii dump. from netbsd. -- telnet command sequence decoder (ff xx xx). from netbsd. -- print-bgp.c: improve options printing. ugly code exists for - unaligned option parsing (need some fix). -- const poisoning in SMB decoder. -- -Wall -Werror clean checks. -- bring in KAME IPv6/IPsec decoding code. - -Assar Westerlund -- SNMPv2 and SNMPv3 printer -- If compiled with libsmi, tcpdump can load MIBs on the fly to decode - SNMP packets. -- Incorporate NFS parsing code from NetBSD. Adds support for nfsv3. -- portability fixes -- permit building in different directories. - -Ken Hornstein -- bring in code at - /afs/transarc.com/public/afs-contrib/tools/tcpdump for parsing - AFS3 packets - -Andrew Tridgell -- SMB printing code - -Love -- print-rx.c: add code for printing MakeDir and StoreStatus. Also - change date format to the right one. - -Michael C. Richardson -- Created tcpdump.org repository - -v3.4 Sat Jul 25 12:40:55 PDT 1998 - -- Hardwire Linux slip support since it's too hard to detect. - -- Redo configuration of "network" libraries (-lsocket and -lnsl) to - deal with IRIX. Thanks to John Hawkinson (jhawk@mit.edu) - -- Added -a which tries to translate network and broadcast addresses to - names. Suggested by Rob van Nieuwkerk (robn@verdi.et.tudelft.nl) - -- Added a configure option to disable gcc. - -- Added a "raw" packet printer. - -- Not having an interface address is no longer fatal. Requested by John - Hawkinson. - -- Rework signal setup to accommodate Linux. - -- OSPF truncation check fix. Also display the type of OSPF packets - using MD5 authentication. Thanks to Brian Wellington - (bwelling@tis.com) - -- Fix truncation check bugs in the Kerberos printer. Reported by Ezra - Peisach (epeisach@mit.edu) - -- Don't catch SIGHUP when invoked with nohup(1). Thanks to Dave Plonka - (plonka@mfa.com) - -- Specify full install target as a way of detecting if install - directory does not exist. Thanks to Dave Plonka. - -- Bit-swap FDDI addresses for BSD/OS too. Thanks to Paul Vixie - (paul@vix.com) - -- Fix off-by-one bug when testing size of ethernet packets. Thanks to - Marty Leisner (leisner@sdsp.mc.xerox.com) - -- Add a local autoconf macro to check for routines in libraries; the - autoconf version is broken (it only puts the library name in the - cache variable name). Thanks to John Hawkinson. - -- Add a local autoconf macro to check for types; the autoconf version - is broken (it uses grep instead of actually compiling a code fragment). - -- Modified to support the new BSD/OS 2.1 PPP and SLIP link layer header - formats. - -- Extend OSF ip header workaround to versions 1 and 2. - -- Fix some signed problems in the nfs printer. As reported by David - Sacerdote (davids@silence.secnet.com) - -- Detect group wheel and use it as the default since BSD/OS' install - can't hack numeric groups. Reported by David Sacerdote. - -- AIX needs special loader options. Thanks to Jonathan I. Kamens - (jik@cam.ov.com) - -- Fixed the nfs printer to print port numbers in decimal. Thanks to - Kent Vander Velden (graphix@iastate.edu) - -- Find installed libpcap in /usr/local/lib when not using gcc. - -- Disallow network masks with non-network bits set. - -- Attempt to detect "egcs" versions of gcc. - -- Add missing closing double quotes when displaying bootp strings. - Reported by Viet-Trung Luu (vluu@picard.math.uwaterloo.ca) - -v3.3 Sat Nov 30 20:56:27 PST 1996 - -- Added Linux support. - -- GRE encapsulated packet printer thanks to John Hawkinson - (jhawk@mit.edu) - -- Rewrite gmt2local() to avoid problematic os dependencies. - -- Suppress nfs truncation message on errors. - -- Add missing m4 quoting in AC_LBL_UNALIGNED_ACCESS autoconf macro. - Reported by Joachim Ott (ott@ardala.han.de) - -- Enable "ip_hl vs. ip_vhl" workaround for OSF4 too. - -- Print arp hardware type in host order. Thanks to Onno van der Linden - (onno@simplex.nl) - -- Avoid solaris compiler warnings. Thanks to Bruce Barnett - (barnett@grymoire.crd.ge.com) - -- Fix rip printer to not print one more route than is actually in the - packet. Thanks to Jean-Luc Richier (Jean-Luc.Richier@imag.fr) and - Bill Fenner (fenner@parc.xerox.com) - -- Use autoconf endian detection since BYTE_ORDER isn't defined on all systems. - -- Fix dvmrp printer truncation checks and add a dvmrp probe printer. - Thanks to Danny J. Mitzel (mitzel@ipsilon.com) - -- Rewrite ospf printer to improve truncation checks. - -- Don't parse tcp options past the EOL. As noted by David Sacerdote - (davids@secnet.com). Also, check tcp options to make sure they ar - actually in the tcp header (in addition to the normal truncation - checks). Fix the SACK code to print the N blocks (instead of the - first block N times). - -- Don't say really small UDP packets are truncated just because they - aren't big enough to be a RPC. As noted by David Sacerdote. - -v3.2.1 Sun Jul 14 03:02:26 PDT 1996 - -- Added rfc1716 icmp codes as suggested by Martin Fredriksson - (martin@msp.se) - -- Print mtu for icmp unreach need frag packets. Thanks to John - Hawkinson (jhawk@mit.edu) - -- Decode icmp router discovery messages. Thanks to Jeffrey Honig - (jch@bsdi.com) - -- Added a printer entry for DLT_IEEE802 as suggested by Tak Kushida - (kushida@trl.ibm.co.jp) - -- Check igmp checksum if possible. Thanks to John Hawkinson. - -- Made changes for SINIX. Thanks to Andrej Borsenkow - (borsenkow.msk@sni.de) - -- Use autoconf's idea of the top level directory in install targets. - Thanks to John Hawkinson. - -- Avoid infinite loop in tcp options printing code. Thanks to Jeffrey - Mogul (mogul@pa.dec.com) - -- Avoid using -lsocket in IRIX 5.2 and earlier since it breaks snoop. - Thanks to John Hawkinson. - -- Added some more packet truncation checks. - -- On systems that have it, use sigset() instead of signal() since - signal() has different semantics on these systems. - -- Fixed some more alignment problems on the alpha. - -- Add code to massage unprintable characters in the domain and ipx - printers. Thanks to John Hawkinson. - -- Added explicit netmask support. Thanks to Steve Nuchia - (steve@research.oknet.com) - -- Add "sca" keyword (for DEC cluster services) as suggested by Terry - Kennedy (terry@spcvxa.spc.edu) - -- Add "atalk" keyword as suggested by John Hawkinson. - -- Added an igrp printer. Thanks to Francis Dupont - (francis.dupont@inria.fr) - -- Print IPX net numbers in hex a la Novell Netware. Thanks to Terry - Kennedy (terry@spcvxa.spc.edu) - -- Fixed snmp extended tag field parsing bug. Thanks to Pascal Hennequin - (pascal.hennequin@hugo.int-evry.fr) - -- Added some ETHERTYPEs missing on some systems. - -- Added truncated packet macros and various checks. - -- Fixed endian problems with the DECnet printer. - -- Use $CC when checking gcc version. Thanks to Carl Lindberg - (carl_lindberg@blacksmith.com) - -- Fixes for AIX (although this system is not yet supported). Thanks to - John Hawkinson. - -- Fix bugs in the autoconf misaligned accesses code fragment. - -- Include sys/param.h to get BYTE_ORDER in a few places. Thanks to - Pavlin Ivanov Radoslavov (pavlin@cs.titech.ac.jp) - -v3.2 Sun Jun 23 02:28:10 PDT 1996 - -- Print new icmp unreachable codes as suggested by Martin Fredriksson - (martin@msp.se). Also print code value when unknown for icmp redirect - and time exceeded. - -- Fix an alignment endian bug in getname(). Thanks to John Hawkinson. - -- Define "new" domain record types if not found in arpa/nameserv.h. - Resulted from a suggestion from John Hawkinson (jhawk@mit.edu). Also - fixed an endian bug when printing mx record and added some new record - types. - -- Added RIP V2 support. Thanks to Jeffrey Honig (jch@bsdi.com) - -- Added T/TCP options printing. As suggested by Richard Stevens - (rstevens@noao.edu) - -- Use autoconf to detect architectures that can't handle misaligned - accesses. - -v3.1 Thu Jun 13 20:59:32 PDT 1996 - -- Changed u_int32/int32 to u_int32_t/int32_t to be consistent with bsd - and bind (as suggested by Charles Hannum). - -- Port to GNU autoconf. - -- Add support for printing DVMRP and PIM traffic thanks to - Havard Eidnes (Havard.Eidnes@runit.sintef.no). - -- Fix AppleTalk, IPX and DECnet byte order problems due to wrong endian - define being referenced. Reported by Terry Kennedy. - -- Minor fixes to the man page thanks to Mark Andrews. - -- Endian fixes to RTP and vat packet dumpers, thanks to Bruce Mah - (bmah@cs.berkeley.edu). - -- Added support for new dns types, thanks to Rainer Orth. - -- Fixed tftp_print() to print the block number for ACKs. - -- Document -dd and -ddd. Resulted from a bug report from Charlie Slater - (cslater@imatek.com). - -- Check return status from malloc/calloc/etc. - -- Check return status from pcap_loop() so we can print an error and - exit with a bad status if there were problems. - -- Bail if ip option length is <= 0. Resulted from a bug report from - Darren Reed (darrenr@vitruvius.arbld.unimelb.edu.au). - -- Print out a little more information for sun rpc packets. - -- Add suport for Kerberos 4 thanks to John Hawkinson (jhawk@mit.edu). - -- Fixed the Fix EXTRACT_SHORT() and EXTRACT_LONG() macros (which were - wrong on little endian machines). - -- Fixed alignment bug in ipx_decode(). Thanks to Matt Crawford - (crawdad@fnal.gov). - -- Fix ntp_print() to not print garbage when the stratum is - "unspecified." Thanks to Deus Ex Machina (root@belle.bork.com). - -- Rewrote tcp options printer code to check for truncation. Added - selective acknowledgment case. - -- Fixed an endian bug in the ospf printer. Thanks to Jeffrey C Honig - (jch@bsdi.com) - -- Fix rip printer to handle 4.4 BSD sockaddr struct which only uses one - octet for the sa_family member. Thanks to Yoshitaka Tokugawa - (toku@dit.co.jp) - -- Don't checksum ip header if we don't have all of it. Thanks to John - Hawkinson (jhawk@mit.edu). - -- Print out hostnames if possible in egp printer. Thanks to Jeffrey - Honig (jhc@bsdi.com) - - -v3.1a1 Wed May 3 19:21:11 PDT 1995 - -- Include time.h when SVR4 is defined to avoid problems under Solaris - 2.3. - -- Fix etheraddr_string() in the ETHER_SERVICE to return the saved - strings, not the local buffer. Thanks to Stefan Petri - (petri@ibr.cs.tu-bs.de). - -- Detect when pcap raises the snaplen (e.g. with snit). Print a warning - that the selected value was not used. Thanks to Pascal Hennequin - (Pascal.Hennequin@hugo.int-evry.fr). - -- Add a truncated packet test to print-nfs.c. Thanks to Pascal Hennequin. - -- BYTEORDER -> BYTE_ORDER Thanks to Terry Kennedy (terry@spcvxa.spc.edu). - -v3.0.3 Sun Oct 1 18:35:00 GMT 1995 - -- Although there never was a 3.0.3 release, the linux boys cleverly - "released" one in late 1995. - -v3.0.2 Thu Apr 20 21:28:16 PDT 1995 - -- Change configuration to not use gcc v2 flags with gcc v1. - -- Redo gmt2local() so that it works under BSDI (which seems to return - an empty timezone struct from gettimeofday()). Based on report from - Terry Kennedy (terry@spcvxa.spc.edu). - -- Change configure to recognize IP[0-9]* as "mips" SGI hardware. Based - on report from Mark Andrews (mandrews@alias.com). - -- Don't pass cc flags to gcc. Resulted from a bug report from Rainer - Orth (ro@techfak.uni-bielefeld.de). - -- Fixed printout of connection id for uncompressed tcp slip packets. - Resulted from a bug report from Richard Stevens (rstevens@noao.edu). - -- Hack around deficiency in Ultrix's make. - -- Add ETHERTYPE_TRAIL define which is missing from irix5. - -v3.0.1 Wed Aug 31 22:42:26 PDT 1994 - -- Fix problems with gcc2 vs. malloc() and read() prototypes under SunOS 4. - -v3.0 Mon Jun 20 19:23:27 PDT 1994 - -- Added support for printing tcp option timestamps thanks to - Mark Andrews (mandrews@alias.com). - -- Reorganize protocol dumpers to take const pointers to packets so they - never change the contents (i.e., they used to do endian conversions - in place). Previously, whenever more than one pass was taken over - the packet, the packet contents would be dumped incorrectly (i.e., - the output form -x would be wrong on little endian machines because - the protocol dumpers would modify the data). Thanks to Charles Hannum - (mycroft@gnu.ai.mit.edu) for reporting this problem. - -- Added support for decnet protocol dumping thanks to Jeff Mogul - (mogul@pa.dec.com). - -- Fix bug that caused length of packet to be incorrectly printed - (off by ether header size) for unknown ethernet types thanks - to Greg Miller (gmiller@kayak.mitre.org). - -- Added support for IPX protocol dumping thanks to Brad Parker - (brad@fcr.com). - -- Added check to verify IP header checksum under -v thanks to - Brad Parker (brad@fcr.com). - -- Move packet capture code to new libpcap library (which is - packaged separately). - -- Prototype everything and assume an ansi compiler. - -- print-arp.c: Print hardware ethernet addresses if they're not - what we expect. - -- print-bootp.c: Decode the cmu vendor field. Add RFC1497 tags. - Many helpful suggestions from Gordon Ross (gwr@jericho.mc.com). - -- print-fddi.c: Improvements. Thanks to Jeffrey Mogul - (mogul@pa.dec.com). - -- print-icmp.c: Byte swap netmask before printing. Thanks to - Richard Stevens (rstevens@noao.edu). Print icmp type when unknown. - -- print-ip.c: Print the inner ip datagram of ip-in-ip encapsulated packets. - By default, only the inner packet is dumped, appended with the token - "(encap)". Under -v, both the inner and output packets are dumped - (on the same line). Note that the filter applies to the original packet, - not the encapsulated packet. So if you run tcpdump on a net with an - IP Multicast tunnel, you cannot filter out the datagrams using the - conventional syntax. (You can filter away all the ip-in-ip traffic - with "not ip proto 4".) - -- print-nfs.c: Keep pending rpc's in circular table. Add generic - nfs header and remove os dependences. Thanks to Jeffrey Mogul. - -- print-ospf.c: Improvements. Thanks to Jeffrey Mogul. - -- tcpdump.c: Add -T flag allows interpretation of "vat", "wb", "rpc" - (sunrpc) and rtp packets. Added "inbound" and "outbound" keywords - Add && and || operators - -v2.2.1 Tue Jun 6 17:57:22 PDT 1992 - -- Fix bug with -c flag. - -v2.2 Fri May 22 17:19:41 PDT 1992 - -- savefile.c: Remove hack that shouldn't have been exported. Add - truncate checks. - -- Added the 'icmp' keyword. For example, 'icmp[0] != 8 and icmp[0] != 0' - matches non-echo/reply ICMP packets. - -- Many improvements to filter code optimizer. - -- Added 'multicast' keyword and extended the 'broadcast' keyword can now be - so that protocol qualifications are allowed. For example, "ip broadcast" - and "ether multicast" are valid filters. - -- Added support for monitoring the loopback interface (i.e. 'tcpdump -i lo'). - Jeffrey Honig (jch@MITCHELL.CIT.CORNELL.EDU) contributed the kernel - patches to netinet/if_loop.c. - -- Added support for the Ungermann-Bass Ethernet on IBM/PC-RTs running AOS. - Contact Jeffrey Honig (jch@MITCHELL.CIT.CORNELL.EDU) for the diffs. - -- Added EGP and OSPF printers, thanks to Jeffrey Honig. - -v2.1 Tue Jan 28 11:00:14 PST 1992 - -- Internal release (never publically exported). - -v2.0.1 Sun Jan 26 21:10:10 PDT - -- Various byte ordering fixes. - -- Add truncation checks. - -- inet.c: Support BSD style SIOCGIFCONF. - -- nametoaddr.c: Handle multi addresses for single host. - -- optimize.c: Rewritten. - -- pcap-bpf.c: don't choke when we get ptraced. only set promiscuous - for broadcast nets. - -- print-atal.c: Fix an alignment bug (thanks to - stanonik@nprdc.navy.mil) Add missing printf() argument. - -- print-bootp.c: First attempt at decoding the vendor buffer. - -- print-domain.c: Fix truncation checks. - -- print-icmp.c: Calculate length of packets from the ip header. - -- print-ip.c: Print frag id in decimal (so it's easier to match up - with non-frags). Add support for ospf, egp and igmp. - -- print-nfs.c: Lots of changes. - -- print-ntp.c: Make some verbose output depend on -v. - -- print-snmp.c: New version from John LoVerso. - -- print-tcp.c: Print rfc1072 tcp options. - -- tcpdump.c: Print "0x" prefix for %x formats. Always print 6 digits - (microseconds) worth of precision. Fix uid bugs. - -- A packet dumper has been added (thanks to Jeff Mogul of DECWRL). - With this option, you can create an architecture independent binary - trace file in real time, without the overhead of the packet printer. - At a later time, the packets can be filtered (again) and printed. - -- BSD is supported. You must have BPF in your kernel. - Since the filtering is now done in the kernel, fewer packets are - dropped. In fact, with BPF and the packet dumper option, a measly - Sun 3/50 can keep up with a busy network. - -- Compressed SLIP packets can now be dumped, provided you use our - SLIP software and BPF. These packets are dumped as any other IP - packet; the compressed headers are dumped with the '-e' option. - -- Machines with little-endian byte ordering are supported (thanks to - Jeff Mogul). - -- Ultrix 4.0 is supported (also thanks to Jeff Mogul). - -- IBM RT and Stanford Enetfilter support has been added by - Rayan Zachariassen . Tcpdump has been tested under - both the vanilla Enetfilter interface, and the extended interface - (#ifdef'd by IBMRTPC) present in the MERIT version of the Enetfilter. - -- TFTP packets are now printed (requests only). - -- BOOTP packets are now printed. - -- SNMP packets are now printed. (thanks to John LoVerso of Xylogics). - -- Sparc architectures, including the Sparcstation-1, are now - supported thanks to Steve McCanne and Craig Leres. - -- SunOS 4 is now supported thanks to Micky Liu of Columbia - University (micky@cunixc.cc.columbia.edu). - -- IP options are now printed. - -- RIP packets are now printed. - -- There's a -v flag that prints out more information than the - default (e.g., it will enable printing of IP ttl, tos and id) - and -q flag that prints out less (e.g., it will disable - interpretation of AppleTalk-in-UDP). - -- The grammar has undergone substantial changes (if you have an - earlier version of tcpdump, you should re-read the manual - entry). - - The most useful change is the addition of an expression - syntax that lets you filter on arbitrary fields or values in the - packet. E.g., "ip[0] > 0x45" would print only packets with IP - options, "tcp[13] & 3 != 0" would print only TCP SYN and FIN - packets. - - The most painful change is that concatenation no longer means - "and" -- e.g., you have to say "host foo and port bar" instead - of "host foo port bar". The up side to this down is that - repeated qualifiers can be omitted, making most filter - expressions shorter. E.g., you can now say "ip host foo and - (bar or baz)" to look at ip traffic between hosts foo and bar or - between hosts foo and baz. [The old way of saying this was "ip - host foo and (ip host bar or ip host baz)".] - -v2.0 Sun Jan 13 12:20:40 PST 1991 - -- Initial public release. diff --git a/CMakeLists.txt b/CMakeLists.txt index 156803f..b36c30d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,10 +11,12 @@ include(Version) set(CMAKE_MACOSX_RPATH 0) -execute_process(COMMAND ../configure WORKING_DIRECTORY ${CMAKE_BINARY_DIR}) +execute_process(COMMAND ../src/configure WORKING_DIRECTORY ${CMAKE_BINARY_DIR}) execute_process(COMMAND make CFLAGS+=-DGIT_VERSION=\\"${GIT_VERSION}\\" WORKING_DIRECTORY ${CMAKE_BINARY_DIR}) +execute_process(COMMAND cp tcpdump tcpdump_mesa WORKING_DIRECTORY ${CMAKE_BINARY_DIR}) + # install the minidump tools to target binary dir -install(PROGRAMS ${CMAKE_BINARY_DIR}/tcpdump DESTINATION ./bin/tcpdump_mesa COMPONENT EXECUTABLE) +install(PROGRAMS ${CMAKE_BINARY_DIR}/tcpdump_mesa DESTINATION ./bin/ COMPONENT EXECUTABLE) include(Package) \ No newline at end of file diff --git a/CREDITS b/CREDITS deleted file mode 100644 index c303981..0000000 --- a/CREDITS +++ /dev/null @@ -1,234 +0,0 @@ -This file lists people who have contributed to tcpdump: - -The current maintainers: - Bill Fenner - Denis Ovsienko - Fulvio Risso - Guy Harris - Hannes Gredler - Michael Richardson - Francois-Xavier Le Bail - -Additional people who have contributed patches: - - Aaron Campbell - A Costa - Albert Chin - Alexandra Kossovsky - Alfredo Andres - Ananth Suryanarayana - Andrea Bittau - Andrew Brown - Andrew Church - Andrew Darqui - Andrew Hintz - Andrew Nording - Andrew Tridgell - Andy Heffernan - Anton Bernal - Antonin Décimo - Arkadiusz Miskiewicz - Armando L. Caro Jr. - Arnaldo Carvalho de Melo - Atsushi Onoe - Baptiste Jonglez - Ben Byer - Ben Smithurst - Bert Vermeulen - Bill Parker - Bjoern A. Zeeb - Bram - Brent L. Bates - Brian Ginsbach - Bruce M. Simpson - Carles Kishimoto Bisbe - Charles M. Hannum - Charlie Lenahan - Chris Cogdon - Chris G. Demetriou - Chris Jepeway - Chris Larson - Christian Sievers - Christophe Rhodes - Cliff Frey - Craig Rodrigues - Crist J. Clark - Daniel Hagerty - Darren Reed - David Binderman - David Horn - David Smith - David Young - Dmitrij Tejblum - Dmitry Eremin-Solenikov - Don Ebright - Eddie Kohler - Elmar Kirchner - Fang Wang - Florent Drouin - Florian Forster - fra - Francesco Fondelli - Francisco Matias Cuenca-Acuna - Francis Dupont - Frank Volf - Fulvio Risso - George Bakos - Gerald Combs - Gerrit Renker - Gert Doering - Gilbert Ramirez Jr. - Gisle Vanem - Greg Minshall - Grégoire Henry - Gregory Detal - Greg Stark - Hank Leininger - Hannes Viertel - Harry Raaymakers - Heinz-Ado Arnolds - Hendrik Scholz - Herwin Weststrate - Ian McDonald - Ilpo Järvinen - Jacek Tobiasz - Jakob Schlyter - Jamal Hadi Salim - Jan Oravec - Jason R. Thorpe - Jefferson Ogata - Jeffrey Hutzelman - Jean-Raphaël Gaglione - Jesper Peterson - Jesse Gross - Jim Hutchins - João Medeiros - Joerg Mayer - Jonathan Heusser - Jorge Boncompte [DTI2] - Jørgen Thomsen - Julian Cowley - Juliusz Chroboczek - Kaarthik Sivakumar - Kaladhar Musunuru - Karl Norby - Kazushi Sugyo - Kelly Carmichael - Ken Hornstein - Kenichi Maehashi - Kevin Steves - Klaus Klein - Kris Kennaway - Krzysztof Halasa - Larry Lile - Lennert Buytenhek - Loganaden Velvindron - Longinus00 - Loris Degioanni - Love Hörnquist-Åstrand - Lucas C. Villa Real - Luis MartinGarcia - Maciej W. Rozycki - Manu Pathak - Marc Abramowitz - Marc A. Lehmann - Marc Binderberger - Mark Ellzey Thomas - Marko Kiiskila - Markus Schöpflin - Marshall Rose - Martin Husemann - Matthieu Boutier - Max Laier - Michael A. Meffie III - Michael Madore - Michael Riepe - Michael Shalayeff - Michael Shields - Michael T. Stolarchuk - Michal Sekletar - Michele "mydecay" Marchetto - Mike Frysinger - Minto Jeyananth - Monroe Williams - Motonori Shindo - Nathaniel Couper-Noles - Nathan J. Williams - Neil T. Spring - Nickolai Zeldovich - Nicolas Ferrero - Niels Provos - Noritoshi Demizu - Olaf Kirch - Ola Martin Lykkja - Oleksij Rempel - Onno van der Linden - Paolo Abeni - Pascal Hennequin - Pasvorn Boonmark - Paul Ferrell - Paul Mundt - Paul S. Traina - Pavlin Radoslavov - Pawel Worach - Pekka Savola - Petar Alilovic - Peter Fales - Peter Jeremy - Peter Volkov - - Phil Wood - Rafal Maszkowski - Randy Sofia - Raphael Raimbault - Rick Cheng - Rick Jones - Rick Watson - Rob Braun - Robert Edmonds - Roderick Schertler - Romain Francoise - Ruben Kerkhof - Sagun Shakya - Sami Farin - Scott Mcmillan - Scott Rose - Sebastian Krahmer - Sebastien Raveau - Sebastien Vincent - Sepherosa Ziehau - Seth Webster - Shinsuke Suzuki - Simon Ruderich - Steinar Haug - Stephane Bortzmeyer - Swaminathan Chandrasekaran - Swaathi Vetrivel - Takashi Yamamoto - Tatuya Jinmei - Terry Kennedy - Thomas Jacob - Timo Koskiahde - Tony Li - Toshihiro Kanda - Udayakumar - Uns Lider - Victor Oppleman - Vyacheslav Trushkin - Weesan Lee - Wesley Griffin - Wesley Shields - Wilbert de Graaf - Will Drewry - William J. Hulley - Wim Torfs - Yen Yen Lim - Yoshifumi Nishida - -The original LBL crew: - Steve McCanne - Craig Leres - Van Jacobson - -Past maintainers: - Jun-ichiro itojun Hagino Also see: http://www.wide.ad.jp/itojun-award/ diff --git a/INSTALL.txt b/INSTALL.txt deleted file mode 100644 index 39e12f8..0000000 --- a/INSTALL.txt +++ /dev/null @@ -1,214 +0,0 @@ -If you have not built libpcap, and your system does not have libpcap -installed, install libpcap first. Your system might provide a version -of libpcap that can be installed; if so, to compile tcpdump you might -need to install a "developer" version of libpcap as well as the -"run-time" version. You can also install tcpdump.org's version of -libpcap; see the README file in this directory for the ftp location. - -You will need an ANSI C compiler to build tcpdump. The configure script -will abort if your compiler is not ANSI compliant. If this happens, use -the generally available GNU C compiler (GCC). - -After libpcap has been built (either install it with "make install" or -make sure both the libpcap and tcpdump source trees are in the same -directory), run ./configure (a shell script). "configure" will -determine your system attributes and generate an appropriate Makefile -from Makefile.in. Now build tcpdump by running "make". - -If everything builds ok, su and type "make install". This will install -tcpdump and the manual entry. Any user will be able to use tcpdump to -read saved captures. Whether a user will be able to capture traffic -depends on the OS and the configuration of the system; see the tcpdump -man page for details. DO NOT give untrusted users the ability to -capture traffic. If a user can capture traffic, he or she could use -utilities such as tcpdump to capture any traffic on your net, including -passwords. - -Note that most systems ship tcpdump, but usually an older version. -Remember to remove or rename the installed binary when upgrading. - -If your system is not one which we have tested tcpdump on, you may have -to modify the configure script and Makefile.in. Please send us patches -for any modifications you need to make. - -Please see "PLATFORMS" for notes about tested platforms. - - -FILES ------ -CHANGES - description of differences between releases -CREDITS - people that have helped tcpdump along -INSTALL.txt - this file -LICENSE - the license under which tcpdump is distributed -Makefile.in - compilation rules (input to the configure script) -README - description of distribution -Readme.Win32 - notes on building tcpdump on Win32 systems (with WinPcap) -VERSION - version of this release -aclocal.m4 - autoconf macros -addrtoname.c - address to hostname routines -addrtoname.h - address to hostname definitions -ah.h - IPSEC Authentication Header definitions -appletalk.h - AppleTalk definitions -ascii_strcasecmp.c - locale-independent case-independent string comparison - routines -atime.awk - TCP ack awk script -atm.h - ATM traffic type definitions -bpf_dump.c - BPF program printing routines, in case libpcap doesn't - have them -chdlc.h - Cisco HDLC definitions -cpack.c - functions to extract packed data -cpack.h - declarations of functions to extract packed data -config.guess - autoconf support -config.h.in - autoconf input -config.sub - autoconf support -configure - configure script (run this first) -configure.in - configure script source -ether.h - Ethernet definitions -ethertype.h - Ethernet type value definitions -extract.h - alignment definitions -gmpls.c - GMPLS definitions -gmpls.h - GMPLS declarations -gmt2local.c - time conversion routines -gmt2local.h - time conversion prototypes -install-sh - BSD style install script -interface.h - globals, prototypes and definitions -ip.h - IP definitions -ip6.h - IPv6 definitions -ipproto.c - IP protocol type value-to-name table -ipproto.h - IP protocol type value definitions -l2vpn.c - L2VPN encapsulation value-to-name table -l2vpn.h - L2VPN encapsulation definitions -lbl/os-*.h - OS-dependent defines and prototypes -llc.h - LLC definitions -machdep.c - machine dependent routines -machdep.h - machine dependent definitions -makemib - mib to header script -mib.h - mib definitions -missing/* - replacements for missing library functions -mkdep - construct Makefile dependency list -mpls.h - MPLS definitions -nameser.h - DNS definitions -netdissect.h - definitions and declarations for tcpdump-as-library - (under development) -nfs.h - Network File System V2 definitions -nfsfh.h - Network File System file handle definitions -nlpid.c - OSI NLPID value-to-name table -nlpid.h - OSI NLPID definitions -ospf.h - Open Shortest Path First definitions -packetdat.awk - TCP chunk summary awk script -parsenfsfh.c - Network File System file parser routines -pcap_dump_ftell.c - pcap_dump_ftell() implementation, in case libpcap - doesn't have it -pcap-missing.h - declarations of functions possibly missing from libpcap -ppp.h - Point to Point Protocol definitions -print-802_11.c - IEEE 802.11 printer routines -print-ap1394.c - Apple IP-over-IEEE 1394 printer routines -print-ah.c - IPSEC Authentication Header printer routines -print-aodv.c - AODV printer routines -print-arcnet.c - ARCNET printer routines -print-arp.c - Address Resolution Protocol printer routines -print-ascii.c - ASCII packet dump routines -print-atalk.c - AppleTalk printer routines -print-atm.c - ATM printer routines -print-beep.c - BEEP printer routines -print-bgp.c - Border Gateway Protocol printer routines -print-bootp.c - BOOTP and IPv4 DHCP printer routines -print-bt.c - Bluetooth printer routines -print-cdp.c - Cisco Discovery Protocol printer routines -print-chdlc.c - Cisco HDLC printer routines -print-cip.c - Classical-IP over ATM routines -print-cnfp.c - Cisco NetFlow printer routines -print-dccp.c - DCCP printer routines -print-decnet.c - DECnet printer routines -print-dhcp6.c - IPv6 DHCP printer routines -print-domain.c - Domain Name System printer routines -print-dvmrp.c - Distance Vector Multicast Routing Protocol printer routines -print-eap.c - EAP printer routines -print-enc.c - OpenBSD IPsec encapsulation BPF layer printer routines -print-egp.c - External Gateway Protocol printer routines -print-esp.c - IPSEC Encapsulating Security Payload printer routines -print-ether.c - Ethernet printer routines -print-fddi.c - Fiber Distributed Data Interface printer routines -print-fr.c - Frame Relay printer routines -print-frag6.c - IPv6 fragmentation header printer routines -print-gre.c - Generic Routing Encapsulation printer routines -print-hsrp.c - Cisco Hot Standby Router Protocol printer routines -print-icmp.c - Internet Control Message Protocol printer routines -print-icmp6.c - IPv6 Internet Control Message Protocol printer routines -print-igmp.c - Internet Group Management Protocol printer routines -print-igrp.c - Interior Gateway Routing Protocol printer routines -print-ip.c - IP printer routines -print-ip6.c - IPv6 printer routines -print-ip6opts.c - IPv6 header option printer routines -print-ipcomp.c - IP Payload Compression Protocol printer routines -print-ipx.c - IPX printer routines -print-isakmp.c - Internet Security Association and Key Management Protocol -print-isoclns.c - ISO CLNS, ESIS, and ISIS printer routines -print-krb.c - Kerberos printer routines -print-l2tp.c - Layer Two Tunneling Protocol printer routines -print-lane.c - ATM LANE printer routines -print-llc.c - IEEE 802.2 LLC printer routines -print-lspping.c - LSPPING printer routines -print-lwres.c - Lightweight Resolver protocol printer routines -print-mobile.c - IPv4 mobility printer routines -print-mobility.c - IPv6 mobility printer routines -print-mpls.c - Multi-Protocol Label Switching printer routines -print-msdp.c - Multicast Source Discovery Protocol printer routines -print-nfs.c - Network File System printer routines -print-ntp.c - Network Time Protocol printer routines -print-null.c - BSD loopback device printer routines -print-ospf.c - Open Shortest Path First printer routines -print-ospf6.c - IPv6 Open Shortest Path First printer routines -print-pflog.c - OpenBSD packet filter log file printer routines -print-pgm.c - Pragmatic General Multicast printer routines -print-pim.c - Protocol Independent Multicast printer routines -print-ppp.c - Point to Point Protocol printer routines -print-pppoe.c - PPP-over-Ethernet printer routines -print-pptp.c - Point-to-Point Tunnelling Protocol printer routines -print-radius.c - Radius protocol printer routines -print-raw.c - Raw IP printer routines -print-rip.c - Routing Information Protocol printer routines -print-ripng.c - IPv6 Routing Information Protocol printer routines -print-rrcp.c - Realtek Remote Control Protocol routines -print-rsvp.c - Resource reSerVation Protocol (RSVP) printer routines -print-rt6.c - IPv6 routing header printer routines -print-rx.c - AFS RX printer routines -print-sctp.c - Stream Control Transmission Protocol printer routines -print-sip.c - SIP printer routines -print-sl.c - Compressed Serial Line Internet Protocol printer routines -print-sll.c - Linux "cooked" capture printer routines -print-slow.c - IEEE "slow protocol" (802.3ad) printer routines -print-smb.c - SMB/CIFS printer routines -print-snmp.c - Simple Network Management Protocol printer routines -print-stp.c - IEEE 802.1d spanning tree protocol printer routines -print-sunatm.c - SunATM DLPI capture printer routines -print-sunrpc.c - Sun Remote Procedure Call printer routines -print-symantec.c - Symantec Enterprise Firewall printer routines -print-tcp.c - TCP printer routines -print-telnet.c - Telnet option printer routines -print-tftp.c - Trivial File Transfer Protocol printer routines -print-timed.c - BSD time daemon protocol printer routines -print-token.c - Token Ring printer routines -print-udp.c - UDP printer routines -print-usb.c - USB printer routines -print-vjc.c - PPP Van Jacobson compression (RFC1144) printer routines -print-vrrp.c - Virtual Router Redundancy Protocol -print-wb.c - White Board printer routines -print-zephyr.c - Zephyr printer routines -rpc_auth.h - definitions for ONC RPC authentication -rpc_msg.h - definitions for ONC RPC messages -send-ack.awk - unidirectional tcp send/ack awk script -setsignal.c - OS-independent signal routines -setsignal.h - OS-independent signal prototypes -slcompress.h - SLIP/PPP Van Jacobson compression (RFC1144) definitions -smb.h - SMB/CIFS definitions -smbutil.c - SMB/CIFS utility routines -stime.awk - TCP send awk script -tcp.h - TCP definitions -tcpdump.1 - manual entry -tcpdump.c - main program -timeval-operations.h - timeval operations macros -udp.h - UDP definitions -util.c - utility routines -vfprintf.c - emulation routine -win32 - headers and routines for building on Win32 systems diff --git a/LICENSE b/LICENSE deleted file mode 100644 index dea5f7d..0000000 --- a/LICENSE +++ /dev/null @@ -1,19 +0,0 @@ -License: BSD - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - 3. The names of the authors may not be used to endorse or promote - products derived from this software without specific prior - written permission. - -THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. diff --git a/Makefile-devel-adds b/Makefile-devel-adds deleted file mode 100644 index 7bf6420..0000000 --- a/Makefile-devel-adds +++ /dev/null @@ -1,22 +0,0 @@ -# -# Auto-regenerate configure script or Makefile when things change. -# From autoconf.info . Works best with GNU Make. -# -${srcdir}/configure: configure.in aclocal.m4 - cd ${srcdir} && autoconf - -# autoheader might not change config.h.in, so touch a stamp file. -${srcdir}/config.h.in: ${srcdir}/stamp-h.in -${srcdir}/stamp-h.in: configure.in aclocal.m4 - cd ${srcdir} && autoheader - echo timestamp > ${srcdir}/stamp-h.in - -config.h: stamp-h -stamp-h: ${srcdir}/config.h.in config.status - ./config.status - -Makefile: Makefile.in config.status - ./config.status - -config.status: ${srcdir}/configure - ./config.status --recheck diff --git a/Makefile.in b/Makefile.in deleted file mode 100644 index 8f832b2..0000000 --- a/Makefile.in +++ /dev/null @@ -1,454 +0,0 @@ -# Copyright (c) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997 -# The Regents of the University of California. All rights reserved. -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that: (1) source code distributions -# retain the above copyright notice and this paragraph in its entirety, (2) -# distributions including binary code include the above copyright notice and -# this paragraph in its entirety in the documentation or other materials -# provided with the distribution, and (3) all advertising materials mentioning -# features or use of this software display the following acknowledgement: -# ``This product includes software developed by the University of California, -# Lawrence Berkeley Laboratory and its contributors.'' Neither the name of -# the University nor the names of its contributors may be used to endorse -# or promote products derived from this software without specific prior -# written permission. -# THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED -# WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF -# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -# -# Various configurable paths (remember to edit Makefile.in, not Makefile) -# - -# Top level hierarchy -prefix = @prefix@ -exec_prefix = @exec_prefix@ -datarootdir = @datarootdir@ -# Pathname of directory to install the binary -sbindir = @sbindir@ -# Pathname of directory to install the man page -mandir = @mandir@ - -# VPATH -srcdir = @srcdir@ -VPATH = @srcdir@ - -# -# You shouldn't need to edit anything below here. -# - -CC = @CC@ -AR = @AR@ -MKDEP = @MKDEP@ -PROG = tcpdump -CCOPT = @V_CCOPT@ -INCLS = -I. @V_INCLS@ -DEFS = @DEFS@ @CPPFLAGS@ @V_DEFS@ - -# Standard CFLAGS -CFLAGS = @CFLAGS@ -FULL_CFLAGS = $(CCOPT) $(DEFS) $(INCLS) $(CFLAGS) - -# Standard LDFLAGS -LDFLAGS = @LDFLAGS@ - -# Standard LIBS -LIBS = @LIBS@ -LIBS += -lpthread - -INSTALL = @INSTALL@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_DATA = @INSTALL_DATA@ -RANLIB = @RANLIB@ - -DEPENDENCY_CFLAG = @DEPENDENCY_CFLAG@ - -# Explicitly define compilation rule since SunOS 4's make doesn't like gcc. -# Also, gcc does not remove the .o before forking 'as', which can be a -# problem if you don't own the file but can write to the directory. -.c.o: - @rm -f $@ - $(CC) $(FULL_CFLAGS) -c $(srcdir)/$*.c - -CSRC = setsignal.c tcpdump.c util.c net_common.c - -LIBNETDISSECT_SRC=\ - addrtoname.c \ - addrtostr.c \ - af.c \ - ascii_strcasecmp.c \ - checksum.c \ - cpack.c \ - gmpls.c \ - gmt2local.c \ - in_cksum.c \ - ipproto.c \ - l2vpn.c \ - machdep.c \ - nlpid.c \ - oui.c \ - parsenfsfh.c \ - print.c \ - print-802_11.c \ - print-802_15_4.c \ - print-ah.c \ - print-ahcp.c \ - print-aodv.c \ - print-aoe.c \ - print-ap1394.c \ - print-arcnet.c \ - print-arp.c \ - print-ascii.c \ - print-atalk.c \ - print-atm.c \ - print-babel.c \ - print-beep.c \ - print-bfd.c \ - print-bgp.c \ - print-bootp.c \ - print-bt.c \ - print-calm-fast.c \ - print-carp.c \ - print-cdp.c \ - print-cfm.c \ - print-chdlc.c \ - print-cip.c \ - print-cnfp.c \ - print-dccp.c \ - print-decnet.c \ - print-dhcp6.c \ - print-domain.c \ - print-dtp.c \ - print-dvmrp.c \ - print-eap.c \ - print-egp.c \ - print-eigrp.c \ - print-enc.c \ - print-esp.c \ - print-ether.c \ - print-fddi.c \ - print-forces.c \ - print-fr.c \ - print-frag6.c \ - print-ftp.c \ - print-geneve.c \ - print-geonet.c \ - print-gre.c \ - print-hncp.c \ - print-hsrp.c \ - print-http.c \ - print-icmp.c \ - print-icmp6.c \ - print-igmp.c \ - print-igrp.c \ - print-ip.c \ - print-ip6.c \ - print-ip6opts.c \ - print-ipcomp.c \ - print-ipfc.c \ - print-ipnet.c \ - print-ipx.c \ - print-isakmp.c \ - print-isoclns.c \ - print-juniper.c \ - print-krb.c \ - print-l2tp.c \ - print-lane.c \ - print-ldp.c \ - print-lisp.c \ - print-llc.c \ - print-lldp.c \ - print-lmp.c \ - print-loopback.c \ - print-lspping.c \ - print-lwapp.c \ - print-lwres.c \ - print-m3ua.c \ - print-medsa.c \ - print-mobile.c \ - print-mobility.c \ - print-mpcp.c \ - print-mpls.c \ - print-mptcp.c \ - print-msdp.c \ - print-msnlb.c \ - print-nflog.c \ - print-nfs.c \ - print-nsh.c \ - print-ntp.c \ - print-null.c \ - print-olsr.c \ - print-openflow-1.0.c \ - print-openflow.c \ - print-ospf.c \ - print-ospf6.c \ - print-otv.c \ - print-pgm.c \ - print-pim.c \ - print-pktap.c \ - print-ppi.c \ - print-ppp.c \ - print-pppoe.c \ - print-pptp.c \ - print-radius.c \ - print-raw.c \ - print-resp.c \ - print-rip.c \ - print-ripng.c \ - print-rpki-rtr.c \ - print-rrcp.c \ - print-rsvp.c \ - print-rt6.c \ - print-rtsp.c \ - print-rx.c \ - print-sctp.c \ - print-sflow.c \ - print-sip.c \ - print-sl.c \ - print-sll.c \ - print-slow.c \ - print-smtp.c \ - print-snmp.c \ - print-stp.c \ - print-sunatm.c \ - print-sunrpc.c \ - print-symantec.c \ - print-syslog.c \ - print-tcp.c \ - print-telnet.c \ - print-tftp.c \ - print-timed.c \ - print-tipc.c \ - print-token.c \ - print-udld.c \ - print-udp.c \ - print-usb.c \ - print-vjc.c \ - print-vqp.c \ - print-vrrp.c \ - print-vtp.c \ - print-vxlan.c \ - print-vxlan-gpe.c \ - print-wb.c \ - print-zephyr.c \ - print-zeromq.c \ - signature.c \ - strtoaddr.c \ - util-print.c - -LOCALSRC = @LOCALSRC@ -GENSRC = version.c -LIBOBJS = @LIBOBJS@ - -LIBNETDISSECT_OBJ=$(LIBNETDISSECT_SRC:.c=.o) ${LOCALSRC:.c=.o} ${LIBOBJS} -LIBNETDISSECT=libnetdissect.a - - -SRC = $(CSRC) $(GENSRC) $(LOCALSRC) $(LIBNETDISSECT_SRC) - -# We would like to say "OBJ = $(SRC:.c=.o)" but Ultrix's make cannot -# hack the extra indirection -OBJ = $(CSRC:.c=.o) $(GENSRC:.c=.o) $(LIBNETDISSECT_OBJ) -HDR = \ - addrtoname.h \ - addrtostr.h \ - af.h \ - ah.h \ - appletalk.h \ - ascii_strcasecmp.h \ - atm.h \ - chdlc.h \ - cpack.h \ - ether.h \ - ethertype.h \ - extract.h \ - getopt_long.h \ - gmpls.h \ - gmt2local.h \ - interface.h \ - ip.h \ - ip6.h \ - ipproto.h \ - l2vpn.h \ - llc.h \ - machdep.h \ - mib.h \ - mpls.h \ - nameser.h \ - netdissect.h \ - nfs.h \ - nfsfh.h \ - nlpid.h \ - openflow.h \ - ospf.h \ - oui.h \ - pcap-missing.h \ - ppp.h \ - print.h \ - rpc_auth.h \ - rpc_msg.h \ - rpl.h \ - setsignal.h \ - signature.h \ - slcompress.h \ - smb.h \ - strtoaddr.h \ - tcp.h \ - netdissect-stdinc.h \ - timeval-operations.h \ - udp.h - -TAGHDR = \ - /usr/include/arpa/tftp.h \ - /usr/include/net/if_arp.h \ - /usr/include/net/slip.h \ - /usr/include/netinet/if_ether.h \ - /usr/include/netinet/in.h \ - /usr/include/netinet/ip_icmp.h \ - /usr/include/netinet/tcp.h \ - /usr/include/netinet/udp.h \ - /usr/include/protocols/routed.h - -TAGFILES = $(SRC) $(HDR) $(TAGHDR) - -CLEANFILES = $(PROG) $(OBJ) $(GENSRC) - -EXTRA_DIST = \ - CHANGES \ - CREDITS \ - INSTALL.txt \ - LICENSE \ - Makefile.in \ - Makefile-devel-adds \ - README.md \ - Readme.Win32 \ - VERSION \ - aclocal.m4 \ - atime.awk \ - bpf_dump.c \ - config.guess \ - config.h.in \ - config.sub \ - configure \ - configure.in \ - install-sh \ - lbl/os-osf4.h \ - lbl/os-solaris2.h \ - lbl/os-sunos4.h \ - lbl/os-ultrix4.h \ - makemib \ - missing/dlnames.c \ - missing/datalinks.c \ - missing/getopt_long.c \ - missing/snprintf.c \ - missing/strdup.c \ - missing/strlcat.c \ - missing/strlcpy.c \ - missing/strsep.c \ - mkdep \ - packetdat.awk \ - pcap_dump_ftell.c \ - print-pflog.c \ - print-smb.c \ - send-ack.awk \ - smbutil.c \ - stime.awk \ - tcpdump.1.in \ - vfprintf.c \ - win32/prj/GNUmakefile \ - win32/prj/WinDump.dsp \ - win32/prj/WinDump.dsw - -TEST_DIST= `find tests \( -name 'DIFF' -prune \) -o \( -name NEW -prune \) -o -type f \! -name '.*' \! -name '*~' -print` - -all: $(PROG) $(LIBNETDISSECT) - -$(PROG): $(OBJ) @V_PCAPDEP@ - @rm -f $@ - $(CC) $(FULL_CFLAGS) $(LDFLAGS) -o $@ $(OBJ) $(LIBS) - -$(LIBNETDISSECT): $(LIBNETDISSECT_OBJ) - @rm -f $@ - $(AR) cr $@ $(LIBNETDISSECT_OBJ) - $(RANLIB) $@ - -datalinks.o: $(srcdir)/missing/datalinks.c - $(CC) $(FULL_CFLAGS) -o $@ -c $(srcdir)/missing/datalinks.c -dlnames.o: $(srcdir)/missing/dlnames.c - $(CC) $(FULL_CFLAGS) -o $@ -c $(srcdir)/missing/dlnames.c -getopt_long.o: $(srcdir)/missing/getopt_long.c - $(CC) $(FULL_CFLAGS) -o $@ -c $(srcdir)/missing/getopt_long.c -snprintf.o: $(srcdir)/missing/snprintf.c - $(CC) $(FULL_CFLAGS) -o $@ -c $(srcdir)/missing/snprintf.c -strdup.o: $(srcdir)/missing/strdup.c - $(CC) $(FULL_CFLAGS) -o $@ -c $(srcdir)/missing/strdup.c -strlcat.o: $(srcdir)/missing/strlcat.c - $(CC) $(FULL_CFLAGS) -o $@ -c $(srcdir)/missing/strlcat.c -strlcpy.o: $(srcdir)/missing/strlcpy.c - $(CC) $(FULL_CFLAGS) -o $@ -c $(srcdir)/missing/strlcpy.c -strsep.o: $(srcdir)/missing/strsep.c - $(CC) $(FULL_CFLAGS) -o $@ -c $(srcdir)/missing/strsep.c - -version.o: version.c - $(CC) $(FULL_CFLAGS) -c version.c - -version.c: $(srcdir)/VERSION - @rm -f $@ - if grep GIT ${srcdir}/VERSION >/dev/null; then \ - read ver <${srcdir}/VERSION; \ - echo $$ver | tr -d '\012'; \ - date +_%Y_%m_%d; \ - else \ - cat ${srcdir}/VERSION; \ - fi | sed -e 's/.*/const char version[] = "&";/' > $@ - -install: all - [ -d $(DESTDIR)$(sbindir) ] || \ - (mkdir -p $(DESTDIR)$(sbindir); chmod 755 $(DESTDIR)$(sbindir)) - $(INSTALL_PROGRAM) $(PROG) $(DESTDIR)$(sbindir)/$(PROG) - $(INSTALL_PROGRAM) $(PROG) $(DESTDIR)$(sbindir)/$(PROG).`cat ${srcdir}/VERSION` - [ -d $(DESTDIR)$(mandir)/man1 ] || \ - (mkdir -p $(DESTDIR)$(mandir)/man1; chmod 755 $(DESTDIR)$(mandir)/man1) - $(INSTALL_DATA) $(PROG).1 $(DESTDIR)$(mandir)/man1/$(PROG).1 - -uninstall: - rm -f $(DESTDIR)$(sbindir)/$(PROG) - rm -f $(DESTDIR)$(mandir)/man1/$(PROG).1 - -lint: $(GENSRC) - lint -hbxn $(SRC) | \ - grep -v 'struct/union .* never defined' | \ - grep -v 'possible pointer alignment problem' - -clean: - rm -f $(CLEANFILES) $(PROG)-`cat VERSION`.tar.gz - -distclean: - rm -f $(CLEANFILES) Makefile config.cache config.log config.status \ - config.h gnuc.h os-proto.h stamp-h stamp-h.in $(PROG).1 \ - libnetdissect.a tests/.failed tests/.passed \ - tests/failure-outputs.txt - rm -rf autom4te.cache tests/DIFF tests/NEW - -check: tcpdump - (cd tests && ./TESTrun.sh) - -tags: $(TAGFILES) - ctags -wtd $(TAGFILES) - -TAGS: $(TAGFILES) - etags $(TAGFILES) - -releasetar: - @cwd=`pwd` ; dir=`basename $$cwd` ; name=$(PROG)-`cat VERSION` ; \ - mkdir $$name; \ - tar cf - $(CSRC) $(HDR) $(LIBNETDISSECT_SRC) $(EXTRA_DIST) $(TEST_DIST) | (cd $$name; tar xf -); \ - tar -c -z -f $$name.tar.gz $$name; \ - rm -rf $$name - -testlist: - echo $(TEST_DIST) - -depend: $(GENSRC) - $(MKDEP) -c $(CC) -m $(DEPENDENCY_CFLAG) $(DEFS) $(INCLS) $(SRC) diff --git a/README.md b/README.md deleted file mode 100644 index c83ffab..0000000 --- a/README.md +++ /dev/null @@ -1,243 +0,0 @@ -# tcpdump - -[![Build -Status](https://travis-ci.org/the-tcpdump-group/tcpdump.png)](https://travis-ci.org/the-tcpdump-group/tcpdump) - -TCPDUMP 4.x.y -Now maintained by "The Tcpdump Group" -See www.tcpdump.org - -Please send inquiries/comments/reports to: - -* tcpdump-workers@lists.tcpdump.org - -Anonymous Git is available via: - - git clone git://bpf.tcpdump.org/tcpdump - -Please submit patches by forking the branch on GitHub at: - -* http://github.com/the-tcpdump-group/tcpdump/tree/master - -and issuing a pull request. - -formerly from Lawrence Berkeley National Laboratory - Network Research Group - ftp://ftp.ee.lbl.gov/old/tcpdump.tar.Z (3.4) - -This directory contains source code for tcpdump, a tool for network -monitoring and data acquisition. This software was originally -developed by the Network Research Group at the Lawrence Berkeley -National Laboratory. The original distribution is available via -anonymous ftp to `ftp.ee.lbl.gov`, in `tcpdump.tar.Z`. More recent -development is performed at tcpdump.org, http://www.tcpdump.org/ - -Tcpdump uses libpcap, a system-independent interface for user-level -packet capture. Before building tcpdump, you must first retrieve and -build libpcap, also originally from LBL and now being maintained by -tcpdump.org; see http://www.tcpdump.org/ . - -Once libpcap is built (either install it or make sure it's in -`../libpcap`), you can build tcpdump using the procedure in the `INSTALL.txt` -file. - -The program is loosely based on SMI's "etherfind" although none of the -etherfind code remains. It was originally written by Van Jacobson as -part of an ongoing research project to investigate and improve tcp and -internet gateway performance. The parts of the program originally -taken from Sun's etherfind were later re-written by Steven McCanne of -LBL. To insure that there would be no vestige of proprietary code in -tcpdump, Steve wrote these pieces from the specification given by the -manual entry, with no access to the source of tcpdump or etherfind. - -Over the past few years, tcpdump has been steadily improved by the -excellent contributions from the Internet community (just browse -through the `CHANGES` file). We are grateful for all the input. - -Richard Stevens gives an excellent treatment of the Internet protocols -in his book *"TCP/IP Illustrated, Volume 1"*. If you want to learn more -about tcpdump and how to interpret its output, pick up this book. - -Some tools for viewing and analyzing tcpdump trace files are available -from the Internet Traffic Archive: - -* http://www.sigcomm.org/ITA/ - -Another tool that tcpdump users might find useful is tcpslice: - -* https://github.com/the-tcpdump-group/tcpslice - -It is a program that can be used to extract portions of tcpdump binary -trace files. See the above distribution for further details and -documentation. - -Problems, bugs, questions, desirable enhancements, etc. should be sent -to the address "tcpdump-workers@lists.tcpdump.org". Bugs, support -requests, and feature requests may also be submitted on the GitHub issue -tracker for tcpdump at: - -* https://github.com/the-tcpdump-group/tcpdump/issues - -Source code contributions, etc. should be sent to the email address -above or submitted by forking the branch on GitHub at: - -* http://github.com/the-tcpdump-group/tcpdump/tree/master - -and issuing a pull request. - -Current versions can be found at www.tcpdump.org. - - - The TCPdump team - -original text by: Steve McCanne, Craig Leres, Van Jacobson - -------------------------------------- -``` -This directory also contains some short awk programs intended as -examples of ways to reduce tcpdump data when you're tracking -particular network problems: - -send-ack.awk - Simplifies the tcpdump trace for an ftp (or other unidirectional - tcp transfer). Since we assume that one host only sends and - the other only acks, all address information is left off and - we just note if the packet is a "send" or an "ack". - - There is one output line per line of the original trace. - Field 1 is the packet time in decimal seconds, relative - to the start of the conversation. Field 2 is delta-time - from last packet. Field 3 is packet type/direction. - "Send" means data going from sender to receiver, "ack" - means an ack going from the receiver to the sender. A - preceding "*" indicates that the data is a retransmission. - A preceding "-" indicates a hole in the sequence space - (i.e., missing packet(s)), a "#" means an odd-size (not max - seg size) packet. Field 4 has the packet flags - (same format as raw trace). Field 5 is the sequence - number (start seq. num for sender, next expected seq number - for acks). The number in parens following an ack is - the delta-time from the first send of the packet to the - ack. A number in parens following a send is the - delta-time from the first send of the packet to the - current send (on duplicate packets only). Duplicate - sends or acks have a number in square brackets showing - the number of duplicates so far. - - Here is a short sample from near the start of an ftp: - 3.00 0.20 send . 512 - 3.20 0.20 ack . 1024 (0.20) - 3.20 0.00 send P 1024 - 3.40 0.20 ack . 1536 (0.20) - 3.80 0.40 * send . 0 (3.80) [2] - 3.82 0.02 * ack . 1536 (0.62) [2] - Three seconds into the conversation, bytes 512 through 1023 - were sent. 200ms later they were acked. Shortly thereafter - bytes 1024-1535 were sent and again acked after 200ms. - Then, for no apparent reason, 0-511 is retransmitted, 3.8 - seconds after its initial send (the round trip time for this - ftp was 1sec, +-500ms). Since the receiver is expecting - 1536, 1536 is re-acked when 0 arrives. - -packetdat.awk - Computes chunk summary data for an ftp (or similar - unidirectional tcp transfer). [A "chunk" refers to - a chunk of the sequence space -- essentially the packet - sequence number divided by the max segment size.] - - A summary line is printed showing the number of chunks, - the number of packets it took to send that many chunks - (if there are no lost or duplicated packets, the number - of packets should equal the number of chunks) and the - number of acks. - - Following the summary line is one line of information - per chunk. The line contains eight fields: - 1 - the chunk number - 2 - the start sequence number for this chunk - 3 - time of first send - 4 - time of last send - 5 - time of first ack - 6 - time of last ack - 7 - number of times chunk was sent - 8 - number of times chunk was acked - (all times are in decimal seconds, relative to the start - of the conversation.) - - As an example, here is the first part of the output for - an ftp trace: - - # 134 chunks. 536 packets sent. 508 acks. - 1 1 0.00 5.80 0.20 0.20 4 1 - 2 513 0.28 6.20 0.40 0.40 4 1 - 3 1025 1.16 6.32 1.20 1.20 4 1 - 4 1561 1.86 15.00 2.00 2.00 6 1 - 5 2049 2.16 15.44 2.20 2.20 5 1 - 6 2585 2.64 16.44 2.80 2.80 5 1 - 7 3073 3.00 16.66 3.20 3.20 4 1 - 8 3609 3.20 17.24 3.40 5.82 4 11 - 9 4097 6.02 6.58 6.20 6.80 2 5 - - This says that 134 chunks were transferred (about 70K - since the average packet size was 512 bytes). It took - 536 packets to transfer the data (i.e., on the average - each chunk was transmitted four times). Looking at, - say, chunk 4, we see it represents the 512 bytes of - sequence space from 1561 to 2048. It was first sent - 1.86 seconds into the conversation. It was last - sent 15 seconds into the conversation and was sent - a total of 6 times (i.e., it was retransmitted every - 2 seconds on the average). It was acked once, 140ms - after it first arrived. - -stime.awk -atime.awk - Output one line per send or ack, respectively, in the form - + Andrew Brown + Andrew Church + Andrew Darqui + Andrew Hintz + Andrew Nording + Andrew Tridgell + Andy Heffernan + Anton Bernal + Antonin Décimo + Arkadiusz Miskiewicz + Armando L. Caro Jr. + Arnaldo Carvalho de Melo + Atsushi Onoe + Baptiste Jonglez + Ben Byer + Ben Smithurst + Bert Vermeulen + Bill Parker + Bjoern A. Zeeb + Bram + Brent L. Bates + Brian Ginsbach + Bruce M. Simpson + Carles Kishimoto Bisbe + Charles M. Hannum + Charlie Lenahan + Chris Cogdon + Chris G. Demetriou + Chris Jepeway + Chris Larson + Christian Sievers + Christophe Rhodes + Cliff Frey + Craig Rodrigues + Crist J. Clark + Daniel Hagerty + Darren Reed + David Binderman + David Horn + David Smith + David Young + Dmitrij Tejblum + Dmitry Eremin-Solenikov + Don Ebright + Eddie Kohler + Elmar Kirchner + Fang Wang + Florent Drouin + Florian Forster + fra + Francesco Fondelli + Francisco Matias Cuenca-Acuna + Francis Dupont + Frank Volf + Fulvio Risso + George Bakos + Gerald Combs + Gerrit Renker + Gert Doering + Gilbert Ramirez Jr. + Gisle Vanem + Greg Minshall + Grégoire Henry + Gregory Detal + Greg Stark + Hank Leininger + Hannes Viertel + Harry Raaymakers + Heinz-Ado Arnolds + Hendrik Scholz + Herwin Weststrate + Ian McDonald + Ilpo Järvinen + Jacek Tobiasz + Jakob Schlyter + Jamal Hadi Salim + Jan Oravec + Jason R. Thorpe + Jefferson Ogata + Jeffrey Hutzelman + Jean-Raphaël Gaglione + Jesper Peterson + Jesse Gross + Jim Hutchins + João Medeiros + Joerg Mayer + Jonathan Heusser + Jorge Boncompte [DTI2] + Jørgen Thomsen + Julian Cowley + Juliusz Chroboczek + Kaarthik Sivakumar + Kaladhar Musunuru + Karl Norby + Kazushi Sugyo + Kelly Carmichael + Ken Hornstein + Kenichi Maehashi + Kevin Steves + Klaus Klein + Kris Kennaway + Krzysztof Halasa + Larry Lile + Lennert Buytenhek + Loganaden Velvindron + Longinus00 + Loris Degioanni + Love Hörnquist-Åstrand + Lucas C. Villa Real + Luis MartinGarcia + Maciej W. Rozycki + Manu Pathak + Marc Abramowitz + Marc A. Lehmann + Marc Binderberger + Mark Ellzey Thomas + Marko Kiiskila + Markus Schöpflin + Marshall Rose + Martin Husemann + Matthieu Boutier + Max Laier + Michael A. Meffie III + Michael Madore + Michael Riepe + Michael Shalayeff + Michael Shields + Michael T. Stolarchuk + Michal Sekletar + Michele "mydecay" Marchetto + Mike Frysinger + Minto Jeyananth + Monroe Williams + Motonori Shindo + Nathaniel Couper-Noles + Nathan J. Williams + Neil T. Spring + Nickolai Zeldovich + Nicolas Ferrero + Niels Provos + Noritoshi Demizu + Olaf Kirch + Ola Martin Lykkja + Oleksij Rempel + Onno van der Linden + Paolo Abeni + Pascal Hennequin + Pasvorn Boonmark + Paul Ferrell + Paul Mundt + Paul S. Traina + Pavlin Radoslavov + Pawel Worach + Pekka Savola + Petar Alilovic + Peter Fales + Peter Jeremy + Peter Volkov + + Phil Wood + Rafal Maszkowski + Randy Sofia + Raphael Raimbault + Rick Cheng + Rick Jones + Rick Watson + Rob Braun + Robert Edmonds + Roderick Schertler + Romain Francoise + Ruben Kerkhof + Sagun Shakya + Sami Farin + Scott Mcmillan + Scott Rose + Sebastian Krahmer + Sebastien Raveau + Sebastien Vincent + Sepherosa Ziehau + Seth Webster + Shinsuke Suzuki + Simon Ruderich + Steinar Haug + Stephane Bortzmeyer + Swaminathan Chandrasekaran + Swaathi Vetrivel + Takashi Yamamoto + Tatuya Jinmei + Terry Kennedy + Thomas Jacob + Timo Koskiahde + Tony Li + Toshihiro Kanda + Udayakumar + Uns Lider + Victor Oppleman + Vyacheslav Trushkin + Weesan Lee + Wesley Griffin + Wesley Shields + Wilbert de Graaf + Will Drewry + William J. Hulley + Wim Torfs + Yen Yen Lim + Yoshifumi Nishida + +The original LBL crew: + Steve McCanne + Craig Leres + Van Jacobson + +Past maintainers: + Jun-ichiro itojun Hagino Also see: http://www.wide.ad.jp/itojun-award/ diff --git a/src/INSTALL.txt b/src/INSTALL.txt new file mode 100644 index 0000000..39e12f8 --- /dev/null +++ b/src/INSTALL.txt @@ -0,0 +1,214 @@ +If you have not built libpcap, and your system does not have libpcap +installed, install libpcap first. Your system might provide a version +of libpcap that can be installed; if so, to compile tcpdump you might +need to install a "developer" version of libpcap as well as the +"run-time" version. You can also install tcpdump.org's version of +libpcap; see the README file in this directory for the ftp location. + +You will need an ANSI C compiler to build tcpdump. The configure script +will abort if your compiler is not ANSI compliant. If this happens, use +the generally available GNU C compiler (GCC). + +After libpcap has been built (either install it with "make install" or +make sure both the libpcap and tcpdump source trees are in the same +directory), run ./configure (a shell script). "configure" will +determine your system attributes and generate an appropriate Makefile +from Makefile.in. Now build tcpdump by running "make". + +If everything builds ok, su and type "make install". This will install +tcpdump and the manual entry. Any user will be able to use tcpdump to +read saved captures. Whether a user will be able to capture traffic +depends on the OS and the configuration of the system; see the tcpdump +man page for details. DO NOT give untrusted users the ability to +capture traffic. If a user can capture traffic, he or she could use +utilities such as tcpdump to capture any traffic on your net, including +passwords. + +Note that most systems ship tcpdump, but usually an older version. +Remember to remove or rename the installed binary when upgrading. + +If your system is not one which we have tested tcpdump on, you may have +to modify the configure script and Makefile.in. Please send us patches +for any modifications you need to make. + +Please see "PLATFORMS" for notes about tested platforms. + + +FILES +----- +CHANGES - description of differences between releases +CREDITS - people that have helped tcpdump along +INSTALL.txt - this file +LICENSE - the license under which tcpdump is distributed +Makefile.in - compilation rules (input to the configure script) +README - description of distribution +Readme.Win32 - notes on building tcpdump on Win32 systems (with WinPcap) +VERSION - version of this release +aclocal.m4 - autoconf macros +addrtoname.c - address to hostname routines +addrtoname.h - address to hostname definitions +ah.h - IPSEC Authentication Header definitions +appletalk.h - AppleTalk definitions +ascii_strcasecmp.c - locale-independent case-independent string comparison + routines +atime.awk - TCP ack awk script +atm.h - ATM traffic type definitions +bpf_dump.c - BPF program printing routines, in case libpcap doesn't + have them +chdlc.h - Cisco HDLC definitions +cpack.c - functions to extract packed data +cpack.h - declarations of functions to extract packed data +config.guess - autoconf support +config.h.in - autoconf input +config.sub - autoconf support +configure - configure script (run this first) +configure.in - configure script source +ether.h - Ethernet definitions +ethertype.h - Ethernet type value definitions +extract.h - alignment definitions +gmpls.c - GMPLS definitions +gmpls.h - GMPLS declarations +gmt2local.c - time conversion routines +gmt2local.h - time conversion prototypes +install-sh - BSD style install script +interface.h - globals, prototypes and definitions +ip.h - IP definitions +ip6.h - IPv6 definitions +ipproto.c - IP protocol type value-to-name table +ipproto.h - IP protocol type value definitions +l2vpn.c - L2VPN encapsulation value-to-name table +l2vpn.h - L2VPN encapsulation definitions +lbl/os-*.h - OS-dependent defines and prototypes +llc.h - LLC definitions +machdep.c - machine dependent routines +machdep.h - machine dependent definitions +makemib - mib to header script +mib.h - mib definitions +missing/* - replacements for missing library functions +mkdep - construct Makefile dependency list +mpls.h - MPLS definitions +nameser.h - DNS definitions +netdissect.h - definitions and declarations for tcpdump-as-library + (under development) +nfs.h - Network File System V2 definitions +nfsfh.h - Network File System file handle definitions +nlpid.c - OSI NLPID value-to-name table +nlpid.h - OSI NLPID definitions +ospf.h - Open Shortest Path First definitions +packetdat.awk - TCP chunk summary awk script +parsenfsfh.c - Network File System file parser routines +pcap_dump_ftell.c - pcap_dump_ftell() implementation, in case libpcap + doesn't have it +pcap-missing.h - declarations of functions possibly missing from libpcap +ppp.h - Point to Point Protocol definitions +print-802_11.c - IEEE 802.11 printer routines +print-ap1394.c - Apple IP-over-IEEE 1394 printer routines +print-ah.c - IPSEC Authentication Header printer routines +print-aodv.c - AODV printer routines +print-arcnet.c - ARCNET printer routines +print-arp.c - Address Resolution Protocol printer routines +print-ascii.c - ASCII packet dump routines +print-atalk.c - AppleTalk printer routines +print-atm.c - ATM printer routines +print-beep.c - BEEP printer routines +print-bgp.c - Border Gateway Protocol printer routines +print-bootp.c - BOOTP and IPv4 DHCP printer routines +print-bt.c - Bluetooth printer routines +print-cdp.c - Cisco Discovery Protocol printer routines +print-chdlc.c - Cisco HDLC printer routines +print-cip.c - Classical-IP over ATM routines +print-cnfp.c - Cisco NetFlow printer routines +print-dccp.c - DCCP printer routines +print-decnet.c - DECnet printer routines +print-dhcp6.c - IPv6 DHCP printer routines +print-domain.c - Domain Name System printer routines +print-dvmrp.c - Distance Vector Multicast Routing Protocol printer routines +print-eap.c - EAP printer routines +print-enc.c - OpenBSD IPsec encapsulation BPF layer printer routines +print-egp.c - External Gateway Protocol printer routines +print-esp.c - IPSEC Encapsulating Security Payload printer routines +print-ether.c - Ethernet printer routines +print-fddi.c - Fiber Distributed Data Interface printer routines +print-fr.c - Frame Relay printer routines +print-frag6.c - IPv6 fragmentation header printer routines +print-gre.c - Generic Routing Encapsulation printer routines +print-hsrp.c - Cisco Hot Standby Router Protocol printer routines +print-icmp.c - Internet Control Message Protocol printer routines +print-icmp6.c - IPv6 Internet Control Message Protocol printer routines +print-igmp.c - Internet Group Management Protocol printer routines +print-igrp.c - Interior Gateway Routing Protocol printer routines +print-ip.c - IP printer routines +print-ip6.c - IPv6 printer routines +print-ip6opts.c - IPv6 header option printer routines +print-ipcomp.c - IP Payload Compression Protocol printer routines +print-ipx.c - IPX printer routines +print-isakmp.c - Internet Security Association and Key Management Protocol +print-isoclns.c - ISO CLNS, ESIS, and ISIS printer routines +print-krb.c - Kerberos printer routines +print-l2tp.c - Layer Two Tunneling Protocol printer routines +print-lane.c - ATM LANE printer routines +print-llc.c - IEEE 802.2 LLC printer routines +print-lspping.c - LSPPING printer routines +print-lwres.c - Lightweight Resolver protocol printer routines +print-mobile.c - IPv4 mobility printer routines +print-mobility.c - IPv6 mobility printer routines +print-mpls.c - Multi-Protocol Label Switching printer routines +print-msdp.c - Multicast Source Discovery Protocol printer routines +print-nfs.c - Network File System printer routines +print-ntp.c - Network Time Protocol printer routines +print-null.c - BSD loopback device printer routines +print-ospf.c - Open Shortest Path First printer routines +print-ospf6.c - IPv6 Open Shortest Path First printer routines +print-pflog.c - OpenBSD packet filter log file printer routines +print-pgm.c - Pragmatic General Multicast printer routines +print-pim.c - Protocol Independent Multicast printer routines +print-ppp.c - Point to Point Protocol printer routines +print-pppoe.c - PPP-over-Ethernet printer routines +print-pptp.c - Point-to-Point Tunnelling Protocol printer routines +print-radius.c - Radius protocol printer routines +print-raw.c - Raw IP printer routines +print-rip.c - Routing Information Protocol printer routines +print-ripng.c - IPv6 Routing Information Protocol printer routines +print-rrcp.c - Realtek Remote Control Protocol routines +print-rsvp.c - Resource reSerVation Protocol (RSVP) printer routines +print-rt6.c - IPv6 routing header printer routines +print-rx.c - AFS RX printer routines +print-sctp.c - Stream Control Transmission Protocol printer routines +print-sip.c - SIP printer routines +print-sl.c - Compressed Serial Line Internet Protocol printer routines +print-sll.c - Linux "cooked" capture printer routines +print-slow.c - IEEE "slow protocol" (802.3ad) printer routines +print-smb.c - SMB/CIFS printer routines +print-snmp.c - Simple Network Management Protocol printer routines +print-stp.c - IEEE 802.1d spanning tree protocol printer routines +print-sunatm.c - SunATM DLPI capture printer routines +print-sunrpc.c - Sun Remote Procedure Call printer routines +print-symantec.c - Symantec Enterprise Firewall printer routines +print-tcp.c - TCP printer routines +print-telnet.c - Telnet option printer routines +print-tftp.c - Trivial File Transfer Protocol printer routines +print-timed.c - BSD time daemon protocol printer routines +print-token.c - Token Ring printer routines +print-udp.c - UDP printer routines +print-usb.c - USB printer routines +print-vjc.c - PPP Van Jacobson compression (RFC1144) printer routines +print-vrrp.c - Virtual Router Redundancy Protocol +print-wb.c - White Board printer routines +print-zephyr.c - Zephyr printer routines +rpc_auth.h - definitions for ONC RPC authentication +rpc_msg.h - definitions for ONC RPC messages +send-ack.awk - unidirectional tcp send/ack awk script +setsignal.c - OS-independent signal routines +setsignal.h - OS-independent signal prototypes +slcompress.h - SLIP/PPP Van Jacobson compression (RFC1144) definitions +smb.h - SMB/CIFS definitions +smbutil.c - SMB/CIFS utility routines +stime.awk - TCP send awk script +tcp.h - TCP definitions +tcpdump.1 - manual entry +tcpdump.c - main program +timeval-operations.h - timeval operations macros +udp.h - UDP definitions +util.c - utility routines +vfprintf.c - emulation routine +win32 - headers and routines for building on Win32 systems diff --git a/src/LICENSE b/src/LICENSE new file mode 100644 index 0000000..dea5f7d --- /dev/null +++ b/src/LICENSE @@ -0,0 +1,19 @@ +License: BSD + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + 3. The names of the authors may not be used to endorse or promote + products derived from this software without specific prior + written permission. + +THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR +IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. diff --git a/src/Makefile-devel-adds b/src/Makefile-devel-adds new file mode 100644 index 0000000..7bf6420 --- /dev/null +++ b/src/Makefile-devel-adds @@ -0,0 +1,22 @@ +# +# Auto-regenerate configure script or Makefile when things change. +# From autoconf.info . Works best with GNU Make. +# +${srcdir}/configure: configure.in aclocal.m4 + cd ${srcdir} && autoconf + +# autoheader might not change config.h.in, so touch a stamp file. +${srcdir}/config.h.in: ${srcdir}/stamp-h.in +${srcdir}/stamp-h.in: configure.in aclocal.m4 + cd ${srcdir} && autoheader + echo timestamp > ${srcdir}/stamp-h.in + +config.h: stamp-h +stamp-h: ${srcdir}/config.h.in config.status + ./config.status + +Makefile: Makefile.in config.status + ./config.status + +config.status: ${srcdir}/configure + ./config.status --recheck diff --git a/src/Makefile.in b/src/Makefile.in new file mode 100644 index 0000000..8f832b2 --- /dev/null +++ b/src/Makefile.in @@ -0,0 +1,454 @@ +# Copyright (c) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997 +# The Regents of the University of California. All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that: (1) source code distributions +# retain the above copyright notice and this paragraph in its entirety, (2) +# distributions including binary code include the above copyright notice and +# this paragraph in its entirety in the documentation or other materials +# provided with the distribution, and (3) all advertising materials mentioning +# features or use of this software display the following acknowledgement: +# ``This product includes software developed by the University of California, +# Lawrence Berkeley Laboratory and its contributors.'' Neither the name of +# the University nor the names of its contributors may be used to endorse +# or promote products derived from this software without specific prior +# written permission. +# THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + +# +# Various configurable paths (remember to edit Makefile.in, not Makefile) +# + +# Top level hierarchy +prefix = @prefix@ +exec_prefix = @exec_prefix@ +datarootdir = @datarootdir@ +# Pathname of directory to install the binary +sbindir = @sbindir@ +# Pathname of directory to install the man page +mandir = @mandir@ + +# VPATH +srcdir = @srcdir@ +VPATH = @srcdir@ + +# +# You shouldn't need to edit anything below here. +# + +CC = @CC@ +AR = @AR@ +MKDEP = @MKDEP@ +PROG = tcpdump +CCOPT = @V_CCOPT@ +INCLS = -I. @V_INCLS@ +DEFS = @DEFS@ @CPPFLAGS@ @V_DEFS@ + +# Standard CFLAGS +CFLAGS = @CFLAGS@ +FULL_CFLAGS = $(CCOPT) $(DEFS) $(INCLS) $(CFLAGS) + +# Standard LDFLAGS +LDFLAGS = @LDFLAGS@ + +# Standard LIBS +LIBS = @LIBS@ +LIBS += -lpthread + +INSTALL = @INSTALL@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_DATA = @INSTALL_DATA@ +RANLIB = @RANLIB@ + +DEPENDENCY_CFLAG = @DEPENDENCY_CFLAG@ + +# Explicitly define compilation rule since SunOS 4's make doesn't like gcc. +# Also, gcc does not remove the .o before forking 'as', which can be a +# problem if you don't own the file but can write to the directory. +.c.o: + @rm -f $@ + $(CC) $(FULL_CFLAGS) -c $(srcdir)/$*.c + +CSRC = setsignal.c tcpdump.c util.c net_common.c + +LIBNETDISSECT_SRC=\ + addrtoname.c \ + addrtostr.c \ + af.c \ + ascii_strcasecmp.c \ + checksum.c \ + cpack.c \ + gmpls.c \ + gmt2local.c \ + in_cksum.c \ + ipproto.c \ + l2vpn.c \ + machdep.c \ + nlpid.c \ + oui.c \ + parsenfsfh.c \ + print.c \ + print-802_11.c \ + print-802_15_4.c \ + print-ah.c \ + print-ahcp.c \ + print-aodv.c \ + print-aoe.c \ + print-ap1394.c \ + print-arcnet.c \ + print-arp.c \ + print-ascii.c \ + print-atalk.c \ + print-atm.c \ + print-babel.c \ + print-beep.c \ + print-bfd.c \ + print-bgp.c \ + print-bootp.c \ + print-bt.c \ + print-calm-fast.c \ + print-carp.c \ + print-cdp.c \ + print-cfm.c \ + print-chdlc.c \ + print-cip.c \ + print-cnfp.c \ + print-dccp.c \ + print-decnet.c \ + print-dhcp6.c \ + print-domain.c \ + print-dtp.c \ + print-dvmrp.c \ + print-eap.c \ + print-egp.c \ + print-eigrp.c \ + print-enc.c \ + print-esp.c \ + print-ether.c \ + print-fddi.c \ + print-forces.c \ + print-fr.c \ + print-frag6.c \ + print-ftp.c \ + print-geneve.c \ + print-geonet.c \ + print-gre.c \ + print-hncp.c \ + print-hsrp.c \ + print-http.c \ + print-icmp.c \ + print-icmp6.c \ + print-igmp.c \ + print-igrp.c \ + print-ip.c \ + print-ip6.c \ + print-ip6opts.c \ + print-ipcomp.c \ + print-ipfc.c \ + print-ipnet.c \ + print-ipx.c \ + print-isakmp.c \ + print-isoclns.c \ + print-juniper.c \ + print-krb.c \ + print-l2tp.c \ + print-lane.c \ + print-ldp.c \ + print-lisp.c \ + print-llc.c \ + print-lldp.c \ + print-lmp.c \ + print-loopback.c \ + print-lspping.c \ + print-lwapp.c \ + print-lwres.c \ + print-m3ua.c \ + print-medsa.c \ + print-mobile.c \ + print-mobility.c \ + print-mpcp.c \ + print-mpls.c \ + print-mptcp.c \ + print-msdp.c \ + print-msnlb.c \ + print-nflog.c \ + print-nfs.c \ + print-nsh.c \ + print-ntp.c \ + print-null.c \ + print-olsr.c \ + print-openflow-1.0.c \ + print-openflow.c \ + print-ospf.c \ + print-ospf6.c \ + print-otv.c \ + print-pgm.c \ + print-pim.c \ + print-pktap.c \ + print-ppi.c \ + print-ppp.c \ + print-pppoe.c \ + print-pptp.c \ + print-radius.c \ + print-raw.c \ + print-resp.c \ + print-rip.c \ + print-ripng.c \ + print-rpki-rtr.c \ + print-rrcp.c \ + print-rsvp.c \ + print-rt6.c \ + print-rtsp.c \ + print-rx.c \ + print-sctp.c \ + print-sflow.c \ + print-sip.c \ + print-sl.c \ + print-sll.c \ + print-slow.c \ + print-smtp.c \ + print-snmp.c \ + print-stp.c \ + print-sunatm.c \ + print-sunrpc.c \ + print-symantec.c \ + print-syslog.c \ + print-tcp.c \ + print-telnet.c \ + print-tftp.c \ + print-timed.c \ + print-tipc.c \ + print-token.c \ + print-udld.c \ + print-udp.c \ + print-usb.c \ + print-vjc.c \ + print-vqp.c \ + print-vrrp.c \ + print-vtp.c \ + print-vxlan.c \ + print-vxlan-gpe.c \ + print-wb.c \ + print-zephyr.c \ + print-zeromq.c \ + signature.c \ + strtoaddr.c \ + util-print.c + +LOCALSRC = @LOCALSRC@ +GENSRC = version.c +LIBOBJS = @LIBOBJS@ + +LIBNETDISSECT_OBJ=$(LIBNETDISSECT_SRC:.c=.o) ${LOCALSRC:.c=.o} ${LIBOBJS} +LIBNETDISSECT=libnetdissect.a + + +SRC = $(CSRC) $(GENSRC) $(LOCALSRC) $(LIBNETDISSECT_SRC) + +# We would like to say "OBJ = $(SRC:.c=.o)" but Ultrix's make cannot +# hack the extra indirection +OBJ = $(CSRC:.c=.o) $(GENSRC:.c=.o) $(LIBNETDISSECT_OBJ) +HDR = \ + addrtoname.h \ + addrtostr.h \ + af.h \ + ah.h \ + appletalk.h \ + ascii_strcasecmp.h \ + atm.h \ + chdlc.h \ + cpack.h \ + ether.h \ + ethertype.h \ + extract.h \ + getopt_long.h \ + gmpls.h \ + gmt2local.h \ + interface.h \ + ip.h \ + ip6.h \ + ipproto.h \ + l2vpn.h \ + llc.h \ + machdep.h \ + mib.h \ + mpls.h \ + nameser.h \ + netdissect.h \ + nfs.h \ + nfsfh.h \ + nlpid.h \ + openflow.h \ + ospf.h \ + oui.h \ + pcap-missing.h \ + ppp.h \ + print.h \ + rpc_auth.h \ + rpc_msg.h \ + rpl.h \ + setsignal.h \ + signature.h \ + slcompress.h \ + smb.h \ + strtoaddr.h \ + tcp.h \ + netdissect-stdinc.h \ + timeval-operations.h \ + udp.h + +TAGHDR = \ + /usr/include/arpa/tftp.h \ + /usr/include/net/if_arp.h \ + /usr/include/net/slip.h \ + /usr/include/netinet/if_ether.h \ + /usr/include/netinet/in.h \ + /usr/include/netinet/ip_icmp.h \ + /usr/include/netinet/tcp.h \ + /usr/include/netinet/udp.h \ + /usr/include/protocols/routed.h + +TAGFILES = $(SRC) $(HDR) $(TAGHDR) + +CLEANFILES = $(PROG) $(OBJ) $(GENSRC) + +EXTRA_DIST = \ + CHANGES \ + CREDITS \ + INSTALL.txt \ + LICENSE \ + Makefile.in \ + Makefile-devel-adds \ + README.md \ + Readme.Win32 \ + VERSION \ + aclocal.m4 \ + atime.awk \ + bpf_dump.c \ + config.guess \ + config.h.in \ + config.sub \ + configure \ + configure.in \ + install-sh \ + lbl/os-osf4.h \ + lbl/os-solaris2.h \ + lbl/os-sunos4.h \ + lbl/os-ultrix4.h \ + makemib \ + missing/dlnames.c \ + missing/datalinks.c \ + missing/getopt_long.c \ + missing/snprintf.c \ + missing/strdup.c \ + missing/strlcat.c \ + missing/strlcpy.c \ + missing/strsep.c \ + mkdep \ + packetdat.awk \ + pcap_dump_ftell.c \ + print-pflog.c \ + print-smb.c \ + send-ack.awk \ + smbutil.c \ + stime.awk \ + tcpdump.1.in \ + vfprintf.c \ + win32/prj/GNUmakefile \ + win32/prj/WinDump.dsp \ + win32/prj/WinDump.dsw + +TEST_DIST= `find tests \( -name 'DIFF' -prune \) -o \( -name NEW -prune \) -o -type f \! -name '.*' \! -name '*~' -print` + +all: $(PROG) $(LIBNETDISSECT) + +$(PROG): $(OBJ) @V_PCAPDEP@ + @rm -f $@ + $(CC) $(FULL_CFLAGS) $(LDFLAGS) -o $@ $(OBJ) $(LIBS) + +$(LIBNETDISSECT): $(LIBNETDISSECT_OBJ) + @rm -f $@ + $(AR) cr $@ $(LIBNETDISSECT_OBJ) + $(RANLIB) $@ + +datalinks.o: $(srcdir)/missing/datalinks.c + $(CC) $(FULL_CFLAGS) -o $@ -c $(srcdir)/missing/datalinks.c +dlnames.o: $(srcdir)/missing/dlnames.c + $(CC) $(FULL_CFLAGS) -o $@ -c $(srcdir)/missing/dlnames.c +getopt_long.o: $(srcdir)/missing/getopt_long.c + $(CC) $(FULL_CFLAGS) -o $@ -c $(srcdir)/missing/getopt_long.c +snprintf.o: $(srcdir)/missing/snprintf.c + $(CC) $(FULL_CFLAGS) -o $@ -c $(srcdir)/missing/snprintf.c +strdup.o: $(srcdir)/missing/strdup.c + $(CC) $(FULL_CFLAGS) -o $@ -c $(srcdir)/missing/strdup.c +strlcat.o: $(srcdir)/missing/strlcat.c + $(CC) $(FULL_CFLAGS) -o $@ -c $(srcdir)/missing/strlcat.c +strlcpy.o: $(srcdir)/missing/strlcpy.c + $(CC) $(FULL_CFLAGS) -o $@ -c $(srcdir)/missing/strlcpy.c +strsep.o: $(srcdir)/missing/strsep.c + $(CC) $(FULL_CFLAGS) -o $@ -c $(srcdir)/missing/strsep.c + +version.o: version.c + $(CC) $(FULL_CFLAGS) -c version.c + +version.c: $(srcdir)/VERSION + @rm -f $@ + if grep GIT ${srcdir}/VERSION >/dev/null; then \ + read ver <${srcdir}/VERSION; \ + echo $$ver | tr -d '\012'; \ + date +_%Y_%m_%d; \ + else \ + cat ${srcdir}/VERSION; \ + fi | sed -e 's/.*/const char version[] = "&";/' > $@ + +install: all + [ -d $(DESTDIR)$(sbindir) ] || \ + (mkdir -p $(DESTDIR)$(sbindir); chmod 755 $(DESTDIR)$(sbindir)) + $(INSTALL_PROGRAM) $(PROG) $(DESTDIR)$(sbindir)/$(PROG) + $(INSTALL_PROGRAM) $(PROG) $(DESTDIR)$(sbindir)/$(PROG).`cat ${srcdir}/VERSION` + [ -d $(DESTDIR)$(mandir)/man1 ] || \ + (mkdir -p $(DESTDIR)$(mandir)/man1; chmod 755 $(DESTDIR)$(mandir)/man1) + $(INSTALL_DATA) $(PROG).1 $(DESTDIR)$(mandir)/man1/$(PROG).1 + +uninstall: + rm -f $(DESTDIR)$(sbindir)/$(PROG) + rm -f $(DESTDIR)$(mandir)/man1/$(PROG).1 + +lint: $(GENSRC) + lint -hbxn $(SRC) | \ + grep -v 'struct/union .* never defined' | \ + grep -v 'possible pointer alignment problem' + +clean: + rm -f $(CLEANFILES) $(PROG)-`cat VERSION`.tar.gz + +distclean: + rm -f $(CLEANFILES) Makefile config.cache config.log config.status \ + config.h gnuc.h os-proto.h stamp-h stamp-h.in $(PROG).1 \ + libnetdissect.a tests/.failed tests/.passed \ + tests/failure-outputs.txt + rm -rf autom4te.cache tests/DIFF tests/NEW + +check: tcpdump + (cd tests && ./TESTrun.sh) + +tags: $(TAGFILES) + ctags -wtd $(TAGFILES) + +TAGS: $(TAGFILES) + etags $(TAGFILES) + +releasetar: + @cwd=`pwd` ; dir=`basename $$cwd` ; name=$(PROG)-`cat VERSION` ; \ + mkdir $$name; \ + tar cf - $(CSRC) $(HDR) $(LIBNETDISSECT_SRC) $(EXTRA_DIST) $(TEST_DIST) | (cd $$name; tar xf -); \ + tar -c -z -f $$name.tar.gz $$name; \ + rm -rf $$name + +testlist: + echo $(TEST_DIST) + +depend: $(GENSRC) + $(MKDEP) -c $(CC) -m $(DEPENDENCY_CFLAG) $(DEFS) $(INCLS) $(SRC) diff --git a/src/README.md b/src/README.md new file mode 100644 index 0000000..c83ffab --- /dev/null +++ b/src/README.md @@ -0,0 +1,243 @@ +# tcpdump + +[![Build +Status](https://travis-ci.org/the-tcpdump-group/tcpdump.png)](https://travis-ci.org/the-tcpdump-group/tcpdump) + +TCPDUMP 4.x.y +Now maintained by "The Tcpdump Group" +See www.tcpdump.org + +Please send inquiries/comments/reports to: + +* tcpdump-workers@lists.tcpdump.org + +Anonymous Git is available via: + + git clone git://bpf.tcpdump.org/tcpdump + +Please submit patches by forking the branch on GitHub at: + +* http://github.com/the-tcpdump-group/tcpdump/tree/master + +and issuing a pull request. + +formerly from Lawrence Berkeley National Laboratory + Network Research Group + ftp://ftp.ee.lbl.gov/old/tcpdump.tar.Z (3.4) + +This directory contains source code for tcpdump, a tool for network +monitoring and data acquisition. This software was originally +developed by the Network Research Group at the Lawrence Berkeley +National Laboratory. The original distribution is available via +anonymous ftp to `ftp.ee.lbl.gov`, in `tcpdump.tar.Z`. More recent +development is performed at tcpdump.org, http://www.tcpdump.org/ + +Tcpdump uses libpcap, a system-independent interface for user-level +packet capture. Before building tcpdump, you must first retrieve and +build libpcap, also originally from LBL and now being maintained by +tcpdump.org; see http://www.tcpdump.org/ . + +Once libpcap is built (either install it or make sure it's in +`../libpcap`), you can build tcpdump using the procedure in the `INSTALL.txt` +file. + +The program is loosely based on SMI's "etherfind" although none of the +etherfind code remains. It was originally written by Van Jacobson as +part of an ongoing research project to investigate and improve tcp and +internet gateway performance. The parts of the program originally +taken from Sun's etherfind were later re-written by Steven McCanne of +LBL. To insure that there would be no vestige of proprietary code in +tcpdump, Steve wrote these pieces from the specification given by the +manual entry, with no access to the source of tcpdump or etherfind. + +Over the past few years, tcpdump has been steadily improved by the +excellent contributions from the Internet community (just browse +through the `CHANGES` file). We are grateful for all the input. + +Richard Stevens gives an excellent treatment of the Internet protocols +in his book *"TCP/IP Illustrated, Volume 1"*. If you want to learn more +about tcpdump and how to interpret its output, pick up this book. + +Some tools for viewing and analyzing tcpdump trace files are available +from the Internet Traffic Archive: + +* http://www.sigcomm.org/ITA/ + +Another tool that tcpdump users might find useful is tcpslice: + +* https://github.com/the-tcpdump-group/tcpslice + +It is a program that can be used to extract portions of tcpdump binary +trace files. See the above distribution for further details and +documentation. + +Problems, bugs, questions, desirable enhancements, etc. should be sent +to the address "tcpdump-workers@lists.tcpdump.org". Bugs, support +requests, and feature requests may also be submitted on the GitHub issue +tracker for tcpdump at: + +* https://github.com/the-tcpdump-group/tcpdump/issues + +Source code contributions, etc. should be sent to the email address +above or submitted by forking the branch on GitHub at: + +* http://github.com/the-tcpdump-group/tcpdump/tree/master + +and issuing a pull request. + +Current versions can be found at www.tcpdump.org. + + - The TCPdump team + +original text by: Steve McCanne, Craig Leres, Van Jacobson + +------------------------------------- +``` +This directory also contains some short awk programs intended as +examples of ways to reduce tcpdump data when you're tracking +particular network problems: + +send-ack.awk + Simplifies the tcpdump trace for an ftp (or other unidirectional + tcp transfer). Since we assume that one host only sends and + the other only acks, all address information is left off and + we just note if the packet is a "send" or an "ack". + + There is one output line per line of the original trace. + Field 1 is the packet time in decimal seconds, relative + to the start of the conversation. Field 2 is delta-time + from last packet. Field 3 is packet type/direction. + "Send" means data going from sender to receiver, "ack" + means an ack going from the receiver to the sender. A + preceding "*" indicates that the data is a retransmission. + A preceding "-" indicates a hole in the sequence space + (i.e., missing packet(s)), a "#" means an odd-size (not max + seg size) packet. Field 4 has the packet flags + (same format as raw trace). Field 5 is the sequence + number (start seq. num for sender, next expected seq number + for acks). The number in parens following an ack is + the delta-time from the first send of the packet to the + ack. A number in parens following a send is the + delta-time from the first send of the packet to the + current send (on duplicate packets only). Duplicate + sends or acks have a number in square brackets showing + the number of duplicates so far. + + Here is a short sample from near the start of an ftp: + 3.00 0.20 send . 512 + 3.20 0.20 ack . 1024 (0.20) + 3.20 0.00 send P 1024 + 3.40 0.20 ack . 1536 (0.20) + 3.80 0.40 * send . 0 (3.80) [2] + 3.82 0.02 * ack . 1536 (0.62) [2] + Three seconds into the conversation, bytes 512 through 1023 + were sent. 200ms later they were acked. Shortly thereafter + bytes 1024-1535 were sent and again acked after 200ms. + Then, for no apparent reason, 0-511 is retransmitted, 3.8 + seconds after its initial send (the round trip time for this + ftp was 1sec, +-500ms). Since the receiver is expecting + 1536, 1536 is re-acked when 0 arrives. + +packetdat.awk + Computes chunk summary data for an ftp (or similar + unidirectional tcp transfer). [A "chunk" refers to + a chunk of the sequence space -- essentially the packet + sequence number divided by the max segment size.] + + A summary line is printed showing the number of chunks, + the number of packets it took to send that many chunks + (if there are no lost or duplicated packets, the number + of packets should equal the number of chunks) and the + number of acks. + + Following the summary line is one line of information + per chunk. The line contains eight fields: + 1 - the chunk number + 2 - the start sequence number for this chunk + 3 - time of first send + 4 - time of last send + 5 - time of first ack + 6 - time of last ack + 7 - number of times chunk was sent + 8 - number of times chunk was acked + (all times are in decimal seconds, relative to the start + of the conversation.) + + As an example, here is the first part of the output for + an ftp trace: + + # 134 chunks. 536 packets sent. 508 acks. + 1 1 0.00 5.80 0.20 0.20 4 1 + 2 513 0.28 6.20 0.40 0.40 4 1 + 3 1025 1.16 6.32 1.20 1.20 4 1 + 4 1561 1.86 15.00 2.00 2.00 6 1 + 5 2049 2.16 15.44 2.20 2.20 5 1 + 6 2585 2.64 16.44 2.80 2.80 5 1 + 7 3073 3.00 16.66 3.20 3.20 4 1 + 8 3609 3.20 17.24 3.40 5.82 4 11 + 9 4097 6.02 6.58 6.20 6.80 2 5 + + This says that 134 chunks were transferred (about 70K + since the average packet size was 512 bytes). It took + 536 packets to transfer the data (i.e., on the average + each chunk was transmitted four times). Looking at, + say, chunk 4, we see it represents the 512 bytes of + sequence space from 1561 to 2048. It was first sent + 1.86 seconds into the conversation. It was last + sent 15 seconds into the conversation and was sent + a total of 6 times (i.e., it was retransmitted every + 2 seconds on the average). It was acked once, 140ms + after it first arrived. + +stime.awk +atime.awk + Output one line per send or ack, respectively, in the form +

See the Network Abuse +Clearinghouse for how to do this.

+ +

If you are the administrator of this machine

+ +

The initial installation of Debian's +apache web server package was successful.

+ +

You should replace this page with your own web pages as +soon as possible.

+ +

Unless you changed its configuration, your new server is configured as follows: +

    +
  • +Configuration files can be found in /etc/apache.
  • + +
  • +The DocumentRoot, which is the directory under which all your +HTML files should exist, is set to /var/www.
  • + +
  • +CGI scripts are looked for in /usr/lib/cgi-bin, which is where +Debian packages will place their scripts.
  • + +
  • +Log files are placed in /var/log/apache, and will be rotated +weekly. The frequency of rotation can be easily changed by editing +/etc/logrotate.d/apache.
  • + +
  • +The default directory index is index.html, meaning that requests +for a directory /foo/bar/ will give the contents of the file /var/www/foo/bar/index.html +if it exists (assuming that /var/www is your DocumentRoot).
  • + +
  • +User directories are enabled, and user documents will be looked for +in the public_html directory of the users' homes. These dirs +should be under /home, and users will not be able to symlink +to files they don't own.
  • + +
+All the standard apache modules are available with this release and are +now managed with debconf. Type dpkg-reconfigure apache to +select which modules you want enabled. Many other modules are available +through the Debian package system with the names libapache-mod-*. +If you need to compile a module yourself, you will need to install the +apache-dev package. + +

More documentation on Apache can be found on: +

+ +

You can also consult the list of World +Wide Web Frequently Asked Questions for information. + +

Let other people know about this server

+ +Netcraft provides an interesting free +service for web site monitoring and statistic collection. +You can let them know about your server using their +interface. +Enabling the monitoring of your server will provide a better global overview +of who is using what and where, and it would give Debian a better +overview of the apache package usage. + +

About this page

+ + + +

This is a placeholder page installed by the Debian +release of the apache Web server package. + +

This computer has installed the Debian GNU/Linux operating system, +but it has nothing to do with the Debian +Project. Please do not contact the Debian +Project about it.

+ +

If you find a bug in this apache package, or in Apache itself, +please file a bug report on it. Instructions on doing this, and the +list of known bugs of this +package, can be found in the +Debian Bug Tracking System. + +

Thanks for using this package, and congratulations for your choice of +a Debian system!

+ +
+ +Debian + + +Apache + +
+ + + + + + +IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [.], ack 5560, win 12383, options [nop,nop,TS val 1306300953 ecr 1306300953], length 0 +E..4.n@.@.!T.........p.P7X.I7z....0_....... +M...M... +IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [F.], seq 203, ack 5560, win 12383, options [nop,nop,TS val 1306302241 ecr 1306300953], length 0 +E..4.p@.@.!R.........p.P7X.I7z....0_....... +M..!M... +IP 127.0.0.1.80 > 127.0.0.1.55920: Flags [F.], seq 5560, ack 204, win 8192, options [nop,nop,TS val 1306302243 ecr 1306302241], length 0 +E..4..@.@............P.p7z..7X.J.. ..5..... +M..#M..! +IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [.], ack 5561, win 12383, options [nop,nop,TS val 1306302243 ecr 1306302243], length 0 +E..4.r@.@.!P.........p.P7X.J7z....0_....... +M..#M..# diff --git a/src/tests/print-AA.out b/src/tests/print-AA.out new file mode 100644 index 0000000..d2ea084 --- /dev/null +++ b/src/tests/print-AA.out @@ -0,0 +1,193 @@ +IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [S], seq 928549246, win 32767, options [mss 16396,sackOK,TS val 1306300950 ecr 0,nop,wscale 2], length 0 +..............E..<.h@.@.!R.........p.P7X.~.........!....@.... +M........... +IP 127.0.0.1.80 > 127.0.0.1.55920: Flags [S.], seq 930778609, ack 928549247, win 32767, options [mss 16396,sackOK,TS val 1306300950 ecr 1306300950,nop,wscale 2], length 0 +..............E..<..@.@.<..........P.p7z..7X......n.....@.... +M...M....... +IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [.], ack 1, win 8192, options [nop,nop,TS val 1306300950 ecr 1306300950], length 0 +..............E..4.j@.@.!X.........p.P7X..7z.... .7...... +M...M... +IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [P.], seq 1:203, ack 1, win 8192, options [nop,nop,TS val 1306300951 ecr 1306300950], length 202: HTTP: GET / HTTP/1.1 +..............E....l@.@. ..........p.P7X..7z.... ........ +M...M...GET / HTTP/1.1 +Host: localhost +User-Agent: ELinks/0.10.4-7-debian (textmode; Linux 2.6.11-1-686-smp i686; 132x56-2) +Accept: */* +Accept-Encoding: gzip +Accept-Language: en +Connection: Keep-Alive + + +IP 127.0.0.1.80 > 127.0.0.1.55920: Flags [.], ack 203, win 8192, options [nop,nop,TS val 1306300952 ecr 1306300951], length 0 +..............E..4..@.@............P.p7z..7X.I.. .7...... +M...M... +IP 127.0.0.1.80 > 127.0.0.1.55920: Flags [P.], seq 1:5560, ack 203, win 8192, options [nop,nop,TS val 1306300953 ecr 1306300951], length 5559: HTTP: HTTP/1.1 200 OK +..............E.....@.@..%.........P.p7z..7X.I.. ........ +M...M...HTTP/1.1 200 OK +Date: Wed, 06 Jul 2005 03:57:35 GMT +Server: Apache/1.3.33 +Last-Modified: Sun, 15 Aug 2004 00:43:41 GMT +ETag: "6e80f0-148a-411eb1bd" +Accept-Ranges: bytes +Content-Length: 5258 +Keep-Alive: timeout=15, max=100 +Connection: Keep-Alive +Content-Type: text/html; charset=iso-8859-1 + + + + + + + Placeholder page + + + +

Placeholder page

+

If you are just browsing the web

+ +

The owner of this web site has not put up any web pages yet. +Please come back later.

+ +

Move along, nothing to see here... :-)

+ +

If you are trying to locate the administrator of this machine

+ +

If you want to report something about this host's behavior, please +contact the Internet Service Provider (ISP) involved directly.

+ +

See the Network Abuse +Clearinghouse for how to do this.

+ +

If you are the administrator of this machine

+ +

The initial installation of Debian's +apache web server package was successful.

+ +

You should replace this page with your own web pages as +soon as possible.

+ +

Unless you changed its configuration, your new server is configured as follows: +

    +
  • +Configuration files can be found in /etc/apache.
  • + +
  • +The DocumentRoot, which is the directory under which all your +HTML files should exist, is set to /var/www.
  • + +
  • +CGI scripts are looked for in /usr/lib/cgi-bin, which is where +Debian packages will place their scripts.
  • + +
  • +Log files are placed in /var/log/apache, and will be rotated +weekly. The frequency of rotation can be easily changed by editing +/etc/logrotate.d/apache.
  • + +
  • +The default directory index is index.html, meaning that requests +for a directory /foo/bar/ will give the contents of the file /var/www/foo/bar/index.html +if it exists (assuming that /var/www is your DocumentRoot).
  • + +
  • +User directories are enabled, and user documents will be looked for +in the public_html directory of the users' homes. These dirs +should be under /home, and users will not be able to symlink +to files they don't own.
  • + +
+All the standard apache modules are available with this release and are +now managed with debconf. Type dpkg-reconfigure apache to +select which modules you want enabled. Many other modules are available +through the Debian package system with the names libapache-mod-*. +If you need to compile a module yourself, you will need to install the +apache-dev package. + +

More documentation on Apache can be found on: +

+ +

You can also consult the list of World +Wide Web Frequently Asked Questions for information. + +

Let other people know about this server

+ +Netcraft provides an interesting free +service for web site monitoring and statistic collection. +You can let them know about your server using their +interface. +Enabling the monitoring of your server will provide a better global overview +of who is using what and where, and it would give Debian a better +overview of the apache package usage. + +

About this page

+ + + +

This is a placeholder page installed by the Debian +release of the apache Web server package. + +

This computer has installed the Debian GNU/Linux operating system, +but it has nothing to do with the Debian +Project. Please do not contact the Debian +Project about it.

+ +

If you find a bug in this apache package, or in Apache itself, +please file a bug report on it. Instructions on doing this, and the +list of known bugs of this +package, can be found in the +Debian Bug Tracking System. + +

Thanks for using this package, and congratulations for your choice of +a Debian system!

+ +
+ +Debian + + +Apache + +
+ + + + + + +IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [.], ack 5560, win 12383, options [nop,nop,TS val 1306300953 ecr 1306300953], length 0 +..............E..4.n@.@.!T.........p.P7X.I7z....0_....... +M...M... +IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [F.], seq 203, ack 5560, win 12383, options [nop,nop,TS val 1306302241 ecr 1306300953], length 0 +..............E..4.p@.@.!R.........p.P7X.I7z....0_....... +M..!M... +IP 127.0.0.1.80 > 127.0.0.1.55920: Flags [F.], seq 5560, ack 204, win 8192, options [nop,nop,TS val 1306302243 ecr 1306302241], length 0 +..............E..4..@.@............P.p7z..7X.J.. ..5..... +M..#M..! +IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [.], ack 5561, win 12383, options [nop,nop,TS val 1306302243 ecr 1306302243], length 0 +..............E..4.r@.@.!P.........p.P7X.J7z....0_....... +M..#M..# diff --git a/src/tests/print-capX.out b/src/tests/print-capX.out new file mode 100644 index 0000000..8a27a96 --- /dev/null +++ b/src/tests/print-capX.out @@ -0,0 +1,409 @@ +IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [S], seq 928549246, win 32767, options [mss 16396,sackOK,TS val 1306300950 ecr 0,nop,wscale 2], length 0 + 0x0000: 4500 003c 1b68 4000 4006 2152 7f00 0001 E..<.h@.@.!R.... + 0x0010: 7f00 0001 da70 0050 3758 897e 0000 0000 .....p.P7X.~.... + 0x0020: a002 7fff 1421 0000 0204 400c 0402 080a .....!....@..... + 0x0030: 4ddc 9216 0000 0000 0103 0302 M........... +IP 127.0.0.1.80 > 127.0.0.1.55920: Flags [S.], seq 930778609, ack 928549247, win 32767, options [mss 16396,sackOK,TS val 1306300950 ecr 1306300950,nop,wscale 2], length 0 + 0x0000: 4500 003c 0000 4000 4006 3cba 7f00 0001 E..<..@.@.<..... + 0x0010: 7f00 0001 0050 da70 377a 8df1 3758 897f .....P.p7z..7X.. + 0x0020: a012 7fff 6eb1 0000 0204 400c 0402 080a ....n.....@..... + 0x0030: 4ddc 9216 4ddc 9216 0103 0302 M...M....... +IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [.], ack 1, win 8192, options [nop,nop,TS val 1306300950 ecr 1306300950], length 0 + 0x0000: 4500 0034 1b6a 4000 4006 2158 7f00 0001 E..4.j@.@.!X.... + 0x0010: 7f00 0001 da70 0050 3758 897f 377a 8df2 .....p.P7X..7z.. + 0x0020: 8010 2000 37d0 0000 0101 080a 4ddc 9216 ....7.......M... + 0x0030: 4ddc 9216 M... +IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [P.], seq 1:203, ack 1, win 8192, options [nop,nop,TS val 1306300951 ecr 1306300950], length 202: HTTP: GET / HTTP/1.1 + 0x0000: 4500 00fe 1b6c 4000 4006 208c 7f00 0001 E....l@.@....... + 0x0010: 7f00 0001 da70 0050 3758 897f 377a 8df2 .....p.P7X..7z.. + 0x0020: 8018 2000 fef2 0000 0101 080a 4ddc 9217 ............M... + 0x0030: 4ddc 9216 4745 5420 2f20 4854 5450 2f31 M...GET./.HTTP/1 + 0x0040: 2e31 0d0a 486f 7374 3a20 6c6f 6361 6c68 .1..Host:.localh + 0x0050: 6f73 740d 0a55 7365 722d 4167 656e 743a ost..User-Agent: + 0x0060: 2045 4c69 6e6b 732f 302e 3130 2e34 2d37 .ELinks/0.10.4-7 + 0x0070: 2d64 6562 6961 6e20 2874 6578 746d 6f64 -debian.(textmod + 0x0080: 653b 204c 696e 7578 2032 2e36 2e31 312d e;.Linux.2.6.11- + 0x0090: 312d 3638 362d 736d 7020 6936 3836 3b20 1-686-smp.i686;. + 0x00a0: 3133 3278 3536 2d32 290d 0a41 6363 6570 132x56-2)..Accep + 0x00b0: 743a 202a 2f2a 0d0a 4163 6365 7074 2d45 t:.*/*..Accept-E + 0x00c0: 6e63 6f64 696e 673a 2067 7a69 700d 0a41 ncoding:.gzip..A + 0x00d0: 6363 6570 742d 4c61 6e67 7561 6765 3a20 ccept-Language:. + 0x00e0: 656e 0d0a 436f 6e6e 6563 7469 6f6e 3a20 en..Connection:. + 0x00f0: 4b65 6570 2d41 6c69 7665 0d0a 0d0a Keep-Alive.... +IP 127.0.0.1.80 > 127.0.0.1.55920: Flags [.], ack 203, win 8192, options [nop,nop,TS val 1306300952 ecr 1306300951], length 0 + 0x0000: 4500 0034 1fe4 4000 4006 1cde 7f00 0001 E..4..@.@....... + 0x0010: 7f00 0001 0050 da70 377a 8df2 3758 8a49 .....P.p7z..7X.I + 0x0020: 8010 2000 3703 0000 0101 080a 4ddc 9218 ....7.......M... + 0x0030: 4ddc 9217 M... +IP 127.0.0.1.80 > 127.0.0.1.55920: Flags [P.], seq 1:5560, ack 203, win 8192, options [nop,nop,TS val 1306300953 ecr 1306300951], length 5559: HTTP: HTTP/1.1 200 OK + 0x0000: 4500 15eb 1fe6 4000 4006 0725 7f00 0001 E.....@.@..%.... + 0x0010: 7f00 0001 0050 da70 377a 8df2 3758 8a49 .....P.p7z..7X.I + 0x0020: 8018 2000 13e0 0000 0101 080a 4ddc 9219 ............M... + 0x0030: 4ddc 9217 4854 5450 2f31 2e31 2032 3030 M...HTTP/1.1.200 + 0x0040: 204f 4b0d 0a44 6174 653a 2057 6564 2c20 .OK..Date:.Wed,. + 0x0050: 3036 204a 756c 2032 3030 3520 3033 3a35 06.Jul.2005.03:5 + 0x0060: 373a 3335 2047 4d54 0d0a 5365 7276 6572 7:35.GMT..Server + 0x0070: 3a20 4170 6163 6865 2f31 2e33 2e33 330d :.Apache/1.3.33. + 0x0080: 0a4c 6173 742d 4d6f 6469 6669 6564 3a20 .Last-Modified:. + 0x0090: 5375 6e2c 2031 3520 4175 6720 3230 3034 Sun,.15.Aug.2004 + 0x00a0: 2030 303a 3433 3a34 3120 474d 540d 0a45 .00:43:41.GMT..E + 0x00b0: 5461 673a 2022 3665 3830 6630 2d31 3438 Tag:."6e80f0-148 + 0x00c0: 612d 3431 3165 6231 6264 220d 0a41 6363 a-411eb1bd"..Acc + 0x00d0: 6570 742d 5261 6e67 6573 3a20 6279 7465 ept-Ranges:.byte + 0x00e0: 730d 0a43 6f6e 7465 6e74 2d4c 656e 6774 s..Content-Lengt + 0x00f0: 683a 2035 3235 380d 0a4b 6565 702d 416c h:.5258..Keep-Al + 0x0100: 6976 653a 2074 696d 656f 7574 3d31 352c ive:.timeout=15, + 0x0110: 206d 6178 3d31 3030 0d0a 436f 6e6e 6563 .max=100..Connec + 0x0120: 7469 6f6e 3a20 4b65 6570 2d41 6c69 7665 tion:.Keep-Alive + 0x0130: 0d0a 436f 6e74 656e 742d 5479 7065 3a20 ..Content-Type:. + 0x0140: 7465 7874 2f68 746d 6c3b 2063 6861 7273 text/html;.chars + 0x0150: 6574 3d69 736f 2d38 3835 392d 310d 0a0d et=iso-8859-1... + 0x0160: 0a3c 2144 4f43 5459 5045 2048 544d 4c20 . + 0x01a0: 0a3c 4854 4d4c 3e0a 3c48 4541 443e 0a20 .... + 0x01b0: 2020 3c4d 4554 4120 4854 5450 2d45 5155 .......... + 0x0250: 3c54 4954 4c45 3e50 6c61 6365 686f 6c64 Placehold + 0x0260: 6572 2070 6167 653c 2f54 4954 4c45 3e0a er.page. + 0x0270: 3c2f 4845 4144 3e0a 3c42 4f44 5920 5445 ... + 0x02d0: 3c48 313e 506c 6163 6568 6f6c 6465 7220

Placeholder. + 0x02e0: 7061 6765 3c2f 4831 3e0a 3c48 323e 4966 page

.

If + 0x02f0: 2079 6f75 2061 7265 206a 7573 7420 6272 .you.are.just.br + 0x0300: 6f77 7369 6e67 2074 6865 2077 6562 3c2f owsing.the.web..

The.owne + 0x0320: 7220 6f66 2074 6869 7320 7765 6220 7369 r.of.this.web.si + 0x0330: 7465 2068 6173 206e 6f74 2070 7574 2075 te.has.not.put.u + 0x0340: 7020 616e 7920 7765 6220 7061 6765 7320 p.any.web.pages. + 0x0350: 7965 742e 0a50 6c65 6173 6520 636f 6d65 yet..Please.come + 0x0360: 2062 6163 6b20 6c61 7465 722e 3c2f 503e .back.later.

+ 0x0370: 0a0a 3c50 3e3c 534d 414c 4c3e 3c43 4954 ..

Move.along,.no + 0x0390: 7468 696e 6720 746f 2073 6565 2068 6572 thing.to.see.her + 0x03a0: 652e 2e2e 3c2f 4349 5445 3e20 3a2d 293c e....:-)< + 0x03b0: 2f53 4d41 4c4c 3e3c 2f50 3e0a 0a3c 4832 /SMALL>

..

If.you.are.tryi + 0x03d0: 6e67 2074 6f20 6c6f 6361 7465 2074 6865 ng.to.locate.the + 0x03e0: 2061 646d 696e 6973 7472 6174 6f72 206f .administrator.o + 0x03f0: 6620 7468 6973 206d 6163 6869 6e65 3c2f f.this.machine..

If.you.w + 0x0410: 616e 7420 746f 2072 6570 6f72 7420 736f ant.to.report.so + 0x0420: 6d65 7468 696e 6720 6162 6f75 7420 7468 mething.about.th + 0x0430: 6973 2068 6f73 7427 7320 6265 6861 7669 is.host's.behavi + 0x0440: 6f72 2c20 706c 6561 7365 0a63 6f6e 7461 or,.please.conta + 0x0450: 6374 2074 6865 2049 6e74 6572 6e65 7420 ct.the.Internet. + 0x0460: 5365 7276 6963 6520 5072 6f76 6964 6572 Service.Provider + 0x0470: 2028 4953 5029 2069 6e76 6f6c 7665 6420 .(ISP).involved. + 0x0480: 6469 7265 6374 6c79 2e3c 2f50 3e0a 0a3c directly.

..< + 0x0490: 503e 5365 6520 7468 6520 3c41 2068 7265 P>See.the.Networ + 0x04c0: 6b20 4162 7573 650a 436c 6561 7269 6e67 k.Abuse.Clearing + 0x04d0: 686f 7573 653c 2f41 3e20 666f 7220 686f house.for.ho + 0x04e0: 7720 746f 2064 6f20 7468 6973 2e3c 2f50 w.to.do.this.

..

If.you.ar + 0x0500: 6520 7468 6520 6164 6d69 6e69 7374 7261 e.the.administra + 0x0510: 746f 7220 6f66 2074 6869 7320 6d61 6368 tor.of.this.mach + 0x0520: 696e 653c 2f48 323e 0a0a 3c50 3e54 6865 ine

..

The + 0x0530: 2069 6e69 7469 616c 2069 6e73 7461 6c6c .initial.install + 0x0540: 6174 696f 6e20 6f66 203c 4120 6872 6566 ation.of.Debian + 0x0570: 2773 0a61 7061 6368 653c 2f41 3e20 7765 's.apache.we + 0x0580: 6220 7365 7276 6572 2070 6163 6b61 6765 b.server.package + 0x0590: 2077 6173 2073 7563 6365 7373 6675 6c2e .was.successful. + 0x05a0: 3c2f 503e 0a0a 3c50 3e3c 5354 524f 4e47

..

You.should.repl + 0x05c0: 6163 6520 7468 6973 2070 6167 6520 7769 ace.this.page.wi + 0x05d0: 7468 2079 6f75 7220 6f77 6e20 7765 6220 th.your.own.web. + 0x05e0: 7061 6765 7320 6173 0a73 6f6f 6e20 6173 pages.as.soon.as + 0x05f0: 2070 6f73 7369 626c 652e 3c2f 5354 524f .possible.

..

Unle + 0x0610: 7373 2079 6f75 2063 6861 6e67 6564 2069 ss.you.changed.i + 0x0620: 7473 2063 6f6e 6669 6775 7261 7469 6f6e ts.configuration + 0x0630: 2c20 796f 7572 206e 6577 2073 6572 7665 ,.your.new.serve + 0x0640: 7220 6973 2063 6f6e 6669 6775 7265 6420 r.is.configured. + 0x0650: 6173 2066 6f6c 6c6f 7773 3a0a 3c55 4c3e as.follows:.

    + 0x0660: 0a3c 4c49 3e0a 436f 6e66 6967 7572 6174 .
  • .Configurat + 0x0670: 696f 6e20 6669 6c65 7320 6361 6e20 6265 ion.files.can.be + 0x0680: 2066 6f75 6e64 2069 6e20 3c54 543e 2f65 .found.in./e + 0x0690: 7463 2f61 7061 6368 653c 2f54 543e 2e3c tc/apache.< + 0x06a0: 2f4c 493e 0a0a 3c4c 493e 0a54 6865 203c /LI>..
  • .The.< + 0x06b0: 5454 3e44 6f63 756d 656e 7452 6f6f 743c TT>DocumentRoot< + 0x06c0: 2f54 543e 2c20 7768 6963 6820 6973 2074 /TT>,.which.is.t + 0x06d0: 6865 2064 6972 6563 746f 7279 2075 6e64 he.directory.und + 0x06e0: 6572 2077 6869 6368 2061 6c6c 2079 6f75 er.which.all.you + 0x06f0: 720a 4854 4d4c 2066 696c 6573 2073 686f r.HTML.files.sho + 0x0700: 756c 6420 6578 6973 742c 2069 7320 7365 uld.exist,.is.se + 0x0710: 7420 746f 203c 5454 3e2f 7661 722f 7777 t.to./var/ww + 0x0720: 773c 2f54 543e 2e3c 2f4c 493e 0a0a 3c4c w.
  • ...CGI.scripts.a + 0x0740: 7265 206c 6f6f 6b65 6420 666f 7220 696e re.looked.for.in + 0x0750: 203c 5454 3e2f 7573 722f 6c69 622f 6367 ./usr/lib/cg + 0x0760: 692d 6269 6e3c 2f54 543e 2c20 7768 6963 i-bin,.whic + 0x0770: 6820 6973 2077 6865 7265 0a44 6562 6961 h.is.where.Debia + 0x0780: 6e20 7061 636b 6167 6573 2077 696c 6c20 n.packages.will. + 0x0790: 706c 6163 6520 7468 6569 7220 7363 7269 place.their.scri + 0x07a0: 7074 732e 3c2f 4c49 3e0a 0a3c 4c49 3e0a pts...
  • . + 0x07b0: 4c6f 6720 6669 6c65 7320 6172 6520 706c Log.files.are.pl + 0x07c0: 6163 6564 2069 6e20 3c54 543e 2f76 6172 aced.in./var + 0x07d0: 2f6c 6f67 2f61 7061 6368 653c 2f54 543e /log/apache + 0x07e0: 2c20 616e 6420 7769 6c6c 2062 6520 726f ,.and.will.be.ro + 0x07f0: 7461 7465 640a 7765 656b 6c79 2e20 2054 tated.weekly...T + 0x0800: 6865 2066 7265 7175 656e 6379 206f 6620 he.frequency.of. + 0x0810: 726f 7461 7469 6f6e 2063 616e 2062 6520 rotation.can.be. + 0x0820: 6561 7369 6c79 2063 6861 6e67 6564 2062 easily.changed.b + 0x0830: 7920 6564 6974 696e 670a 3c54 543e 2f65 y.editing./e + 0x0840: 7463 2f6c 6f67 726f 7461 7465 2e64 2f61 tc/logrotate.d/a + 0x0850: 7061 6368 653c 2f54 543e 2e3c 2f4c 493e pache.
  • + 0x0860: 0a0a 3c4c 493e 0a54 6865 2064 6566 6175 ..
  • .The.defau + 0x0870: 6c74 2064 6972 6563 746f 7279 2069 6e64 lt.directory.ind + 0x0880: 6578 2069 7320 3c54 543e 696e 6465 782e ex.is.index. + 0x0890: 6874 6d6c 3c2f 5454 3e2c 206d 6561 6e69 html,.meani + 0x08a0: 6e67 2074 6861 7420 7265 7175 6573 7473 ng.that.requests + 0x08b0: 0a66 6f72 2061 2064 6972 6563 746f 7279 .for.a.directory + 0x08c0: 203c 5454 3e2f 666f 6f2f 6261 722f 3c2f ./foo/bar/.will.give.th + 0x08e0: 6520 636f 6e74 656e 7473 206f 6620 7468 e.contents.of.th + 0x08f0: 6520 6669 6c65 203c 5454 3e2f 7661 722f e.file./var/ + 0x0900: 7777 772f 666f 6f2f 6261 722f 696e 6465 www/foo/bar/inde + 0x0910: 782e 6874 6d6c 3c2f 5454 3e0a 6966 2069 x.html.if.i + 0x0920: 7420 6578 6973 7473 2028 6173 7375 6d69 t.exists.(assumi + 0x0930: 6e67 2074 6861 7420 3c54 543e 2f76 6172 ng.that./var + 0x0940: 2f77 7777 3c2f 5454 3e20 6973 2079 6f75 /www.is.you + 0x0950: 7220 3c54 543e 446f 6375 6d65 6e74 526f r.DocumentRo + 0x0960: 6f74 3c2f 5454 3e29 2e3c 2f4c 493e 0a0a ot).
  • .. + 0x0970: 3c4c 493e 0a55 7365 7220 6469 7265 6374
  • .User.direct + 0x0980: 6f72 6965 7320 6172 6520 656e 6162 6c65 ories.are.enable + 0x0990: 642c 2061 6e64 2075 7365 7220 646f 6375 d,.and.user.docu + 0x09a0: 6d65 6e74 7320 7769 6c6c 2062 6520 6c6f ments.will.be.lo + 0x09b0: 6f6b 6564 2066 6f72 0a69 6e20 7468 6520 oked.for.in.the. + 0x09c0: 3c54 543e 7075 626c 6963 5f68 746d 6c3c public_html< + 0x09d0: 2f54 543e 2064 6972 6563 746f 7279 206f /TT>.directory.o + 0x09e0: 6620 7468 6520 7573 6572 7327 2068 6f6d f.the.users'.hom + 0x09f0: 6573 2e20 2054 6865 7365 2064 6972 730a es...These.dirs. + 0x0a00: 7368 6f75 6c64 2062 6520 756e 6465 7220 should.be.under. + 0x0a10: 3c54 543e 2f68 6f6d 653c 2f54 543e 2c20 /home,. + 0x0a20: 616e 6420 7573 6572 7320 7769 6c6c 206e and.users.will.n + 0x0a30: 6f74 2062 6520 6162 6c65 2074 6f20 7379 ot.be.able.to.sy + 0x0a40: 6d6c 696e 6b0a 746f 2066 696c 6573 2074 mlink.to.files.t + 0x0a50: 6865 7920 646f 6e27 7420 6f77 6e2e 3c2f hey.don't.own...
.All.t + 0x0a70: 6865 2073 7461 6e64 6172 6420 6170 6163 he.standard.apac + 0x0a80: 6865 206d 6f64 756c 6573 2061 7265 2061 he.modules.are.a + 0x0a90: 7661 696c 6162 6c65 2077 6974 6820 7468 vailable.with.th + 0x0aa0: 6973 2072 656c 6561 7365 2061 6e64 2061 is.release.and.a + 0x0ab0: 7265 0a6e 6f77 206d 616e 6167 6564 2077 re.now.managed.w + 0x0ac0: 6974 6820 6465 6263 6f6e 662e 2020 5479 ith.debconf...Ty + 0x0ad0: 7065 203c 5454 3e64 706b 672d 7265 636f pe.dpkg-reco + 0x0ae0: 6e66 6967 7572 6520 6170 6163 6865 3c2f nfigure.apache.to.select.wh + 0x0b00: 6963 6820 6d6f 6475 6c65 7320 796f 7520 ich.modules.you. + 0x0b10: 7761 6e74 2065 6e61 626c 6564 2e20 204d want.enabled...M + 0x0b20: 616e 7920 6f74 6865 7220 6d6f 6475 6c65 any.other.module + 0x0b30: 7320 6172 6520 6176 6169 6c61 626c 650a s.are.available. + 0x0b40: 7468 726f 7567 6820 7468 6520 4465 6269 through.the.Debi + 0x0b50: 616e 2070 6163 6b61 6765 2073 7973 7465 an.package.syste + 0x0b60: 6d20 7769 7468 2074 6865 206e 616d 6573 m.with.the.names + 0x0b70: 203c 5454 3e6c 6962 6170 6163 6865 2d6d .libapache-m + 0x0b80: 6f64 2d2a 3c2f 5454 3e2e 0a49 6620 796f od-*..If.yo + 0x0b90: 7520 6e65 6564 2074 6f20 636f 6d70 696c u.need.to.compil + 0x0ba0: 6520 6120 6d6f 6475 6c65 2079 6f75 7273 e.a.module.yours + 0x0bb0: 656c 662c 2079 6f75 2077 696c 6c20 6e65 elf,.you.will.ne + 0x0bc0: 6564 2074 6f20 696e 7374 616c 6c20 7468 ed.to.install.th + 0x0bd0: 650a 3c54 543e 6170 6163 6865 2d64 6576 e.apache-dev + 0x0be0: 3c2f 5454 3e20 7061 636b 6167 652e 0a0a .package... + 0x0bf0: 3c50 3e4d 6f72 6520 646f 6375 6d65 6e74

More.document + 0x0c00: 6174 696f 6e20 6f6e 2041 7061 6368 6520 ation.on.Apache. + 0x0c10: 6361 6e20 6265 2066 6f75 6e64 206f 6e3a can.be.found.on: + 0x0c20: 0a3c 554c 3e0a 3c4c 493e 0a54 6865 203c .

    .
  • .The.< + 0x0c30: 4120 4852 4546 3d22 2f64 6f63 2f61 7061 A.HREF="/doc/apa + 0x0c40: 6368 652d 646f 632f 6d61 6e75 616c 2f22 che-doc/manual/" + 0x0c50: 3e41 7061 6368 6520 646f 6375 6d65 6e74 >Apache.document + 0x0c60: 6174 696f 6e3c 2f41 3e20 7374 6f72 6564 ation.stored + 0x0c70: 206f 6e20 796f 7572 2073 6572 7665 722e .on.your.server. + 0x0c80: 3c2f 4c49 3e0a 0a3c 4c49 3e0a 5468 6520
  • ..
  • .The. + 0x0c90: 3c41 2048 5245 463d 2268 7474 703a 2f2f Apache.Project< + 0x0cc0: 2f41 3e20 686f 6d65 2073 6974 652e 3c2f /A>.home.site...
  • .The.Apache-SSL.home.site.
  • ..
  • .The.mo + 0x0d50: 6420 7065 726c 3c2f 413e 2068 6f6d 6520 d.perl.home. + 0x0d60: 7369 7465 2e3c 2f4c 493e 0a0a 3c4c 493e site.
  • ..
  • + 0x0d70: 0a54 6865 203c 4120 4852 4546 3d22 6874 .The.Apache + 0x0da0: 5765 656b 3c2f 413e 206e 6577 736c 6574 Week.newslet + 0x0db0: 7465 722e 3c2f 4c49 3e0a 0a3c 4c49 3e0a ter.
  • ..
  • . + 0x0dc0: 5468 6520 3c41 2048 5245 463d 2268 7474 The.Debian. + 0x0df0: 5072 6f6a 6563 740a 446f 6375 6d65 6e74 Project.Document + 0x0e00: 6174 696f 6e3c 2f41 3e20 7768 6963 6820 ation.which. + 0x0e10: 636f 6e74 6169 6e73 2048 4f57 544f 732c contains.HOWTOs, + 0x0e20: 2046 4151 732c 2061 6e64 2073 6f66 7477 .FAQs,.and.softw + 0x0e30: 6172 6520 7570 6461 7465 732e 3c2f 4c49 are.updates.
  • .
..

You. + 0x0e50: 6361 6e20 616c 736f 2063 6f6e 7375 6c74 can.also.consult + 0x0e60: 2074 6865 206c 6973 7420 6f66 203c 4120 .the.list.of.World.Wide.We + 0x0ea0: 6220 4672 6571 7565 6e74 6c79 2041 736b b.Frequently.Ask + 0x0eb0: 6564 2051 7565 7374 696f 6e73 3c2f 413e ed.Questions + 0x0ec0: 2066 6f72 2069 6e66 6f72 6d61 7469 6f6e .for.information + 0x0ed0: 2e0a 0a3c 4832 3e4c 6574 206f 7468 6572 ...

Let.other + 0x0ee0: 2070 656f 706c 6520 6b6e 6f77 2061 626f .people.know.abo + 0x0ef0: 7574 2074 6869 7320 7365 7276 6572 3c2f ut.this.server..Netcraft + 0x0f30: 2070 726f 7669 6465 7320 616e 2069 6e74 .provides.an.int + 0x0f40: 6572 6573 7469 6e67 2066 7265 650a 7365 eresting.free.se + 0x0f50: 7276 6963 6520 666f 7220 7765 6220 7369 rvice.for.web.si + 0x0f60: 7465 206d 6f6e 6974 6f72 696e 6720 616e te.monitoring.an + 0x0f70: 6420 7374 6174 6973 7469 6320 636f 6c6c d.statistic.coll + 0x0f80: 6563 7469 6f6e 2e0a 596f 7520 6361 6e20 ection..You.can. + 0x0f90: 6c65 7420 7468 656d 206b 6e6f 7720 6162 let.them.know.ab + 0x0fa0: 6f75 7420 796f 7572 2073 6572 7665 7220 out.your.server. + 0x0fb0: 7573 696e 6720 7468 6569 720a 3c41 2048 using.their.interface. + 0x0ff0: 0a45 6e61 626c 696e 6720 7468 6520 6d6f .Enabling.the.mo + 0x1000: 6e69 746f 7269 6e67 206f 6620 796f 7572 nitoring.of.your + 0x1010: 2073 6572 7665 7220 7769 6c6c 2070 726f .server.will.pro + 0x1020: 7669 6465 2061 2062 6574 7465 7220 676c vide.a.better.gl + 0x1030: 6f62 616c 206f 7665 7276 6965 770a 6f66 obal.overview.of + 0x1040: 2077 686f 2069 7320 7573 696e 6720 7768 .who.is.using.wh + 0x1050: 6174 2061 6e64 2077 6865 7265 2c20 616e at.and.where,.an + 0x1060: 6420 6974 2077 6f75 6c64 2067 6976 6520 d.it.would.give. + 0x1070: 4465 6269 616e 2061 2062 6574 7465 720a Debian.a.better. + 0x1080: 6f76 6572 7669 6577 206f 6620 7468 6520 overview.of.the. + 0x1090: 6170 6163 6865 2070 6163 6b61 6765 2075 apache.package.u + 0x10a0: 7361 6765 2e0a 0a3c 4832 3e41 626f 7574 sage...

About + 0x10b0: 2074 6869 7320 7061 6765 3c2f 4832 3e0a .this.page

. + 0x10c0: 0a3c 494d 4720 414c 4947 4e3d 2272 6967 ...

+ 0x1110: 5468 6973 2069 7320 6120 706c 6163 6568 This.is.a.placeh + 0x1120: 6f6c 6465 7220 7061 6765 2069 6e73 7461 older.page.insta + 0x1130: 6c6c 6564 2062 7920 7468 6520 3c41 0a48 lled.by.the.Deb + 0x1160: 6961 6e3c 2f41 3e0a 7265 6c65 6173 6520 ian.release. + 0x1170: 6f66 2074 6865 2061 7061 6368 6520 5765 of.the.apache.We + 0x1180: 6220 7365 7276 6572 2070 6163 6b61 6765 b.server.package + 0x1190: 2e0a 0a3c 503e 5468 6973 2063 6f6d 7075 ...

This.compu + 0x11a0: 7465 7220 6861 7320 696e 7374 616c 6c65 ter.has.installe + 0x11b0: 6420 7468 6520 4465 6269 616e 2047 4e55 d.the.Debian.GNU + 0x11c0: 2f4c 696e 7578 206f 7065 7261 7469 6e67 /Linux.operating + 0x11d0: 2073 7973 7465 6d2c 0a62 7574 2069 7420 .system,.but.it. + 0x11e0: 6861 7320 3c73 7472 6f6e 673e 6e6f 7468 has.noth + 0x11f0: 696e 6720 746f 2064 6f20 7769 7468 2074 ing.to.do.with.t + 0x1200: 6865 2044 6562 6961 6e0a 5072 6f6a 6563 he.Debian.Projec + 0x1210: 743c 2f73 7472 6f6e 673e 2e20 506c 6561 t..Plea + 0x1220: 7365 2064 6f20 3c73 7472 6f6e 673e 6e6f se.do.no + 0x1230: 743c 2f73 7472 6f6e 673e 2063 6f6e 7461 t.conta + 0x1240: 6374 2074 6865 2044 6562 6961 6e0a 5072 ct.the.Debian.Pr + 0x1250: 6f6a 6563 7420 6162 6f75 7420 6974 2e3c oject.about.it.< + 0x1260: 2f50 3e0a 0a3c 503e 4966 2079 6f75 2066 /P>..

If.you.f + 0x1270: 696e 6420 6120 6275 6720 696e 2074 6869 ind.a.bug.in.thi + 0x1280: 7320 6170 6163 6865 2070 6163 6b61 6765 s.apache.package + 0x1290: 2c20 6f72 2069 6e20 4170 6163 6865 2069 ,.or.in.Apache.i + 0x12a0: 7473 656c 662c 0a70 6c65 6173 6520 6669 tself,.please.fi + 0x12b0: 6c65 2061 2062 7567 2072 6570 6f72 7420 le.a.bug.report. + 0x12c0: 6f6e 2069 742e 2020 496e 7374 7275 6374 on.it...Instruct + 0x12d0: 696f 6e73 206f 6e20 646f 696e 6720 7468 ions.on.doing.th + 0x12e0: 6973 2c20 616e 6420 7468 650a 6c69 7374 is,.and.the.list + 0x12f0: 206f 6620 3c41 2048 5245 463d 2268 7474 .of. + 0x1320: 6b6e 6f77 6e20 6275 6773 3c2f 413e 206f known.bugs.o + 0x1330: 6620 7468 6973 0a70 6163 6b61 6765 2c20 f.this.package,. + 0x1340: 6361 6e20 6265 2066 6f75 6e64 2069 6e20 can.be.found.in. + 0x1350: 7468 6520 0a3c 4120 4852 4546 3d22 6874 the..Debian.Bug.T + 0x1390: 7261 636b 696e 6720 5379 7374 656d 3c2f racking.System...

Thanks.f + 0x13b0: 6f72 2075 7369 6e67 2074 6869 7320 7061 or.using.this.pa + 0x13c0: 636b 6167 652c 2061 6e64 2063 6f6e 6772 ckage,.and.congr + 0x13d0: 6174 756c 6174 696f 6e73 2066 6f72 2079 atulations.for.y + 0x13e0: 6f75 7220 6368 6f69 6365 206f 660a 6120 our.choice.of.a. + 0x13f0: 4465 6269 616e 2073 7973 7465 6d21 3c2f Debian.system!...........< + 0x1520: 212d 2d0a 2020 5468 6973 2070 6167 6520 !--...This.page. + 0x1530: 7761 7320 696e 6974 6961 6c6c 7920 6372 was.initially.cr + 0x1540: 6561 7465 6420 6279 204a 6f68 6e69 6520 eated.by.Johnie. + 0x1550: 496e 6772 616d 2028 6874 7470 3a2f 2f6e Ingram.(http://n + 0x1560: 6574 676f 642e 6e65 742f 290a 2020 4974 etgod.net/)...It + 0x1570: 2077 6173 206c 6174 6572 2065 6469 7465 .was.later.edite + 0x1580: 6420 6279 204d 6174 7468 6577 2057 696c d.by.Matthew.Wil + 0x1590: 636f 7820 616e 6420 4a6f 7369 7020 526f cox.and.Josip.Ro + 0x15a0: 6469 6e2e 0a20 204c 6173 7420 6d6f 6469 din....Last.modi + 0x15b0: 6669 6564 3a20 2444 6174 653a 2032 3030 fied:.$Date:.200 + 0x15c0: 342f 3036 2f32 3020 3135 3a33 333a 3537 4/06/20.15:33:57 + 0x15d0: 2024 2e0a 2020 2d2d 3e0a 0a3c 2f42 4f44 .$....-->.... +IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [.], ack 5560, win 12383, options [nop,nop,TS val 1306300953 ecr 1306300953], length 0 + 0x0000: 4500 0034 1b6e 4000 4006 2154 7f00 0001 E..4.n@.@.!T.... + 0x0010: 7f00 0001 da70 0050 3758 8a49 377a a3a9 .....p.P7X.I7z.. + 0x0020: 8010 305f 10ea 0000 0101 080a 4ddc 9219 ..0_........M... + 0x0030: 4ddc 9219 M... +IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [F.], seq 203, ack 5560, win 12383, options [nop,nop,TS val 1306302241 ecr 1306300953], length 0 + 0x0000: 4500 0034 1b70 4000 4006 2152 7f00 0001 E..4.p@.@.!R.... + 0x0010: 7f00 0001 da70 0050 3758 8a49 377a a3a9 .....p.P7X.I7z.. + 0x0020: 8011 305f 0be1 0000 0101 080a 4ddc 9721 ..0_........M..! + 0x0030: 4ddc 9219 M... +IP 127.0.0.1.80 > 127.0.0.1.55920: Flags [F.], seq 5560, ack 204, win 8192, options [nop,nop,TS val 1306302243 ecr 1306302241], length 0 + 0x0000: 4500 0034 1fe8 4000 4006 1cda 7f00 0001 E..4..@.@....... + 0x0010: 7f00 0001 0050 da70 377a a3a9 3758 8a4a .....P.p7z..7X.J + 0x0020: 8011 2000 1735 0000 0101 080a 4ddc 9723 .....5......M..# + 0x0030: 4ddc 9721 M..! +IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [.], ack 5561, win 12383, options [nop,nop,TS val 1306302243 ecr 1306302243], length 0 + 0x0000: 4500 0034 1b72 4000 4006 2150 7f00 0001 E..4.r@.@.!P.... + 0x0010: 7f00 0001 da70 0050 3758 8a4a 377a a3aa .....p.P7X.J7z.. + 0x0020: 8010 305f 06d4 0000 0101 080a 4ddc 9723 ..0_........M..# + 0x0030: 4ddc 9723 M..# diff --git a/src/tests/print-capXX.out b/src/tests/print-capXX.out new file mode 100644 index 0000000..8fc3095 --- /dev/null +++ b/src/tests/print-capXX.out @@ -0,0 +1,419 @@ +IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [S], seq 928549246, win 32767, options [mss 16396,sackOK,TS val 1306300950 ecr 0,nop,wscale 2], length 0 + 0x0000: 0000 0000 0000 0000 0000 0000 0800 4500 ..............E. + 0x0010: 003c 1b68 4000 4006 2152 7f00 0001 7f00 .<.h@.@.!R...... + 0x0020: 0001 da70 0050 3758 897e 0000 0000 a002 ...p.P7X.~...... + 0x0030: 7fff 1421 0000 0204 400c 0402 080a 4ddc ...!....@.....M. + 0x0040: 9216 0000 0000 0103 0302 .......... +IP 127.0.0.1.80 > 127.0.0.1.55920: Flags [S.], seq 930778609, ack 928549247, win 32767, options [mss 16396,sackOK,TS val 1306300950 ecr 1306300950,nop,wscale 2], length 0 + 0x0000: 0000 0000 0000 0000 0000 0000 0800 4500 ..............E. + 0x0010: 003c 0000 4000 4006 3cba 7f00 0001 7f00 .<..@.@.<....... + 0x0020: 0001 0050 da70 377a 8df1 3758 897f a012 ...P.p7z..7X.... + 0x0030: 7fff 6eb1 0000 0204 400c 0402 080a 4ddc ..n.....@.....M. + 0x0040: 9216 4ddc 9216 0103 0302 ..M....... +IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [.], ack 1, win 8192, options [nop,nop,TS val 1306300950 ecr 1306300950], length 0 + 0x0000: 0000 0000 0000 0000 0000 0000 0800 4500 ..............E. + 0x0010: 0034 1b6a 4000 4006 2158 7f00 0001 7f00 .4.j@.@.!X...... + 0x0020: 0001 da70 0050 3758 897f 377a 8df2 8010 ...p.P7X..7z.... + 0x0030: 2000 37d0 0000 0101 080a 4ddc 9216 4ddc ..7.......M...M. + 0x0040: 9216 .. +IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [P.], seq 1:203, ack 1, win 8192, options [nop,nop,TS val 1306300951 ecr 1306300950], length 202: HTTP: GET / HTTP/1.1 + 0x0000: 0000 0000 0000 0000 0000 0000 0800 4500 ..............E. + 0x0010: 00fe 1b6c 4000 4006 208c 7f00 0001 7f00 ...l@.@......... + 0x0020: 0001 da70 0050 3758 897f 377a 8df2 8018 ...p.P7X..7z.... + 0x0030: 2000 fef2 0000 0101 080a 4ddc 9217 4ddc ..........M...M. + 0x0040: 9216 4745 5420 2f20 4854 5450 2f31 2e31 ..GET./.HTTP/1.1 + 0x0050: 0d0a 486f 7374 3a20 6c6f 6361 6c68 6f73 ..Host:.localhos + 0x0060: 740d 0a55 7365 722d 4167 656e 743a 2045 t..User-Agent:.E + 0x0070: 4c69 6e6b 732f 302e 3130 2e34 2d37 2d64 Links/0.10.4-7-d + 0x0080: 6562 6961 6e20 2874 6578 746d 6f64 653b ebian.(textmode; + 0x0090: 204c 696e 7578 2032 2e36 2e31 312d 312d .Linux.2.6.11-1- + 0x00a0: 3638 362d 736d 7020 6936 3836 3b20 3133 686-smp.i686;.13 + 0x00b0: 3278 3536 2d32 290d 0a41 6363 6570 743a 2x56-2)..Accept: + 0x00c0: 202a 2f2a 0d0a 4163 6365 7074 2d45 6e63 .*/*..Accept-Enc + 0x00d0: 6f64 696e 673a 2067 7a69 700d 0a41 6363 oding:.gzip..Acc + 0x00e0: 6570 742d 4c61 6e67 7561 6765 3a20 656e ept-Language:.en + 0x00f0: 0d0a 436f 6e6e 6563 7469 6f6e 3a20 4b65 ..Connection:.Ke + 0x0100: 6570 2d41 6c69 7665 0d0a 0d0a ep-Alive.... +IP 127.0.0.1.80 > 127.0.0.1.55920: Flags [.], ack 203, win 8192, options [nop,nop,TS val 1306300952 ecr 1306300951], length 0 + 0x0000: 0000 0000 0000 0000 0000 0000 0800 4500 ..............E. + 0x0010: 0034 1fe4 4000 4006 1cde 7f00 0001 7f00 .4..@.@......... + 0x0020: 0001 0050 da70 377a 8df2 3758 8a49 8010 ...P.p7z..7X.I.. + 0x0030: 2000 3703 0000 0101 080a 4ddc 9218 4ddc ..7.......M...M. + 0x0040: 9217 .. +IP 127.0.0.1.80 > 127.0.0.1.55920: Flags [P.], seq 1:5560, ack 203, win 8192, options [nop,nop,TS val 1306300953 ecr 1306300951], length 5559: HTTP: HTTP/1.1 200 OK + 0x0000: 0000 0000 0000 0000 0000 0000 0800 4500 ..............E. + 0x0010: 15eb 1fe6 4000 4006 0725 7f00 0001 7f00 ....@.@..%...... + 0x0020: 0001 0050 da70 377a 8df2 3758 8a49 8018 ...P.p7z..7X.I.. + 0x0030: 2000 13e0 0000 0101 080a 4ddc 9219 4ddc ..........M...M. + 0x0040: 9217 4854 5450 2f31 2e31 2032 3030 204f ..HTTP/1.1.200.O + 0x0050: 4b0d 0a44 6174 653a 2057 6564 2c20 3036 K..Date:.Wed,.06 + 0x0060: 204a 756c 2032 3030 3520 3033 3a35 373a .Jul.2005.03:57: + 0x0070: 3335 2047 4d54 0d0a 5365 7276 6572 3a20 35.GMT..Server:. + 0x0080: 4170 6163 6865 2f31 2e33 2e33 330d 0a4c Apache/1.3.33..L + 0x0090: 6173 742d 4d6f 6469 6669 6564 3a20 5375 ast-Modified:.Su + 0x00a0: 6e2c 2031 3520 4175 6720 3230 3034 2030 n,.15.Aug.2004.0 + 0x00b0: 303a 3433 3a34 3120 474d 540d 0a45 5461 0:43:41.GMT..ETa + 0x00c0: 673a 2022 3665 3830 6630 2d31 3438 612d g:."6e80f0-148a- + 0x00d0: 3431 3165 6231 6264 220d 0a41 6363 6570 411eb1bd"..Accep + 0x00e0: 742d 5261 6e67 6573 3a20 6279 7465 730d t-Ranges:.bytes. + 0x00f0: 0a43 6f6e 7465 6e74 2d4c 656e 6774 683a .Content-Length: + 0x0100: 2035 3235 380d 0a4b 6565 702d 416c 6976 .5258..Keep-Aliv + 0x0110: 653a 2074 696d 656f 7574 3d31 352c 206d e:.timeout=15,.m + 0x0120: 6178 3d31 3030 0d0a 436f 6e6e 6563 7469 ax=100..Connecti + 0x0130: 6f6e 3a20 4b65 6570 2d41 6c69 7665 0d0a on:.Keep-Alive.. + 0x0140: 436f 6e74 656e 742d 5479 7065 3a20 7465 Content-Type:.te + 0x0150: 7874 2f68 746d 6c3b 2063 6861 7273 6574 xt/html;.charset + 0x0160: 3d69 736f 2d38 3835 392d 310d 0a0d 0a3c =iso-8859-1....< + 0x0170: 2144 4f43 5459 5045 2048 544d 4c20 5055 !DOCTYPE.HTML.PU + 0x0180: 424c 4943 2022 2d2f 2f57 3343 2f2f 4454 BLIC."-//W3C//DT + 0x0190: 4420 4854 4d4c 2034 2e30 3120 5472 616e D.HTML.4.01.Tran + 0x01a0: 7369 7469 6f6e 616c 2f2f 454e 223e 0a3c sitional//EN">.< + 0x01b0: 4854 4d4c 3e0a 3c48 4541 443e 0a20 2020 HTML>..... + 0x01c0: 3c4d 4554 4120 4854 5450 2d45 5155 4956 ........Placeholder + 0x0270: 2070 6167 653c 2f54 4954 4c45 3e0a 3c2f .page....Placeholder.pa + 0x02f0: 6765 3c2f 4831 3e0a 3c48 323e 4966 2079 ge

.

If.y + 0x0300: 6f75 2061 7265 206a 7573 7420 6272 6f77 ou.are.just.brow + 0x0310: 7369 6e67 2074 6865 2077 6562 3c2f 6832 sing.the.web

..

The.owner. + 0x0330: 6f66 2074 6869 7320 7765 6220 7369 7465 of.this.web.site + 0x0340: 2068 6173 206e 6f74 2070 7574 2075 7020 .has.not.put.up. + 0x0350: 616e 7920 7765 6220 7061 6765 7320 7965 any.web.pages.ye + 0x0360: 742e 0a50 6c65 6173 6520 636f 6d65 2062 t..Please.come.b + 0x0370: 6163 6b20 6c61 7465 722e 3c2f 503e 0a0a ack.later.

.. + 0x0380: 3c50 3e3c 534d 414c 4c3e 3c43 4954 453e

+ 0x0390: 4d6f 7665 2061 6c6f 6e67 2c20 6e6f 7468 Move.along,.noth + 0x03a0: 696e 6720 746f 2073 6565 2068 6572 652e ing.to.see.here. + 0x03b0: 2e2e 3c2f 4349 5445 3e20 3a2d 293c 2f53 ...:-)

..

I + 0x03d0: 6620 796f 7520 6172 6520 7472 7969 6e67 f.you.are.trying + 0x03e0: 2074 6f20 6c6f 6361 7465 2074 6865 2061 .to.locate.the.a + 0x03f0: 646d 696e 6973 7472 6174 6f72 206f 6620 dministrator.of. + 0x0400: 7468 6973 206d 6163 6869 6e65 3c2f 4832 this.machine

..

If.you.wan + 0x0420: 7420 746f 2072 6570 6f72 7420 736f 6d65 t.to.report.some + 0x0430: 7468 696e 6720 6162 6f75 7420 7468 6973 thing.about.this + 0x0440: 2068 6f73 7427 7320 6265 6861 7669 6f72 .host's.behavior + 0x0450: 2c20 706c 6561 7365 0a63 6f6e 7461 6374 ,.please.contact + 0x0460: 2074 6865 2049 6e74 6572 6e65 7420 5365 .the.Internet.Se + 0x0470: 7276 6963 6520 5072 6f76 6964 6572 2028 rvice.Provider.( + 0x0480: 4953 5029 2069 6e76 6f6c 7665 6420 6469 ISP).involved.di + 0x0490: 7265 6374 6c79 2e3c 2f50 3e0a 0a3c 503e rectly.

..

+ 0x04a0: 5365 6520 7468 6520 3c41 2068 7265 663d See.the.Network. + 0x04d0: 4162 7573 650a 436c 6561 7269 6e67 686f Abuse.Clearingho + 0x04e0: 7573 653c 2f41 3e20 666f 7220 686f 7720 use.for.how. + 0x04f0: 746f 2064 6f20 7468 6973 2e3c 2f50 3e0a to.do.this.

. + 0x0500: 0a3c 4832 3e49 6620 796f 7520 6172 6520 .

If.you.are. + 0x0510: 7468 6520 6164 6d69 6e69 7374 7261 746f the.administrato + 0x0520: 7220 6f66 2074 6869 7320 6d61 6368 696e r.of.this.machin + 0x0530: 653c 2f48 323e 0a0a 3c50 3e54 6865 2069 e

..

The.i + 0x0540: 6e69 7469 616c 2069 6e73 7461 6c6c 6174 nitial.installat + 0x0550: 696f 6e20 6f66 203c 4120 6872 6566 3d22 ion.of.Debian's + 0x0580: 0a61 7061 6368 653c 2f41 3e20 7765 6220 .apache.web. + 0x0590: 7365 7276 6572 2070 6163 6b61 6765 2077 server.package.w + 0x05a0: 6173 2073 7563 6365 7373 6675 6c2e 3c2f as.successful...

Y + 0x05c0: 6f75 2073 686f 756c 6420 7265 706c 6163 ou.should.replac + 0x05d0: 6520 7468 6973 2070 6167 6520 7769 7468 e.this.page.with + 0x05e0: 2079 6f75 7220 6f77 6e20 7765 6220 7061 .your.own.web.pa + 0x05f0: 6765 7320 6173 0a73 6f6f 6e20 6173 2070 ges.as.soon.as.p + 0x0600: 6f73 7369 626c 652e 3c2f 5354 524f 4e47 ossible.

..

Unless + 0x0620: 2079 6f75 2063 6861 6e67 6564 2069 7473 .you.changed.its + 0x0630: 2063 6f6e 6669 6775 7261 7469 6f6e 2c20 .configuration,. + 0x0640: 796f 7572 206e 6577 2073 6572 7665 7220 your.new.server. + 0x0650: 6973 2063 6f6e 6669 6775 7265 6420 6173 is.configured.as + 0x0660: 2066 6f6c 6c6f 7773 3a0a 3c55 4c3e 0a3c .follows:.

    .< + 0x0670: 4c49 3e0a 436f 6e66 6967 7572 6174 696f LI>.Configuratio + 0x0680: 6e20 6669 6c65 7320 6361 6e20 6265 2066 n.files.can.be.f + 0x0690: 6f75 6e64 2069 6e20 3c54 543e 2f65 7463 ound.in./etc + 0x06a0: 2f61 7061 6368 653c 2f54 543e 2e3c 2f4c /apache...
  • .The.DocumentRoot,.which.is.the + 0x06e0: 2064 6972 6563 746f 7279 2075 6e64 6572 .directory.under + 0x06f0: 2077 6869 6368 2061 6c6c 2079 6f75 720a .which.all.your. + 0x0700: 4854 4d4c 2066 696c 6573 2073 686f 756c HTML.files.shoul + 0x0710: 6420 6578 6973 742c 2069 7320 7365 7420 d.exist,.is.set. + 0x0720: 746f 203c 5454 3e2f 7661 722f 7777 773c to./var/www< + 0x0730: 2f54 543e 2e3c 2f4c 493e 0a0a 3c4c 493e /TT>.
  • ..
  • + 0x0740: 0a43 4749 2073 6372 6970 7473 2061 7265 .CGI.scripts.are + 0x0750: 206c 6f6f 6b65 6420 666f 7220 696e 203c .looked.for.in.< + 0x0760: 5454 3e2f 7573 722f 6c69 622f 6367 692d TT>/usr/lib/cgi- + 0x0770: 6269 6e3c 2f54 543e 2c20 7768 6963 6820 bin,.which. + 0x0780: 6973 2077 6865 7265 0a44 6562 6961 6e20 is.where.Debian. + 0x0790: 7061 636b 6167 6573 2077 696c 6c20 706c packages.will.pl + 0x07a0: 6163 6520 7468 6569 7220 7363 7269 7074 ace.their.script + 0x07b0: 732e 3c2f 4c49 3e0a 0a3c 4c49 3e0a 4c6f s.
  • ..
  • .Lo + 0x07c0: 6720 6669 6c65 7320 6172 6520 706c 6163 g.files.are.plac + 0x07d0: 6564 2069 6e20 3c54 543e 2f76 6172 2f6c ed.in./var/l + 0x07e0: 6f67 2f61 7061 6368 653c 2f54 543e 2c20 og/apache,. + 0x07f0: 616e 6420 7769 6c6c 2062 6520 726f 7461 and.will.be.rota + 0x0800: 7465 640a 7765 656b 6c79 2e20 2054 6865 ted.weekly...The + 0x0810: 2066 7265 7175 656e 6379 206f 6620 726f .frequency.of.ro + 0x0820: 7461 7469 6f6e 2063 616e 2062 6520 6561 tation.can.be.ea + 0x0830: 7369 6c79 2063 6861 6e67 6564 2062 7920 sily.changed.by. + 0x0840: 6564 6974 696e 670a 3c54 543e 2f65 7463 editing./etc + 0x0850: 2f6c 6f67 726f 7461 7465 2e64 2f61 7061 /logrotate.d/apa + 0x0860: 6368 653c 2f54 543e 2e3c 2f4c 493e 0a0a che.
  • .. + 0x0870: 3c4c 493e 0a54 6865 2064 6566 6175 6c74
  • .The.default + 0x0880: 2064 6972 6563 746f 7279 2069 6e64 6578 .directory.index + 0x0890: 2069 7320 3c54 543e 696e 6465 782e 6874 .is.index.ht + 0x08a0: 6d6c 3c2f 5454 3e2c 206d 6561 6e69 6e67 ml,.meaning + 0x08b0: 2074 6861 7420 7265 7175 6573 7473 0a66 .that.requests.f + 0x08c0: 6f72 2061 2064 6972 6563 746f 7279 203c or.a.directory.< + 0x08d0: 5454 3e2f 666f 6f2f 6261 722f 3c2f 5454 TT>/foo/bar/.will.give.the. + 0x08f0: 636f 6e74 656e 7473 206f 6620 7468 6520 contents.of.the. + 0x0900: 6669 6c65 203c 5454 3e2f 7661 722f 7777 file./var/ww + 0x0910: 772f 666f 6f2f 6261 722f 696e 6465 782e w/foo/bar/index. + 0x0920: 6874 6d6c 3c2f 5454 3e0a 6966 2069 7420 html.if.it. + 0x0930: 6578 6973 7473 2028 6173 7375 6d69 6e67 exists.(assuming + 0x0940: 2074 6861 7420 3c54 543e 2f76 6172 2f77 .that./var/w + 0x0950: 7777 3c2f 5454 3e20 6973 2079 6f75 7220 ww.is.your. + 0x0960: 3c54 543e 446f 6375 6d65 6e74 526f 6f74 DocumentRoot + 0x0970: 3c2f 5454 3e29 2e3c 2f4c 493e 0a0a 3c4c ).
  • ...User.director + 0x0990: 6965 7320 6172 6520 656e 6162 6c65 642c ies.are.enabled, + 0x09a0: 2061 6e64 2075 7365 7220 646f 6375 6d65 .and.user.docume + 0x09b0: 6e74 7320 7769 6c6c 2062 6520 6c6f 6f6b nts.will.be.look + 0x09c0: 6564 2066 6f72 0a69 6e20 7468 6520 3c54 ed.for.in.the.public_html.directory.of. + 0x09f0: 7468 6520 7573 6572 7327 2068 6f6d 6573 the.users'.homes + 0x0a00: 2e20 2054 6865 7365 2064 6972 730a 7368 ...These.dirs.sh + 0x0a10: 6f75 6c64 2062 6520 756e 6465 7220 3c54 ould.be.under./home
    ,.an + 0x0a30: 6420 7573 6572 7320 7769 6c6c 206e 6f74 d.users.will.not + 0x0a40: 2062 6520 6162 6c65 2074 6f20 7379 6d6c .be.able.to.syml + 0x0a50: 696e 6b0a 746f 2066 696c 6573 2074 6865 ink.to.files.the + 0x0a60: 7920 646f 6e27 7420 6f77 6e2e 3c2f 4c49 y.don't.own...
.All.the + 0x0a80: 2073 7461 6e64 6172 6420 6170 6163 6865 .standard.apache + 0x0a90: 206d 6f64 756c 6573 2061 7265 2061 7661 .modules.are.ava + 0x0aa0: 696c 6162 6c65 2077 6974 6820 7468 6973 ilable.with.this + 0x0ab0: 2072 656c 6561 7365 2061 6e64 2061 7265 .release.and.are + 0x0ac0: 0a6e 6f77 206d 616e 6167 6564 2077 6974 .now.managed.wit + 0x0ad0: 6820 6465 6263 6f6e 662e 2020 5479 7065 h.debconf...Type + 0x0ae0: 203c 5454 3e64 706b 672d 7265 636f 6e66 .dpkg-reconf + 0x0af0: 6967 7572 6520 6170 6163 6865 3c2f 5454 igure.apache.to.select.whic + 0x0b10: 6820 6d6f 6475 6c65 7320 796f 7520 7761 h.modules.you.wa + 0x0b20: 6e74 2065 6e61 626c 6564 2e20 204d 616e nt.enabled...Man + 0x0b30: 7920 6f74 6865 7220 6d6f 6475 6c65 7320 y.other.modules. + 0x0b40: 6172 6520 6176 6169 6c61 626c 650a 7468 are.available.th + 0x0b50: 726f 7567 6820 7468 6520 4465 6269 616e rough.the.Debian + 0x0b60: 2070 6163 6b61 6765 2073 7973 7465 6d20 .package.system. + 0x0b70: 7769 7468 2074 6865 206e 616d 6573 203c with.the.names.< + 0x0b80: 5454 3e6c 6962 6170 6163 6865 2d6d 6f64 TT>libapache-mod + 0x0b90: 2d2a 3c2f 5454 3e2e 0a49 6620 796f 7520 -*
..If.you. + 0x0ba0: 6e65 6564 2074 6f20 636f 6d70 696c 6520 need.to.compile. + 0x0bb0: 6120 6d6f 6475 6c65 2079 6f75 7273 656c a.module.yoursel + 0x0bc0: 662c 2079 6f75 2077 696c 6c20 6e65 6564 f,.you.will.need + 0x0bd0: 2074 6f20 696e 7374 616c 6c20 7468 650a .to.install.the. + 0x0be0: 3c54 543e 6170 6163 6865 2d64 6576 3c2f apache-dev.package...

More.documentat + 0x0c10: 696f 6e20 6f6e 2041 7061 6368 6520 6361 ion.on.Apache.ca + 0x0c20: 6e20 6265 2066 6f75 6e64 206f 6e3a 0a3c n.be.found.on:.< + 0x0c30: 554c 3e0a 3c4c 493e 0a54 6865 203c 4120 UL>.

  • .The.A + 0x0c60: 7061 6368 6520 646f 6375 6d65 6e74 6174 pache.documentat + 0x0c70: 696f 6e3c 2f41 3e20 7374 6f72 6564 206f ion.stored.o + 0x0c80: 6e20 796f 7572 2073 6572 7665 722e 3c2f n.your.server...
  • .The.A + 0x0cc0: 7061 6368 6520 5072 6f6a 6563 743c 2f41 pache.Project.home.site.
  • ..
  • .The.Apache-SSL. + 0x0d20: 686f 6d65 2073 6974 652e 3c2f 4c49 3e0a home.site.
  • . + 0x0d30: 0a3c 4c49 3e0a 5468 6520 3c41 2048 5245 .
  • .The.mod. + 0x0d60: 7065 726c 3c2f 413e 2068 6f6d 6520 7369 perl.home.si + 0x0d70: 7465 2e3c 2f4c 493e 0a0a 3c4c 493e 0a54 te.
  • ..
  • .T + 0x0d80: 6865 203c 4120 4852 4546 3d22 6874 7470 he.ApacheWe + 0x0db0: 656b 3c2f 413e 206e 6577 736c 6574 7465 ek.newslette + 0x0dc0: 722e 3c2f 4c49 3e0a 0a3c 4c49 3e0a 5468 r.
  • ..
  • .Th + 0x0dd0: 6520 3c41 2048 5245 463d 2268 7474 703a e.Debian.Pr + 0x0e00: 6f6a 6563 740a 446f 6375 6d65 6e74 6174 oject.Documentat + 0x0e10: 696f 6e3c 2f41 3e20 7768 6963 6820 636f ion.which.co + 0x0e20: 6e74 6169 6e73 2048 4f57 544f 732c 2046 ntains.HOWTOs,.F + 0x0e30: 4151 732c 2061 6e64 2073 6f66 7477 6172 AQs,.and.softwar + 0x0e40: 6520 7570 6461 7465 732e 3c2f 4c49 3e0a e.updates.
  • . + 0x0e50: 3c2f 554c 3e0a 0a3c 503e 596f 7520 6361 ..

    You.ca + 0x0e60: 6e20 616c 736f 2063 6f6e 7375 6c74 2074 n.also.consult.t + 0x0e70: 6865 206c 6973 7420 6f66 203c 4120 4852 he.list.of.World.Wide.Web. + 0x0eb0: 4672 6571 7565 6e74 6c79 2041 736b 6564 Frequently.Asked + 0x0ec0: 2051 7565 7374 696f 6e73 3c2f 413e 2066 .Questions.f + 0x0ed0: 6f72 2069 6e66 6f72 6d61 7469 6f6e 2e0a or.information.. + 0x0ee0: 0a3c 4832 3e4c 6574 206f 7468 6572 2070 .

    Let.other.p + 0x0ef0: 656f 706c 6520 6b6e 6f77 2061 626f 7574 eople.know.about + 0x0f00: 2074 6869 7320 7365 7276 6572 3c2f 4832 .this.server

    ..Netcraft.p + 0x0f40: 726f 7669 6465 7320 616e 2069 6e74 6572 rovides.an.inter + 0x0f50: 6573 7469 6e67 2066 7265 650a 7365 7276 esting.free.serv + 0x0f60: 6963 6520 666f 7220 7765 6220 7369 7465 ice.for.web.site + 0x0f70: 206d 6f6e 6974 6f72 696e 6720 616e 6420 .monitoring.and. + 0x0f80: 7374 6174 6973 7469 6320 636f 6c6c 6563 statistic.collec + 0x0f90: 7469 6f6e 2e0a 596f 7520 6361 6e20 6c65 tion..You.can.le + 0x0fa0: 7420 7468 656d 206b 6e6f 7720 6162 6f75 t.them.know.abou + 0x0fb0: 7420 796f 7572 2073 6572 7665 7220 7573 t.your.server.us + 0x0fc0: 696e 6720 7468 6569 720a 3c41 2048 5245 ing.their. + 0x0ff0: 696e 7465 7266 6163 653c 2f41 3e2e 0a45 interface..E + 0x1000: 6e61 626c 696e 6720 7468 6520 6d6f 6e69 nabling.the.moni + 0x1010: 746f 7269 6e67 206f 6620 796f 7572 2073 toring.of.your.s + 0x1020: 6572 7665 7220 7769 6c6c 2070 726f 7669 erver.will.provi + 0x1030: 6465 2061 2062 6574 7465 7220 676c 6f62 de.a.better.glob + 0x1040: 616c 206f 7665 7276 6965 770a 6f66 2077 al.overview.of.w + 0x1050: 686f 2069 7320 7573 696e 6720 7768 6174 ho.is.using.what + 0x1060: 2061 6e64 2077 6865 7265 2c20 616e 6420 .and.where,.and. + 0x1070: 6974 2077 6f75 6c64 2067 6976 6520 4465 it.would.give.De + 0x1080: 6269 616e 2061 2062 6574 7465 720a 6f76 bian.a.better.ov + 0x1090: 6572 7669 6577 206f 6620 7468 6520 6170 erview.of.the.ap + 0x10a0: 6163 6865 2070 6163 6b61 6765 2075 7361 ache.package.usa + 0x10b0: 6765 2e0a 0a3c 4832 3e41 626f 7574 2074 ge...

    About.t + 0x10c0: 6869 7320 7061 6765 3c2f 4832 3e0a 0a3c his.page

    ..< + 0x10d0: 494d 4720 414c 4947 4e3d 2272 6967 6874 IMG.ALIGN="right + 0x10e0: 2220 414c 543d 2222 2048 4549 4748 543d ".ALT="".HEIGHT= + 0x10f0: 2232 3437 2220 5749 4454 483d 2232 3738 "247".WIDTH="278 + 0x1100: 2220 5352 433d 2269 636f 6e73 2f6a 6865 ".SRC="icons/jhe + 0x1110: 3036 312e 706e 6722 3e0a 0a3c 503e 5468 061.png">..

    Th + 0x1120: 6973 2069 7320 6120 706c 6163 6568 6f6c is.is.a.placehol + 0x1130: 6465 7220 7061 6765 2069 6e73 7461 6c6c der.page.install + 0x1140: 6564 2062 7920 7468 6520 3c41 0a48 5245 ed.by.the.Debia + 0x1170: 6e3c 2f41 3e0a 7265 6c65 6173 6520 6f66 n.release.of + 0x1180: 2074 6865 2061 7061 6368 6520 5765 6220 .the.apache.Web. + 0x1190: 7365 7276 6572 2070 6163 6b61 6765 2e0a server.package.. + 0x11a0: 0a3c 503e 5468 6973 2063 6f6d 7075 7465 .

    This.compute + 0x11b0: 7220 6861 7320 696e 7374 616c 6c65 6420 r.has.installed. + 0x11c0: 7468 6520 4465 6269 616e 2047 4e55 2f4c the.Debian.GNU/L + 0x11d0: 696e 7578 206f 7065 7261 7469 6e67 2073 inux.operating.s + 0x11e0: 7973 7465 6d2c 0a62 7574 2069 7420 6861 ystem,.but.it.ha + 0x11f0: 7320 3c73 7472 6f6e 673e 6e6f 7468 696e s.nothin + 0x1200: 6720 746f 2064 6f20 7769 7468 2074 6865 g.to.do.with.the + 0x1210: 2044 6562 6961 6e0a 5072 6f6a 6563 743c .Debian.Project< + 0x1220: 2f73 7472 6f6e 673e 2e20 506c 6561 7365 /strong>..Please + 0x1230: 2064 6f20 3c73 7472 6f6e 673e 6e6f 743c .do.not< + 0x1240: 2f73 7472 6f6e 673e 2063 6f6e 7461 6374 /strong>.contact + 0x1250: 2074 6865 2044 6562 6961 6e0a 5072 6f6a .the.Debian.Proj + 0x1260: 6563 7420 6162 6f75 7420 6974 2e3c 2f50 ect.about.it.

    ..

    If.you.fin + 0x1280: 6420 6120 6275 6720 696e 2074 6869 7320 d.a.bug.in.this. + 0x1290: 6170 6163 6865 2070 6163 6b61 6765 2c20 apache.package,. + 0x12a0: 6f72 2069 6e20 4170 6163 6865 2069 7473 or.in.Apache.its + 0x12b0: 656c 662c 0a70 6c65 6173 6520 6669 6c65 elf,.please.file + 0x12c0: 2061 2062 7567 2072 6570 6f72 7420 6f6e .a.bug.report.on + 0x12d0: 2069 742e 2020 496e 7374 7275 6374 696f .it...Instructio + 0x12e0: 6e73 206f 6e20 646f 696e 6720 7468 6973 ns.on.doing.this + 0x12f0: 2c20 616e 6420 7468 650a 6c69 7374 206f ,.and.the.list.o + 0x1300: 6620 3c41 2048 5245 463d 2268 7474 703a f.kn + 0x1330: 6f77 6e20 6275 6773 3c2f 413e 206f 6620 own.bugs.of. + 0x1340: 7468 6973 0a70 6163 6b61 6765 2c20 6361 this.package,.ca + 0x1350: 6e20 6265 2066 6f75 6e64 2069 6e20 7468 n.be.found.in.th + 0x1360: 6520 0a3c 4120 4852 4546 3d22 6874 7470 e..Debian.Bug.Tra + 0x13a0: 636b 696e 6720 5379 7374 656d 3c2f 413e cking.System + 0x13b0: 2e0a 0a3c 503e 5468 616e 6b73 2066 6f72 ...

    Thanks.for + 0x13c0: 2075 7369 6e67 2074 6869 7320 7061 636b .using.this.pack + 0x13d0: 6167 652c 2061 6e64 2063 6f6e 6772 6174 age,.and.congrat + 0x13e0: 756c 6174 696f 6e73 2066 6f72 2079 6f75 ulations.for.you + 0x13f0: 7220 6368 6f69 6365 206f 660a 6120 4465 r.choice.of.a.De + 0x1400: 6269 616e 2073 7973 7465 6d21 3c2f 503e bian.system!

    + 0x1410: 0a0a 3c44 4956 2061 6c69 676e 3d22 6365 ........ + 0x1520: 3c2f 613e 0a3c 2f44 4956 3e0a 0a3c 212d ..... + 0x15f0: 0a3c 2f48 544d 4c3e 0a .. +IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [.], ack 5560, win 12383, options [nop,nop,TS val 1306300953 ecr 1306300953], length 0 + 0x0000: 0000 0000 0000 0000 0000 0000 0800 4500 ..............E. + 0x0010: 0034 1b6e 4000 4006 2154 7f00 0001 7f00 .4.n@.@.!T...... + 0x0020: 0001 da70 0050 3758 8a49 377a a3a9 8010 ...p.P7X.I7z.... + 0x0030: 305f 10ea 0000 0101 080a 4ddc 9219 4ddc 0_........M...M. + 0x0040: 9219 .. +IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [F.], seq 203, ack 5560, win 12383, options [nop,nop,TS val 1306302241 ecr 1306300953], length 0 + 0x0000: 0000 0000 0000 0000 0000 0000 0800 4500 ..............E. + 0x0010: 0034 1b70 4000 4006 2152 7f00 0001 7f00 .4.p@.@.!R...... + 0x0020: 0001 da70 0050 3758 8a49 377a a3a9 8011 ...p.P7X.I7z.... + 0x0030: 305f 0be1 0000 0101 080a 4ddc 9721 4ddc 0_........M..!M. + 0x0040: 9219 .. +IP 127.0.0.1.80 > 127.0.0.1.55920: Flags [F.], seq 5560, ack 204, win 8192, options [nop,nop,TS val 1306302243 ecr 1306302241], length 0 + 0x0000: 0000 0000 0000 0000 0000 0000 0800 4500 ..............E. + 0x0010: 0034 1fe8 4000 4006 1cda 7f00 0001 7f00 .4..@.@......... + 0x0020: 0001 0050 da70 377a a3a9 3758 8a4a 8011 ...P.p7z..7X.J.. + 0x0030: 2000 1735 0000 0101 080a 4ddc 9723 4ddc ...5......M..#M. + 0x0040: 9721 .! +IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [.], ack 5561, win 12383, options [nop,nop,TS val 1306302243 ecr 1306302243], length 0 + 0x0000: 0000 0000 0000 0000 0000 0000 0800 4500 ..............E. + 0x0010: 0034 1b72 4000 4006 2150 7f00 0001 7f00 .4.r@.@.!P...... + 0x0020: 0001 da70 0050 3758 8a4a 377a a3aa 8010 ...p.P7X.J7z.... + 0x0030: 305f 06d4 0000 0101 080a 4ddc 9723 4ddc 0_........M..#M. + 0x0040: 9723 .# diff --git a/src/tests/print-flags.pcap b/src/tests/print-flags.pcap new file mode 100644 index 0000000..8798c69 Binary files /dev/null and b/src/tests/print-flags.pcap differ diff --git a/src/tests/print-x.out b/src/tests/print-x.out new file mode 100644 index 0000000..f2a4e2c --- /dev/null +++ b/src/tests/print-x.out @@ -0,0 +1,409 @@ +IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [S], seq 928549246, win 32767, options [mss 16396,sackOK,TS val 1306300950 ecr 0,nop,wscale 2], length 0 + 0x0000: 4500 003c 1b68 4000 4006 2152 7f00 0001 + 0x0010: 7f00 0001 da70 0050 3758 897e 0000 0000 + 0x0020: a002 7fff 1421 0000 0204 400c 0402 080a + 0x0030: 4ddc 9216 0000 0000 0103 0302 +IP 127.0.0.1.80 > 127.0.0.1.55920: Flags [S.], seq 930778609, ack 928549247, win 32767, options [mss 16396,sackOK,TS val 1306300950 ecr 1306300950,nop,wscale 2], length 0 + 0x0000: 4500 003c 0000 4000 4006 3cba 7f00 0001 + 0x0010: 7f00 0001 0050 da70 377a 8df1 3758 897f + 0x0020: a012 7fff 6eb1 0000 0204 400c 0402 080a + 0x0030: 4ddc 9216 4ddc 9216 0103 0302 +IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [.], ack 1, win 8192, options [nop,nop,TS val 1306300950 ecr 1306300950], length 0 + 0x0000: 4500 0034 1b6a 4000 4006 2158 7f00 0001 + 0x0010: 7f00 0001 da70 0050 3758 897f 377a 8df2 + 0x0020: 8010 2000 37d0 0000 0101 080a 4ddc 9216 + 0x0030: 4ddc 9216 +IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [P.], seq 1:203, ack 1, win 8192, options [nop,nop,TS val 1306300951 ecr 1306300950], length 202: HTTP: GET / HTTP/1.1 + 0x0000: 4500 00fe 1b6c 4000 4006 208c 7f00 0001 + 0x0010: 7f00 0001 da70 0050 3758 897f 377a 8df2 + 0x0020: 8018 2000 fef2 0000 0101 080a 4ddc 9217 + 0x0030: 4ddc 9216 4745 5420 2f20 4854 5450 2f31 + 0x0040: 2e31 0d0a 486f 7374 3a20 6c6f 6361 6c68 + 0x0050: 6f73 740d 0a55 7365 722d 4167 656e 743a + 0x0060: 2045 4c69 6e6b 732f 302e 3130 2e34 2d37 + 0x0070: 2d64 6562 6961 6e20 2874 6578 746d 6f64 + 0x0080: 653b 204c 696e 7578 2032 2e36 2e31 312d + 0x0090: 312d 3638 362d 736d 7020 6936 3836 3b20 + 0x00a0: 3133 3278 3536 2d32 290d 0a41 6363 6570 + 0x00b0: 743a 202a 2f2a 0d0a 4163 6365 7074 2d45 + 0x00c0: 6e63 6f64 696e 673a 2067 7a69 700d 0a41 + 0x00d0: 6363 6570 742d 4c61 6e67 7561 6765 3a20 + 0x00e0: 656e 0d0a 436f 6e6e 6563 7469 6f6e 3a20 + 0x00f0: 4b65 6570 2d41 6c69 7665 0d0a 0d0a +IP 127.0.0.1.80 > 127.0.0.1.55920: Flags [.], ack 203, win 8192, options [nop,nop,TS val 1306300952 ecr 1306300951], length 0 + 0x0000: 4500 0034 1fe4 4000 4006 1cde 7f00 0001 + 0x0010: 7f00 0001 0050 da70 377a 8df2 3758 8a49 + 0x0020: 8010 2000 3703 0000 0101 080a 4ddc 9218 + 0x0030: 4ddc 9217 +IP 127.0.0.1.80 > 127.0.0.1.55920: Flags [P.], seq 1:5560, ack 203, win 8192, options [nop,nop,TS val 1306300953 ecr 1306300951], length 5559: HTTP: HTTP/1.1 200 OK + 0x0000: 4500 15eb 1fe6 4000 4006 0725 7f00 0001 + 0x0010: 7f00 0001 0050 da70 377a 8df2 3758 8a49 + 0x0020: 8018 2000 13e0 0000 0101 080a 4ddc 9219 + 0x0030: 4ddc 9217 4854 5450 2f31 2e31 2032 3030 + 0x0040: 204f 4b0d 0a44 6174 653a 2057 6564 2c20 + 0x0050: 3036 204a 756c 2032 3030 3520 3033 3a35 + 0x0060: 373a 3335 2047 4d54 0d0a 5365 7276 6572 + 0x0070: 3a20 4170 6163 6865 2f31 2e33 2e33 330d + 0x0080: 0a4c 6173 742d 4d6f 6469 6669 6564 3a20 + 0x0090: 5375 6e2c 2031 3520 4175 6720 3230 3034 + 0x00a0: 2030 303a 3433 3a34 3120 474d 540d 0a45 + 0x00b0: 5461 673a 2022 3665 3830 6630 2d31 3438 + 0x00c0: 612d 3431 3165 6231 6264 220d 0a41 6363 + 0x00d0: 6570 742d 5261 6e67 6573 3a20 6279 7465 + 0x00e0: 730d 0a43 6f6e 7465 6e74 2d4c 656e 6774 + 0x00f0: 683a 2035 3235 380d 0a4b 6565 702d 416c + 0x0100: 6976 653a 2074 696d 656f 7574 3d31 352c + 0x0110: 206d 6178 3d31 3030 0d0a 436f 6e6e 6563 + 0x0120: 7469 6f6e 3a20 4b65 6570 2d41 6c69 7665 + 0x0130: 0d0a 436f 6e74 656e 742d 5479 7065 3a20 + 0x0140: 7465 7874 2f68 746d 6c3b 2063 6861 7273 + 0x0150: 6574 3d69 736f 2d38 3835 392d 310d 0a0d + 0x0160: 0a3c 2144 4f43 5459 5045 2048 544d 4c20 + 0x0170: 5055 424c 4943 2022 2d2f 2f57 3343 2f2f + 0x0180: 4454 4420 4854 4d4c 2034 2e30 3120 5472 + 0x0190: 616e 7369 7469 6f6e 616c 2f2f 454e 223e + 0x01a0: 0a3c 4854 4d4c 3e0a 3c48 4541 443e 0a20 + 0x01b0: 2020 3c4d 4554 4120 4854 5450 2d45 5155 + 0x01c0: 4956 3d22 436f 6e74 656e 742d 5479 7065 + 0x01d0: 2220 434f 4e54 454e 543d 2274 6578 742f + 0x01e0: 6874 6d6c 3b20 6368 6172 7365 743d 6973 + 0x01f0: 6f2d 3838 3539 2d31 223e 0a20 2020 3c4d + 0x0200: 4554 4120 4e41 4d45 3d22 4465 7363 7269 + 0x0210: 7074 696f 6e22 2043 4f4e 5445 4e54 3d22 + 0x0220: 5468 6520 696e 6974 6961 6c20 696e 7374 + 0x0230: 616c 6c61 7469 6f6e 206f 6620 4465 6269 + 0x0240: 616e 2061 7061 6368 652e 223e 0a20 2020 + 0x0250: 3c54 4954 4c45 3e50 6c61 6365 686f 6c64 + 0x0260: 6572 2070 6167 653c 2f54 4954 4c45 3e0a + 0x0270: 3c2f 4845 4144 3e0a 3c42 4f44 5920 5445 + 0x0280: 5854 3d22 2330 3030 3030 3022 2042 4743 + 0x0290: 4f4c 4f52 3d22 2346 4646 4646 4622 204c + 0x02a0: 494e 4b3d 2223 3030 3030 4546 2220 564c + 0x02b0: 494e 4b3d 2223 3535 3138 3841 2220 414c + 0x02c0: 494e 4b3d 2223 4646 3030 3030 223e 0a0a + 0x02d0: 3c48 313e 506c 6163 6568 6f6c 6465 7220 + 0x02e0: 7061 6765 3c2f 4831 3e0a 3c48 323e 4966 + 0x02f0: 2079 6f75 2061 7265 206a 7573 7420 6272 + 0x0300: 6f77 7369 6e67 2074 6865 2077 6562 3c2f + 0x0310: 6832 3e0a 0a3c 503e 5468 6520 6f77 6e65 + 0x0320: 7220 6f66 2074 6869 7320 7765 6220 7369 + 0x0330: 7465 2068 6173 206e 6f74 2070 7574 2075 + 0x0340: 7020 616e 7920 7765 6220 7061 6765 7320 + 0x0350: 7965 742e 0a50 6c65 6173 6520 636f 6d65 + 0x0360: 2062 6163 6b20 6c61 7465 722e 3c2f 503e + 0x0370: 0a0a 3c50 3e3c 534d 414c 4c3e 3c43 4954 + 0x0380: 453e 4d6f 7665 2061 6c6f 6e67 2c20 6e6f + 0x0390: 7468 696e 6720 746f 2073 6565 2068 6572 + 0x03a0: 652e 2e2e 3c2f 4349 5445 3e20 3a2d 293c + 0x03b0: 2f53 4d41 4c4c 3e3c 2f50 3e0a 0a3c 4832 + 0x03c0: 3e49 6620 796f 7520 6172 6520 7472 7969 + 0x03d0: 6e67 2074 6f20 6c6f 6361 7465 2074 6865 + 0x03e0: 2061 646d 696e 6973 7472 6174 6f72 206f + 0x03f0: 6620 7468 6973 206d 6163 6869 6e65 3c2f + 0x0400: 4832 3e0a 0a3c 503e 4966 2079 6f75 2077 + 0x0410: 616e 7420 746f 2072 6570 6f72 7420 736f + 0x0420: 6d65 7468 696e 6720 6162 6f75 7420 7468 + 0x0430: 6973 2068 6f73 7427 7320 6265 6861 7669 + 0x0440: 6f72 2c20 706c 6561 7365 0a63 6f6e 7461 + 0x0450: 6374 2074 6865 2049 6e74 6572 6e65 7420 + 0x0460: 5365 7276 6963 6520 5072 6f76 6964 6572 + 0x0470: 2028 4953 5029 2069 6e76 6f6c 7665 6420 + 0x0480: 6469 7265 6374 6c79 2e3c 2f50 3e0a 0a3c + 0x0490: 503e 5365 6520 7468 6520 3c41 2068 7265 + 0x04a0: 663d 2268 7474 703a 2f2f 7777 772e 6162 + 0x04b0: 7573 652e 6e65 742f 223e 4e65 7477 6f72 + 0x04c0: 6b20 4162 7573 650a 436c 6561 7269 6e67 + 0x04d0: 686f 7573 653c 2f41 3e20 666f 7220 686f + 0x04e0: 7720 746f 2064 6f20 7468 6973 2e3c 2f50 + 0x04f0: 3e0a 0a3c 4832 3e49 6620 796f 7520 6172 + 0x0500: 6520 7468 6520 6164 6d69 6e69 7374 7261 + 0x0510: 746f 7220 6f66 2074 6869 7320 6d61 6368 + 0x0520: 696e 653c 2f48 323e 0a0a 3c50 3e54 6865 + 0x0530: 2069 6e69 7469 616c 2069 6e73 7461 6c6c + 0x0540: 6174 696f 6e20 6f66 203c 4120 6872 6566 + 0x0550: 3d22 6874 7470 3a2f 2f77 7777 2e64 6562 + 0x0560: 6961 6e2e 6f72 672f 223e 4465 6269 616e + 0x0570: 2773 0a61 7061 6368 653c 2f41 3e20 7765 + 0x0580: 6220 7365 7276 6572 2070 6163 6b61 6765 + 0x0590: 2077 6173 2073 7563 6365 7373 6675 6c2e + 0x05a0: 3c2f 503e 0a0a 3c50 3e3c 5354 524f 4e47 + 0x05b0: 3e59 6f75 2073 686f 756c 6420 7265 706c + 0x05c0: 6163 6520 7468 6973 2070 6167 6520 7769 + 0x05d0: 7468 2079 6f75 7220 6f77 6e20 7765 6220 + 0x05e0: 7061 6765 7320 6173 0a73 6f6f 6e20 6173 + 0x05f0: 2070 6f73 7369 626c 652e 3c2f 5354 524f + 0x0600: 4e47 3e3c 2f50 3e0a 0a3c 503e 556e 6c65 + 0x0610: 7373 2079 6f75 2063 6861 6e67 6564 2069 + 0x0620: 7473 2063 6f6e 6669 6775 7261 7469 6f6e + 0x0630: 2c20 796f 7572 206e 6577 2073 6572 7665 + 0x0640: 7220 6973 2063 6f6e 6669 6775 7265 6420 + 0x0650: 6173 2066 6f6c 6c6f 7773 3a0a 3c55 4c3e + 0x0660: 0a3c 4c49 3e0a 436f 6e66 6967 7572 6174 + 0x0670: 696f 6e20 6669 6c65 7320 6361 6e20 6265 + 0x0680: 2066 6f75 6e64 2069 6e20 3c54 543e 2f65 + 0x0690: 7463 2f61 7061 6368 653c 2f54 543e 2e3c + 0x06a0: 2f4c 493e 0a0a 3c4c 493e 0a54 6865 203c + 0x06b0: 5454 3e44 6f63 756d 656e 7452 6f6f 743c + 0x06c0: 2f54 543e 2c20 7768 6963 6820 6973 2074 + 0x06d0: 6865 2064 6972 6563 746f 7279 2075 6e64 + 0x06e0: 6572 2077 6869 6368 2061 6c6c 2079 6f75 + 0x06f0: 720a 4854 4d4c 2066 696c 6573 2073 686f + 0x0700: 756c 6420 6578 6973 742c 2069 7320 7365 + 0x0710: 7420 746f 203c 5454 3e2f 7661 722f 7777 + 0x0720: 773c 2f54 543e 2e3c 2f4c 493e 0a0a 3c4c + 0x0730: 493e 0a43 4749 2073 6372 6970 7473 2061 + 0x0740: 7265 206c 6f6f 6b65 6420 666f 7220 696e + 0x0750: 203c 5454 3e2f 7573 722f 6c69 622f 6367 + 0x0760: 692d 6269 6e3c 2f54 543e 2c20 7768 6963 + 0x0770: 6820 6973 2077 6865 7265 0a44 6562 6961 + 0x0780: 6e20 7061 636b 6167 6573 2077 696c 6c20 + 0x0790: 706c 6163 6520 7468 6569 7220 7363 7269 + 0x07a0: 7074 732e 3c2f 4c49 3e0a 0a3c 4c49 3e0a + 0x07b0: 4c6f 6720 6669 6c65 7320 6172 6520 706c + 0x07c0: 6163 6564 2069 6e20 3c54 543e 2f76 6172 + 0x07d0: 2f6c 6f67 2f61 7061 6368 653c 2f54 543e + 0x07e0: 2c20 616e 6420 7769 6c6c 2062 6520 726f + 0x07f0: 7461 7465 640a 7765 656b 6c79 2e20 2054 + 0x0800: 6865 2066 7265 7175 656e 6379 206f 6620 + 0x0810: 726f 7461 7469 6f6e 2063 616e 2062 6520 + 0x0820: 6561 7369 6c79 2063 6861 6e67 6564 2062 + 0x0830: 7920 6564 6974 696e 670a 3c54 543e 2f65 + 0x0840: 7463 2f6c 6f67 726f 7461 7465 2e64 2f61 + 0x0850: 7061 6368 653c 2f54 543e 2e3c 2f4c 493e + 0x0860: 0a0a 3c4c 493e 0a54 6865 2064 6566 6175 + 0x0870: 6c74 2064 6972 6563 746f 7279 2069 6e64 + 0x0880: 6578 2069 7320 3c54 543e 696e 6465 782e + 0x0890: 6874 6d6c 3c2f 5454 3e2c 206d 6561 6e69 + 0x08a0: 6e67 2074 6861 7420 7265 7175 6573 7473 + 0x08b0: 0a66 6f72 2061 2064 6972 6563 746f 7279 + 0x08c0: 203c 5454 3e2f 666f 6f2f 6261 722f 3c2f + 0x08d0: 5454 3e20 7769 6c6c 2067 6976 6520 7468 + 0x08e0: 6520 636f 6e74 656e 7473 206f 6620 7468 + 0x08f0: 6520 6669 6c65 203c 5454 3e2f 7661 722f + 0x0900: 7777 772f 666f 6f2f 6261 722f 696e 6465 + 0x0910: 782e 6874 6d6c 3c2f 5454 3e0a 6966 2069 + 0x0920: 7420 6578 6973 7473 2028 6173 7375 6d69 + 0x0930: 6e67 2074 6861 7420 3c54 543e 2f76 6172 + 0x0940: 2f77 7777 3c2f 5454 3e20 6973 2079 6f75 + 0x0950: 7220 3c54 543e 446f 6375 6d65 6e74 526f + 0x0960: 6f74 3c2f 5454 3e29 2e3c 2f4c 493e 0a0a + 0x0970: 3c4c 493e 0a55 7365 7220 6469 7265 6374 + 0x0980: 6f72 6965 7320 6172 6520 656e 6162 6c65 + 0x0990: 642c 2061 6e64 2075 7365 7220 646f 6375 + 0x09a0: 6d65 6e74 7320 7769 6c6c 2062 6520 6c6f + 0x09b0: 6f6b 6564 2066 6f72 0a69 6e20 7468 6520 + 0x09c0: 3c54 543e 7075 626c 6963 5f68 746d 6c3c + 0x09d0: 2f54 543e 2064 6972 6563 746f 7279 206f + 0x09e0: 6620 7468 6520 7573 6572 7327 2068 6f6d + 0x09f0: 6573 2e20 2054 6865 7365 2064 6972 730a + 0x0a00: 7368 6f75 6c64 2062 6520 756e 6465 7220 + 0x0a10: 3c54 543e 2f68 6f6d 653c 2f54 543e 2c20 + 0x0a20: 616e 6420 7573 6572 7320 7769 6c6c 206e + 0x0a30: 6f74 2062 6520 6162 6c65 2074 6f20 7379 + 0x0a40: 6d6c 696e 6b0a 746f 2066 696c 6573 2074 + 0x0a50: 6865 7920 646f 6e27 7420 6f77 6e2e 3c2f + 0x0a60: 4c49 3e0a 0a3c 2f55 4c3e 0a41 6c6c 2074 + 0x0a70: 6865 2073 7461 6e64 6172 6420 6170 6163 + 0x0a80: 6865 206d 6f64 756c 6573 2061 7265 2061 + 0x0a90: 7661 696c 6162 6c65 2077 6974 6820 7468 + 0x0aa0: 6973 2072 656c 6561 7365 2061 6e64 2061 + 0x0ab0: 7265 0a6e 6f77 206d 616e 6167 6564 2077 + 0x0ac0: 6974 6820 6465 6263 6f6e 662e 2020 5479 + 0x0ad0: 7065 203c 5454 3e64 706b 672d 7265 636f + 0x0ae0: 6e66 6967 7572 6520 6170 6163 6865 3c2f + 0x0af0: 5454 3e20 746f 0a73 656c 6563 7420 7768 + 0x0b00: 6963 6820 6d6f 6475 6c65 7320 796f 7520 + 0x0b10: 7761 6e74 2065 6e61 626c 6564 2e20 204d + 0x0b20: 616e 7920 6f74 6865 7220 6d6f 6475 6c65 + 0x0b30: 7320 6172 6520 6176 6169 6c61 626c 650a + 0x0b40: 7468 726f 7567 6820 7468 6520 4465 6269 + 0x0b50: 616e 2070 6163 6b61 6765 2073 7973 7465 + 0x0b60: 6d20 7769 7468 2074 6865 206e 616d 6573 + 0x0b70: 203c 5454 3e6c 6962 6170 6163 6865 2d6d + 0x0b80: 6f64 2d2a 3c2f 5454 3e2e 0a49 6620 796f + 0x0b90: 7520 6e65 6564 2074 6f20 636f 6d70 696c + 0x0ba0: 6520 6120 6d6f 6475 6c65 2079 6f75 7273 + 0x0bb0: 656c 662c 2079 6f75 2077 696c 6c20 6e65 + 0x0bc0: 6564 2074 6f20 696e 7374 616c 6c20 7468 + 0x0bd0: 650a 3c54 543e 6170 6163 6865 2d64 6576 + 0x0be0: 3c2f 5454 3e20 7061 636b 6167 652e 0a0a + 0x0bf0: 3c50 3e4d 6f72 6520 646f 6375 6d65 6e74 + 0x0c00: 6174 696f 6e20 6f6e 2041 7061 6368 6520 + 0x0c10: 6361 6e20 6265 2066 6f75 6e64 206f 6e3a + 0x0c20: 0a3c 554c 3e0a 3c4c 493e 0a54 6865 203c + 0x0c30: 4120 4852 4546 3d22 2f64 6f63 2f61 7061 + 0x0c40: 6368 652d 646f 632f 6d61 6e75 616c 2f22 + 0x0c50: 3e41 7061 6368 6520 646f 6375 6d65 6e74 + 0x0c60: 6174 696f 6e3c 2f41 3e20 7374 6f72 6564 + 0x0c70: 206f 6e20 796f 7572 2073 6572 7665 722e + 0x0c80: 3c2f 4c49 3e0a 0a3c 4c49 3e0a 5468 6520 + 0x0c90: 3c41 2048 5245 463d 2268 7474 703a 2f2f + 0x0ca0: 7777 772e 6170 6163 6865 2e6f 7267 2f22 + 0x0cb0: 3e41 7061 6368 6520 5072 6f6a 6563 743c + 0x0cc0: 2f41 3e20 686f 6d65 2073 6974 652e 3c2f + 0x0cd0: 4c49 3e0a 0a3c 4c49 3e0a 5468 6520 3c41 + 0x0ce0: 2048 5245 463d 2268 7474 703a 2f2f 7777 + 0x0cf0: 772e 6170 6163 6865 2d73 736c 2e6f 7267 + 0x0d00: 2f22 3e41 7061 6368 652d 5353 4c3c 2f41 + 0x0d10: 3e20 686f 6d65 2073 6974 652e 3c2f 4c49 + 0x0d20: 3e0a 0a3c 4c49 3e0a 5468 6520 3c41 2048 + 0x0d30: 5245 463d 2268 7474 703a 2f2f 7065 726c + 0x0d40: 2e61 7061 6368 652e 6f72 672f 223e 6d6f + 0x0d50: 6420 7065 726c 3c2f 413e 2068 6f6d 6520 + 0x0d60: 7369 7465 2e3c 2f4c 493e 0a0a 3c4c 493e + 0x0d70: 0a54 6865 203c 4120 4852 4546 3d22 6874 + 0x0d80: 7470 3a2f 2f77 7777 2e61 7061 6368 6577 + 0x0d90: 6565 6b2e 636f 6d2f 223e 4170 6163 6865 + 0x0da0: 5765 656b 3c2f 413e 206e 6577 736c 6574 + 0x0db0: 7465 722e 3c2f 4c49 3e0a 0a3c 4c49 3e0a + 0x0dc0: 5468 6520 3c41 2048 5245 463d 2268 7474 + 0x0dd0: 703a 2f2f 7777 772e 6465 6269 616e 2e6f + 0x0de0: 7267 2f64 6f63 2f22 3e44 6562 6961 6e20 + 0x0df0: 5072 6f6a 6563 740a 446f 6375 6d65 6e74 + 0x0e00: 6174 696f 6e3c 2f41 3e20 7768 6963 6820 + 0x0e10: 636f 6e74 6169 6e73 2048 4f57 544f 732c + 0x0e20: 2046 4151 732c 2061 6e64 2073 6f66 7477 + 0x0e30: 6172 6520 7570 6461 7465 732e 3c2f 4c49 + 0x0e40: 3e0a 3c2f 554c 3e0a 0a3c 503e 596f 7520 + 0x0e50: 6361 6e20 616c 736f 2063 6f6e 7375 6c74 + 0x0e60: 2074 6865 206c 6973 7420 6f66 203c 4120 + 0x0e70: 4852 4546 3d22 6874 7470 3a2f 2f77 7777 + 0x0e80: 2e62 6f75 7465 6c6c 2e63 6f6d 2f66 6171 + 0x0e90: 2f22 3e57 6f72 6c64 0a57 6964 6520 5765 + 0x0ea0: 6220 4672 6571 7565 6e74 6c79 2041 736b + 0x0eb0: 6564 2051 7565 7374 696f 6e73 3c2f 413e + 0x0ec0: 2066 6f72 2069 6e66 6f72 6d61 7469 6f6e + 0x0ed0: 2e0a 0a3c 4832 3e4c 6574 206f 7468 6572 + 0x0ee0: 2070 656f 706c 6520 6b6e 6f77 2061 626f + 0x0ef0: 7574 2074 6869 7320 7365 7276 6572 3c2f + 0x0f00: 4832 3e0a 0a3c 4120 4852 4546 3d22 6874 + 0x0f10: 7470 3a2f 2f6e 6574 6372 6166 742e 636f + 0x0f20: 6d2f 223e 4e65 7463 7261 6674 3c2f 413e + 0x0f30: 2070 726f 7669 6465 7320 616e 2069 6e74 + 0x0f40: 6572 6573 7469 6e67 2066 7265 650a 7365 + 0x0f50: 7276 6963 6520 666f 7220 7765 6220 7369 + 0x0f60: 7465 206d 6f6e 6974 6f72 696e 6720 616e + 0x0f70: 6420 7374 6174 6973 7469 6320 636f 6c6c + 0x0f80: 6563 7469 6f6e 2e0a 596f 7520 6361 6e20 + 0x0f90: 6c65 7420 7468 656d 206b 6e6f 7720 6162 + 0x0fa0: 6f75 7420 796f 7572 2073 6572 7665 7220 + 0x0fb0: 7573 696e 6720 7468 6569 720a 3c41 2048 + 0x0fc0: 5245 463d 2268 7474 703a 2f2f 7570 7469 + 0x0fd0: 6d65 2e6e 6574 6372 6166 742e 636f 6d2f + 0x0fe0: 223e 696e 7465 7266 6163 653c 2f41 3e2e + 0x0ff0: 0a45 6e61 626c 696e 6720 7468 6520 6d6f + 0x1000: 6e69 746f 7269 6e67 206f 6620 796f 7572 + 0x1010: 2073 6572 7665 7220 7769 6c6c 2070 726f + 0x1020: 7669 6465 2061 2062 6574 7465 7220 676c + 0x1030: 6f62 616c 206f 7665 7276 6965 770a 6f66 + 0x1040: 2077 686f 2069 7320 7573 696e 6720 7768 + 0x1050: 6174 2061 6e64 2077 6865 7265 2c20 616e + 0x1060: 6420 6974 2077 6f75 6c64 2067 6976 6520 + 0x1070: 4465 6269 616e 2061 2062 6574 7465 720a + 0x1080: 6f76 6572 7669 6577 206f 6620 7468 6520 + 0x1090: 6170 6163 6865 2070 6163 6b61 6765 2075 + 0x10a0: 7361 6765 2e0a 0a3c 4832 3e41 626f 7574 + 0x10b0: 2074 6869 7320 7061 6765 3c2f 4832 3e0a + 0x10c0: 0a3c 494d 4720 414c 4947 4e3d 2272 6967 + 0x10d0: 6874 2220 414c 543d 2222 2048 4549 4748 + 0x10e0: 543d 2232 3437 2220 5749 4454 483d 2232 + 0x10f0: 3738 2220 5352 433d 2269 636f 6e73 2f6a + 0x1100: 6865 3036 312e 706e 6722 3e0a 0a3c 503e + 0x1110: 5468 6973 2069 7320 6120 706c 6163 6568 + 0x1120: 6f6c 6465 7220 7061 6765 2069 6e73 7461 + 0x1130: 6c6c 6564 2062 7920 7468 6520 3c41 0a48 + 0x1140: 5245 463d 2268 7474 703a 2f2f 7777 772e + 0x1150: 6465 6269 616e 2e6f 7267 2f22 3e44 6562 + 0x1160: 6961 6e3c 2f41 3e0a 7265 6c65 6173 6520 + 0x1170: 6f66 2074 6865 2061 7061 6368 6520 5765 + 0x1180: 6220 7365 7276 6572 2070 6163 6b61 6765 + 0x1190: 2e0a 0a3c 503e 5468 6973 2063 6f6d 7075 + 0x11a0: 7465 7220 6861 7320 696e 7374 616c 6c65 + 0x11b0: 6420 7468 6520 4465 6269 616e 2047 4e55 + 0x11c0: 2f4c 696e 7578 206f 7065 7261 7469 6e67 + 0x11d0: 2073 7973 7465 6d2c 0a62 7574 2069 7420 + 0x11e0: 6861 7320 3c73 7472 6f6e 673e 6e6f 7468 + 0x11f0: 696e 6720 746f 2064 6f20 7769 7468 2074 + 0x1200: 6865 2044 6562 6961 6e0a 5072 6f6a 6563 + 0x1210: 743c 2f73 7472 6f6e 673e 2e20 506c 6561 + 0x1220: 7365 2064 6f20 3c73 7472 6f6e 673e 6e6f + 0x1230: 743c 2f73 7472 6f6e 673e 2063 6f6e 7461 + 0x1240: 6374 2074 6865 2044 6562 6961 6e0a 5072 + 0x1250: 6f6a 6563 7420 6162 6f75 7420 6974 2e3c + 0x1260: 2f50 3e0a 0a3c 503e 4966 2079 6f75 2066 + 0x1270: 696e 6420 6120 6275 6720 696e 2074 6869 + 0x1280: 7320 6170 6163 6865 2070 6163 6b61 6765 + 0x1290: 2c20 6f72 2069 6e20 4170 6163 6865 2069 + 0x12a0: 7473 656c 662c 0a70 6c65 6173 6520 6669 + 0x12b0: 6c65 2061 2062 7567 2072 6570 6f72 7420 + 0x12c0: 6f6e 2069 742e 2020 496e 7374 7275 6374 + 0x12d0: 696f 6e73 206f 6e20 646f 696e 6720 7468 + 0x12e0: 6973 2c20 616e 6420 7468 650a 6c69 7374 + 0x12f0: 206f 6620 3c41 2048 5245 463d 2268 7474 + 0x1300: 703a 2f2f 6275 6773 2e64 6562 6961 6e2e + 0x1310: 6f72 672f 7372 633a 6170 6163 6865 223e + 0x1320: 6b6e 6f77 6e20 6275 6773 3c2f 413e 206f + 0x1330: 6620 7468 6973 0a70 6163 6b61 6765 2c20 + 0x1340: 6361 6e20 6265 2066 6f75 6e64 2069 6e20 + 0x1350: 7468 6520 0a3c 4120 4852 4546 3d22 6874 + 0x1360: 7470 3a2f 2f77 7777 2e64 6562 6961 6e2e + 0x1370: 6f72 672f 4275 6773 2f52 6570 6f72 7469 + 0x1380: 6e67 223e 4465 6269 616e 2042 7567 2054 + 0x1390: 7261 636b 696e 6720 5379 7374 656d 3c2f + 0x13a0: 413e 2e0a 0a3c 503e 5468 616e 6b73 2066 + 0x13b0: 6f72 2075 7369 6e67 2074 6869 7320 7061 + 0x13c0: 636b 6167 652c 2061 6e64 2063 6f6e 6772 + 0x13d0: 6174 756c 6174 696f 6e73 2066 6f72 2079 + 0x13e0: 6f75 7220 6368 6f69 6365 206f 660a 6120 + 0x13f0: 4465 6269 616e 2073 7973 7465 6d21 3c2f + 0x1400: 503e 0a0a 3c44 4956 2061 6c69 676e 3d22 + 0x1410: 6365 6e74 6572 223e 0a3c 6120 6872 6566 + 0x1420: 3d22 6874 7470 3a2f 2f77 7777 2e64 6562 + 0x1430: 6961 6e2e 6f72 672f 223e 0a3c 494d 4720 + 0x1440: 616c 6967 6e3d 226d 6964 646c 6522 2068 + 0x1450: 6569 6768 743d 2233 3022 2077 6964 7468 + 0x1460: 3d22 3235 2220 7372 633d 2269 636f 6e73 + 0x1470: 2f64 6562 6961 6e2f 6f70 656e 6c6f 676f + 0x1480: 2d32 352e 6a70 6722 2061 6c74 3d22 4465 + 0x1490: 6269 616e 223e 0a3c 2f61 3e0a 3c61 2068 + 0x14a0: 7265 663d 2268 7474 703a 2f2f 7777 772e + 0x14b0: 6170 6163 6865 2e6f 7267 2f22 3e0a 3c49 + 0x14c0: 4d47 2061 6c69 676e 3d22 6d69 6464 6c65 + 0x14d0: 2220 6865 6967 6874 3d22 3332 2220 7769 + 0x14e0: 6474 683d 2232 3539 2220 7372 633d 2269 + 0x14f0: 636f 6e73 2f61 7061 6368 655f 7062 2e70 + 0x1500: 6e67 2220 616c 743d 2241 7061 6368 6522 + 0x1510: 3e0a 3c2f 613e 0a3c 2f44 4956 3e0a 0a3c + 0x1520: 212d 2d0a 2020 5468 6973 2070 6167 6520 + 0x1530: 7761 7320 696e 6974 6961 6c6c 7920 6372 + 0x1540: 6561 7465 6420 6279 204a 6f68 6e69 6520 + 0x1550: 496e 6772 616d 2028 6874 7470 3a2f 2f6e + 0x1560: 6574 676f 642e 6e65 742f 290a 2020 4974 + 0x1570: 2077 6173 206c 6174 6572 2065 6469 7465 + 0x1580: 6420 6279 204d 6174 7468 6577 2057 696c + 0x1590: 636f 7820 616e 6420 4a6f 7369 7020 526f + 0x15a0: 6469 6e2e 0a20 204c 6173 7420 6d6f 6469 + 0x15b0: 6669 6564 3a20 2444 6174 653a 2032 3030 + 0x15c0: 342f 3036 2f32 3020 3135 3a33 333a 3537 + 0x15d0: 2024 2e0a 2020 2d2d 3e0a 0a3c 2f42 4f44 + 0x15e0: 593e 0a3c 2f48 544d 4c3e 0a +IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [.], ack 5560, win 12383, options [nop,nop,TS val 1306300953 ecr 1306300953], length 0 + 0x0000: 4500 0034 1b6e 4000 4006 2154 7f00 0001 + 0x0010: 7f00 0001 da70 0050 3758 8a49 377a a3a9 + 0x0020: 8010 305f 10ea 0000 0101 080a 4ddc 9219 + 0x0030: 4ddc 9219 +IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [F.], seq 203, ack 5560, win 12383, options [nop,nop,TS val 1306302241 ecr 1306300953], length 0 + 0x0000: 4500 0034 1b70 4000 4006 2152 7f00 0001 + 0x0010: 7f00 0001 da70 0050 3758 8a49 377a a3a9 + 0x0020: 8011 305f 0be1 0000 0101 080a 4ddc 9721 + 0x0030: 4ddc 9219 +IP 127.0.0.1.80 > 127.0.0.1.55920: Flags [F.], seq 5560, ack 204, win 8192, options [nop,nop,TS val 1306302243 ecr 1306302241], length 0 + 0x0000: 4500 0034 1fe8 4000 4006 1cda 7f00 0001 + 0x0010: 7f00 0001 0050 da70 377a a3a9 3758 8a4a + 0x0020: 8011 2000 1735 0000 0101 080a 4ddc 9723 + 0x0030: 4ddc 9721 +IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [.], ack 5561, win 12383, options [nop,nop,TS val 1306302243 ecr 1306302243], length 0 + 0x0000: 4500 0034 1b72 4000 4006 2150 7f00 0001 + 0x0010: 7f00 0001 da70 0050 3758 8a4a 377a a3aa + 0x0020: 8010 305f 06d4 0000 0101 080a 4ddc 9723 + 0x0030: 4ddc 9723 diff --git a/src/tests/print-xx.out b/src/tests/print-xx.out new file mode 100644 index 0000000..542fdc3 --- /dev/null +++ b/src/tests/print-xx.out @@ -0,0 +1,419 @@ +IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [S], seq 928549246, win 32767, options [mss 16396,sackOK,TS val 1306300950 ecr 0,nop,wscale 2], length 0 + 0x0000: 0000 0000 0000 0000 0000 0000 0800 4500 + 0x0010: 003c 1b68 4000 4006 2152 7f00 0001 7f00 + 0x0020: 0001 da70 0050 3758 897e 0000 0000 a002 + 0x0030: 7fff 1421 0000 0204 400c 0402 080a 4ddc + 0x0040: 9216 0000 0000 0103 0302 +IP 127.0.0.1.80 > 127.0.0.1.55920: Flags [S.], seq 930778609, ack 928549247, win 32767, options [mss 16396,sackOK,TS val 1306300950 ecr 1306300950,nop,wscale 2], length 0 + 0x0000: 0000 0000 0000 0000 0000 0000 0800 4500 + 0x0010: 003c 0000 4000 4006 3cba 7f00 0001 7f00 + 0x0020: 0001 0050 da70 377a 8df1 3758 897f a012 + 0x0030: 7fff 6eb1 0000 0204 400c 0402 080a 4ddc + 0x0040: 9216 4ddc 9216 0103 0302 +IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [.], ack 1, win 8192, options [nop,nop,TS val 1306300950 ecr 1306300950], length 0 + 0x0000: 0000 0000 0000 0000 0000 0000 0800 4500 + 0x0010: 0034 1b6a 4000 4006 2158 7f00 0001 7f00 + 0x0020: 0001 da70 0050 3758 897f 377a 8df2 8010 + 0x0030: 2000 37d0 0000 0101 080a 4ddc 9216 4ddc + 0x0040: 9216 +IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [P.], seq 1:203, ack 1, win 8192, options [nop,nop,TS val 1306300951 ecr 1306300950], length 202: HTTP: GET / HTTP/1.1 + 0x0000: 0000 0000 0000 0000 0000 0000 0800 4500 + 0x0010: 00fe 1b6c 4000 4006 208c 7f00 0001 7f00 + 0x0020: 0001 da70 0050 3758 897f 377a 8df2 8018 + 0x0030: 2000 fef2 0000 0101 080a 4ddc 9217 4ddc + 0x0040: 9216 4745 5420 2f20 4854 5450 2f31 2e31 + 0x0050: 0d0a 486f 7374 3a20 6c6f 6361 6c68 6f73 + 0x0060: 740d 0a55 7365 722d 4167 656e 743a 2045 + 0x0070: 4c69 6e6b 732f 302e 3130 2e34 2d37 2d64 + 0x0080: 6562 6961 6e20 2874 6578 746d 6f64 653b + 0x0090: 204c 696e 7578 2032 2e36 2e31 312d 312d + 0x00a0: 3638 362d 736d 7020 6936 3836 3b20 3133 + 0x00b0: 3278 3536 2d32 290d 0a41 6363 6570 743a + 0x00c0: 202a 2f2a 0d0a 4163 6365 7074 2d45 6e63 + 0x00d0: 6f64 696e 673a 2067 7a69 700d 0a41 6363 + 0x00e0: 6570 742d 4c61 6e67 7561 6765 3a20 656e + 0x00f0: 0d0a 436f 6e6e 6563 7469 6f6e 3a20 4b65 + 0x0100: 6570 2d41 6c69 7665 0d0a 0d0a +IP 127.0.0.1.80 > 127.0.0.1.55920: Flags [.], ack 203, win 8192, options [nop,nop,TS val 1306300952 ecr 1306300951], length 0 + 0x0000: 0000 0000 0000 0000 0000 0000 0800 4500 + 0x0010: 0034 1fe4 4000 4006 1cde 7f00 0001 7f00 + 0x0020: 0001 0050 da70 377a 8df2 3758 8a49 8010 + 0x0030: 2000 3703 0000 0101 080a 4ddc 9218 4ddc + 0x0040: 9217 +IP 127.0.0.1.80 > 127.0.0.1.55920: Flags [P.], seq 1:5560, ack 203, win 8192, options [nop,nop,TS val 1306300953 ecr 1306300951], length 5559: HTTP: HTTP/1.1 200 OK + 0x0000: 0000 0000 0000 0000 0000 0000 0800 4500 + 0x0010: 15eb 1fe6 4000 4006 0725 7f00 0001 7f00 + 0x0020: 0001 0050 da70 377a 8df2 3758 8a49 8018 + 0x0030: 2000 13e0 0000 0101 080a 4ddc 9219 4ddc + 0x0040: 9217 4854 5450 2f31 2e31 2032 3030 204f + 0x0050: 4b0d 0a44 6174 653a 2057 6564 2c20 3036 + 0x0060: 204a 756c 2032 3030 3520 3033 3a35 373a + 0x0070: 3335 2047 4d54 0d0a 5365 7276 6572 3a20 + 0x0080: 4170 6163 6865 2f31 2e33 2e33 330d 0a4c + 0x0090: 6173 742d 4d6f 6469 6669 6564 3a20 5375 + 0x00a0: 6e2c 2031 3520 4175 6720 3230 3034 2030 + 0x00b0: 303a 3433 3a34 3120 474d 540d 0a45 5461 + 0x00c0: 673a 2022 3665 3830 6630 2d31 3438 612d + 0x00d0: 3431 3165 6231 6264 220d 0a41 6363 6570 + 0x00e0: 742d 5261 6e67 6573 3a20 6279 7465 730d + 0x00f0: 0a43 6f6e 7465 6e74 2d4c 656e 6774 683a + 0x0100: 2035 3235 380d 0a4b 6565 702d 416c 6976 + 0x0110: 653a 2074 696d 656f 7574 3d31 352c 206d + 0x0120: 6178 3d31 3030 0d0a 436f 6e6e 6563 7469 + 0x0130: 6f6e 3a20 4b65 6570 2d41 6c69 7665 0d0a + 0x0140: 436f 6e74 656e 742d 5479 7065 3a20 7465 + 0x0150: 7874 2f68 746d 6c3b 2063 6861 7273 6574 + 0x0160: 3d69 736f 2d38 3835 392d 310d 0a0d 0a3c + 0x0170: 2144 4f43 5459 5045 2048 544d 4c20 5055 + 0x0180: 424c 4943 2022 2d2f 2f57 3343 2f2f 4454 + 0x0190: 4420 4854 4d4c 2034 2e30 3120 5472 616e + 0x01a0: 7369 7469 6f6e 616c 2f2f 454e 223e 0a3c + 0x01b0: 4854 4d4c 3e0a 3c48 4541 443e 0a20 2020 + 0x01c0: 3c4d 4554 4120 4854 5450 2d45 5155 4956 + 0x01d0: 3d22 436f 6e74 656e 742d 5479 7065 2220 + 0x01e0: 434f 4e54 454e 543d 2274 6578 742f 6874 + 0x01f0: 6d6c 3b20 6368 6172 7365 743d 6973 6f2d + 0x0200: 3838 3539 2d31 223e 0a20 2020 3c4d 4554 + 0x0210: 4120 4e41 4d45 3d22 4465 7363 7269 7074 + 0x0220: 696f 6e22 2043 4f4e 5445 4e54 3d22 5468 + 0x0230: 6520 696e 6974 6961 6c20 696e 7374 616c + 0x0240: 6c61 7469 6f6e 206f 6620 4465 6269 616e + 0x0250: 2061 7061 6368 652e 223e 0a20 2020 3c54 + 0x0260: 4954 4c45 3e50 6c61 6365 686f 6c64 6572 + 0x0270: 2070 6167 653c 2f54 4954 4c45 3e0a 3c2f + 0x0280: 4845 4144 3e0a 3c42 4f44 5920 5445 5854 + 0x0290: 3d22 2330 3030 3030 3022 2042 4743 4f4c + 0x02a0: 4f52 3d22 2346 4646 4646 4622 204c 494e + 0x02b0: 4b3d 2223 3030 3030 4546 2220 564c 494e + 0x02c0: 4b3d 2223 3535 3138 3841 2220 414c 494e + 0x02d0: 4b3d 2223 4646 3030 3030 223e 0a0a 3c48 + 0x02e0: 313e 506c 6163 6568 6f6c 6465 7220 7061 + 0x02f0: 6765 3c2f 4831 3e0a 3c48 323e 4966 2079 + 0x0300: 6f75 2061 7265 206a 7573 7420 6272 6f77 + 0x0310: 7369 6e67 2074 6865 2077 6562 3c2f 6832 + 0x0320: 3e0a 0a3c 503e 5468 6520 6f77 6e65 7220 + 0x0330: 6f66 2074 6869 7320 7765 6220 7369 7465 + 0x0340: 2068 6173 206e 6f74 2070 7574 2075 7020 + 0x0350: 616e 7920 7765 6220 7061 6765 7320 7965 + 0x0360: 742e 0a50 6c65 6173 6520 636f 6d65 2062 + 0x0370: 6163 6b20 6c61 7465 722e 3c2f 503e 0a0a + 0x0380: 3c50 3e3c 534d 414c 4c3e 3c43 4954 453e + 0x0390: 4d6f 7665 2061 6c6f 6e67 2c20 6e6f 7468 + 0x03a0: 696e 6720 746f 2073 6565 2068 6572 652e + 0x03b0: 2e2e 3c2f 4349 5445 3e20 3a2d 293c 2f53 + 0x03c0: 4d41 4c4c 3e3c 2f50 3e0a 0a3c 4832 3e49 + 0x03d0: 6620 796f 7520 6172 6520 7472 7969 6e67 + 0x03e0: 2074 6f20 6c6f 6361 7465 2074 6865 2061 + 0x03f0: 646d 696e 6973 7472 6174 6f72 206f 6620 + 0x0400: 7468 6973 206d 6163 6869 6e65 3c2f 4832 + 0x0410: 3e0a 0a3c 503e 4966 2079 6f75 2077 616e + 0x0420: 7420 746f 2072 6570 6f72 7420 736f 6d65 + 0x0430: 7468 696e 6720 6162 6f75 7420 7468 6973 + 0x0440: 2068 6f73 7427 7320 6265 6861 7669 6f72 + 0x0450: 2c20 706c 6561 7365 0a63 6f6e 7461 6374 + 0x0460: 2074 6865 2049 6e74 6572 6e65 7420 5365 + 0x0470: 7276 6963 6520 5072 6f76 6964 6572 2028 + 0x0480: 4953 5029 2069 6e76 6f6c 7665 6420 6469 + 0x0490: 7265 6374 6c79 2e3c 2f50 3e0a 0a3c 503e + 0x04a0: 5365 6520 7468 6520 3c41 2068 7265 663d + 0x04b0: 2268 7474 703a 2f2f 7777 772e 6162 7573 + 0x04c0: 652e 6e65 742f 223e 4e65 7477 6f72 6b20 + 0x04d0: 4162 7573 650a 436c 6561 7269 6e67 686f + 0x04e0: 7573 653c 2f41 3e20 666f 7220 686f 7720 + 0x04f0: 746f 2064 6f20 7468 6973 2e3c 2f50 3e0a + 0x0500: 0a3c 4832 3e49 6620 796f 7520 6172 6520 + 0x0510: 7468 6520 6164 6d69 6e69 7374 7261 746f + 0x0520: 7220 6f66 2074 6869 7320 6d61 6368 696e + 0x0530: 653c 2f48 323e 0a0a 3c50 3e54 6865 2069 + 0x0540: 6e69 7469 616c 2069 6e73 7461 6c6c 6174 + 0x0550: 696f 6e20 6f66 203c 4120 6872 6566 3d22 + 0x0560: 6874 7470 3a2f 2f77 7777 2e64 6562 6961 + 0x0570: 6e2e 6f72 672f 223e 4465 6269 616e 2773 + 0x0580: 0a61 7061 6368 653c 2f41 3e20 7765 6220 + 0x0590: 7365 7276 6572 2070 6163 6b61 6765 2077 + 0x05a0: 6173 2073 7563 6365 7373 6675 6c2e 3c2f + 0x05b0: 503e 0a0a 3c50 3e3c 5354 524f 4e47 3e59 + 0x05c0: 6f75 2073 686f 756c 6420 7265 706c 6163 + 0x05d0: 6520 7468 6973 2070 6167 6520 7769 7468 + 0x05e0: 2079 6f75 7220 6f77 6e20 7765 6220 7061 + 0x05f0: 6765 7320 6173 0a73 6f6f 6e20 6173 2070 + 0x0600: 6f73 7369 626c 652e 3c2f 5354 524f 4e47 + 0x0610: 3e3c 2f50 3e0a 0a3c 503e 556e 6c65 7373 + 0x0620: 2079 6f75 2063 6861 6e67 6564 2069 7473 + 0x0630: 2063 6f6e 6669 6775 7261 7469 6f6e 2c20 + 0x0640: 796f 7572 206e 6577 2073 6572 7665 7220 + 0x0650: 6973 2063 6f6e 6669 6775 7265 6420 6173 + 0x0660: 2066 6f6c 6c6f 7773 3a0a 3c55 4c3e 0a3c + 0x0670: 4c49 3e0a 436f 6e66 6967 7572 6174 696f + 0x0680: 6e20 6669 6c65 7320 6361 6e20 6265 2066 + 0x0690: 6f75 6e64 2069 6e20 3c54 543e 2f65 7463 + 0x06a0: 2f61 7061 6368 653c 2f54 543e 2e3c 2f4c + 0x06b0: 493e 0a0a 3c4c 493e 0a54 6865 203c 5454 + 0x06c0: 3e44 6f63 756d 656e 7452 6f6f 743c 2f54 + 0x06d0: 543e 2c20 7768 6963 6820 6973 2074 6865 + 0x06e0: 2064 6972 6563 746f 7279 2075 6e64 6572 + 0x06f0: 2077 6869 6368 2061 6c6c 2079 6f75 720a + 0x0700: 4854 4d4c 2066 696c 6573 2073 686f 756c + 0x0710: 6420 6578 6973 742c 2069 7320 7365 7420 + 0x0720: 746f 203c 5454 3e2f 7661 722f 7777 773c + 0x0730: 2f54 543e 2e3c 2f4c 493e 0a0a 3c4c 493e + 0x0740: 0a43 4749 2073 6372 6970 7473 2061 7265 + 0x0750: 206c 6f6f 6b65 6420 666f 7220 696e 203c + 0x0760: 5454 3e2f 7573 722f 6c69 622f 6367 692d + 0x0770: 6269 6e3c 2f54 543e 2c20 7768 6963 6820 + 0x0780: 6973 2077 6865 7265 0a44 6562 6961 6e20 + 0x0790: 7061 636b 6167 6573 2077 696c 6c20 706c + 0x07a0: 6163 6520 7468 6569 7220 7363 7269 7074 + 0x07b0: 732e 3c2f 4c49 3e0a 0a3c 4c49 3e0a 4c6f + 0x07c0: 6720 6669 6c65 7320 6172 6520 706c 6163 + 0x07d0: 6564 2069 6e20 3c54 543e 2f76 6172 2f6c + 0x07e0: 6f67 2f61 7061 6368 653c 2f54 543e 2c20 + 0x07f0: 616e 6420 7769 6c6c 2062 6520 726f 7461 + 0x0800: 7465 640a 7765 656b 6c79 2e20 2054 6865 + 0x0810: 2066 7265 7175 656e 6379 206f 6620 726f + 0x0820: 7461 7469 6f6e 2063 616e 2062 6520 6561 + 0x0830: 7369 6c79 2063 6861 6e67 6564 2062 7920 + 0x0840: 6564 6974 696e 670a 3c54 543e 2f65 7463 + 0x0850: 2f6c 6f67 726f 7461 7465 2e64 2f61 7061 + 0x0860: 6368 653c 2f54 543e 2e3c 2f4c 493e 0a0a + 0x0870: 3c4c 493e 0a54 6865 2064 6566 6175 6c74 + 0x0880: 2064 6972 6563 746f 7279 2069 6e64 6578 + 0x0890: 2069 7320 3c54 543e 696e 6465 782e 6874 + 0x08a0: 6d6c 3c2f 5454 3e2c 206d 6561 6e69 6e67 + 0x08b0: 2074 6861 7420 7265 7175 6573 7473 0a66 + 0x08c0: 6f72 2061 2064 6972 6563 746f 7279 203c + 0x08d0: 5454 3e2f 666f 6f2f 6261 722f 3c2f 5454 + 0x08e0: 3e20 7769 6c6c 2067 6976 6520 7468 6520 + 0x08f0: 636f 6e74 656e 7473 206f 6620 7468 6520 + 0x0900: 6669 6c65 203c 5454 3e2f 7661 722f 7777 + 0x0910: 772f 666f 6f2f 6261 722f 696e 6465 782e + 0x0920: 6874 6d6c 3c2f 5454 3e0a 6966 2069 7420 + 0x0930: 6578 6973 7473 2028 6173 7375 6d69 6e67 + 0x0940: 2074 6861 7420 3c54 543e 2f76 6172 2f77 + 0x0950: 7777 3c2f 5454 3e20 6973 2079 6f75 7220 + 0x0960: 3c54 543e 446f 6375 6d65 6e74 526f 6f74 + 0x0970: 3c2f 5454 3e29 2e3c 2f4c 493e 0a0a 3c4c + 0x0980: 493e 0a55 7365 7220 6469 7265 6374 6f72 + 0x0990: 6965 7320 6172 6520 656e 6162 6c65 642c + 0x09a0: 2061 6e64 2075 7365 7220 646f 6375 6d65 + 0x09b0: 6e74 7320 7769 6c6c 2062 6520 6c6f 6f6b + 0x09c0: 6564 2066 6f72 0a69 6e20 7468 6520 3c54 + 0x09d0: 543e 7075 626c 6963 5f68 746d 6c3c 2f54 + 0x09e0: 543e 2064 6972 6563 746f 7279 206f 6620 + 0x09f0: 7468 6520 7573 6572 7327 2068 6f6d 6573 + 0x0a00: 2e20 2054 6865 7365 2064 6972 730a 7368 + 0x0a10: 6f75 6c64 2062 6520 756e 6465 7220 3c54 + 0x0a20: 543e 2f68 6f6d 653c 2f54 543e 2c20 616e + 0x0a30: 6420 7573 6572 7320 7769 6c6c 206e 6f74 + 0x0a40: 2062 6520 6162 6c65 2074 6f20 7379 6d6c + 0x0a50: 696e 6b0a 746f 2066 696c 6573 2074 6865 + 0x0a60: 7920 646f 6e27 7420 6f77 6e2e 3c2f 4c49 + 0x0a70: 3e0a 0a3c 2f55 4c3e 0a41 6c6c 2074 6865 + 0x0a80: 2073 7461 6e64 6172 6420 6170 6163 6865 + 0x0a90: 206d 6f64 756c 6573 2061 7265 2061 7661 + 0x0aa0: 696c 6162 6c65 2077 6974 6820 7468 6973 + 0x0ab0: 2072 656c 6561 7365 2061 6e64 2061 7265 + 0x0ac0: 0a6e 6f77 206d 616e 6167 6564 2077 6974 + 0x0ad0: 6820 6465 6263 6f6e 662e 2020 5479 7065 + 0x0ae0: 203c 5454 3e64 706b 672d 7265 636f 6e66 + 0x0af0: 6967 7572 6520 6170 6163 6865 3c2f 5454 + 0x0b00: 3e20 746f 0a73 656c 6563 7420 7768 6963 + 0x0b10: 6820 6d6f 6475 6c65 7320 796f 7520 7761 + 0x0b20: 6e74 2065 6e61 626c 6564 2e20 204d 616e + 0x0b30: 7920 6f74 6865 7220 6d6f 6475 6c65 7320 + 0x0b40: 6172 6520 6176 6169 6c61 626c 650a 7468 + 0x0b50: 726f 7567 6820 7468 6520 4465 6269 616e + 0x0b60: 2070 6163 6b61 6765 2073 7973 7465 6d20 + 0x0b70: 7769 7468 2074 6865 206e 616d 6573 203c + 0x0b80: 5454 3e6c 6962 6170 6163 6865 2d6d 6f64 + 0x0b90: 2d2a 3c2f 5454 3e2e 0a49 6620 796f 7520 + 0x0ba0: 6e65 6564 2074 6f20 636f 6d70 696c 6520 + 0x0bb0: 6120 6d6f 6475 6c65 2079 6f75 7273 656c + 0x0bc0: 662c 2079 6f75 2077 696c 6c20 6e65 6564 + 0x0bd0: 2074 6f20 696e 7374 616c 6c20 7468 650a + 0x0be0: 3c54 543e 6170 6163 6865 2d64 6576 3c2f + 0x0bf0: 5454 3e20 7061 636b 6167 652e 0a0a 3c50 + 0x0c00: 3e4d 6f72 6520 646f 6375 6d65 6e74 6174 + 0x0c10: 696f 6e20 6f6e 2041 7061 6368 6520 6361 + 0x0c20: 6e20 6265 2066 6f75 6e64 206f 6e3a 0a3c + 0x0c30: 554c 3e0a 3c4c 493e 0a54 6865 203c 4120 + 0x0c40: 4852 4546 3d22 2f64 6f63 2f61 7061 6368 + 0x0c50: 652d 646f 632f 6d61 6e75 616c 2f22 3e41 + 0x0c60: 7061 6368 6520 646f 6375 6d65 6e74 6174 + 0x0c70: 696f 6e3c 2f41 3e20 7374 6f72 6564 206f + 0x0c80: 6e20 796f 7572 2073 6572 7665 722e 3c2f + 0x0c90: 4c49 3e0a 0a3c 4c49 3e0a 5468 6520 3c41 + 0x0ca0: 2048 5245 463d 2268 7474 703a 2f2f 7777 + 0x0cb0: 772e 6170 6163 6865 2e6f 7267 2f22 3e41 + 0x0cc0: 7061 6368 6520 5072 6f6a 6563 743c 2f41 + 0x0cd0: 3e20 686f 6d65 2073 6974 652e 3c2f 4c49 + 0x0ce0: 3e0a 0a3c 4c49 3e0a 5468 6520 3c41 2048 + 0x0cf0: 5245 463d 2268 7474 703a 2f2f 7777 772e + 0x0d00: 6170 6163 6865 2d73 736c 2e6f 7267 2f22 + 0x0d10: 3e41 7061 6368 652d 5353 4c3c 2f41 3e20 + 0x0d20: 686f 6d65 2073 6974 652e 3c2f 4c49 3e0a + 0x0d30: 0a3c 4c49 3e0a 5468 6520 3c41 2048 5245 + 0x0d40: 463d 2268 7474 703a 2f2f 7065 726c 2e61 + 0x0d50: 7061 6368 652e 6f72 672f 223e 6d6f 6420 + 0x0d60: 7065 726c 3c2f 413e 2068 6f6d 6520 7369 + 0x0d70: 7465 2e3c 2f4c 493e 0a0a 3c4c 493e 0a54 + 0x0d80: 6865 203c 4120 4852 4546 3d22 6874 7470 + 0x0d90: 3a2f 2f77 7777 2e61 7061 6368 6577 6565 + 0x0da0: 6b2e 636f 6d2f 223e 4170 6163 6865 5765 + 0x0db0: 656b 3c2f 413e 206e 6577 736c 6574 7465 + 0x0dc0: 722e 3c2f 4c49 3e0a 0a3c 4c49 3e0a 5468 + 0x0dd0: 6520 3c41 2048 5245 463d 2268 7474 703a + 0x0de0: 2f2f 7777 772e 6465 6269 616e 2e6f 7267 + 0x0df0: 2f64 6f63 2f22 3e44 6562 6961 6e20 5072 + 0x0e00: 6f6a 6563 740a 446f 6375 6d65 6e74 6174 + 0x0e10: 696f 6e3c 2f41 3e20 7768 6963 6820 636f + 0x0e20: 6e74 6169 6e73 2048 4f57 544f 732c 2046 + 0x0e30: 4151 732c 2061 6e64 2073 6f66 7477 6172 + 0x0e40: 6520 7570 6461 7465 732e 3c2f 4c49 3e0a + 0x0e50: 3c2f 554c 3e0a 0a3c 503e 596f 7520 6361 + 0x0e60: 6e20 616c 736f 2063 6f6e 7375 6c74 2074 + 0x0e70: 6865 206c 6973 7420 6f66 203c 4120 4852 + 0x0e80: 4546 3d22 6874 7470 3a2f 2f77 7777 2e62 + 0x0e90: 6f75 7465 6c6c 2e63 6f6d 2f66 6171 2f22 + 0x0ea0: 3e57 6f72 6c64 0a57 6964 6520 5765 6220 + 0x0eb0: 4672 6571 7565 6e74 6c79 2041 736b 6564 + 0x0ec0: 2051 7565 7374 696f 6e73 3c2f 413e 2066 + 0x0ed0: 6f72 2069 6e66 6f72 6d61 7469 6f6e 2e0a + 0x0ee0: 0a3c 4832 3e4c 6574 206f 7468 6572 2070 + 0x0ef0: 656f 706c 6520 6b6e 6f77 2061 626f 7574 + 0x0f00: 2074 6869 7320 7365 7276 6572 3c2f 4832 + 0x0f10: 3e0a 0a3c 4120 4852 4546 3d22 6874 7470 + 0x0f20: 3a2f 2f6e 6574 6372 6166 742e 636f 6d2f + 0x0f30: 223e 4e65 7463 7261 6674 3c2f 413e 2070 + 0x0f40: 726f 7669 6465 7320 616e 2069 6e74 6572 + 0x0f50: 6573 7469 6e67 2066 7265 650a 7365 7276 + 0x0f60: 6963 6520 666f 7220 7765 6220 7369 7465 + 0x0f70: 206d 6f6e 6974 6f72 696e 6720 616e 6420 + 0x0f80: 7374 6174 6973 7469 6320 636f 6c6c 6563 + 0x0f90: 7469 6f6e 2e0a 596f 7520 6361 6e20 6c65 + 0x0fa0: 7420 7468 656d 206b 6e6f 7720 6162 6f75 + 0x0fb0: 7420 796f 7572 2073 6572 7665 7220 7573 + 0x0fc0: 696e 6720 7468 6569 720a 3c41 2048 5245 + 0x0fd0: 463d 2268 7474 703a 2f2f 7570 7469 6d65 + 0x0fe0: 2e6e 6574 6372 6166 742e 636f 6d2f 223e + 0x0ff0: 696e 7465 7266 6163 653c 2f41 3e2e 0a45 + 0x1000: 6e61 626c 696e 6720 7468 6520 6d6f 6e69 + 0x1010: 746f 7269 6e67 206f 6620 796f 7572 2073 + 0x1020: 6572 7665 7220 7769 6c6c 2070 726f 7669 + 0x1030: 6465 2061 2062 6574 7465 7220 676c 6f62 + 0x1040: 616c 206f 7665 7276 6965 770a 6f66 2077 + 0x1050: 686f 2069 7320 7573 696e 6720 7768 6174 + 0x1060: 2061 6e64 2077 6865 7265 2c20 616e 6420 + 0x1070: 6974 2077 6f75 6c64 2067 6976 6520 4465 + 0x1080: 6269 616e 2061 2062 6574 7465 720a 6f76 + 0x1090: 6572 7669 6577 206f 6620 7468 6520 6170 + 0x10a0: 6163 6865 2070 6163 6b61 6765 2075 7361 + 0x10b0: 6765 2e0a 0a3c 4832 3e41 626f 7574 2074 + 0x10c0: 6869 7320 7061 6765 3c2f 4832 3e0a 0a3c + 0x10d0: 494d 4720 414c 4947 4e3d 2272 6967 6874 + 0x10e0: 2220 414c 543d 2222 2048 4549 4748 543d + 0x10f0: 2232 3437 2220 5749 4454 483d 2232 3738 + 0x1100: 2220 5352 433d 2269 636f 6e73 2f6a 6865 + 0x1110: 3036 312e 706e 6722 3e0a 0a3c 503e 5468 + 0x1120: 6973 2069 7320 6120 706c 6163 6568 6f6c + 0x1130: 6465 7220 7061 6765 2069 6e73 7461 6c6c + 0x1140: 6564 2062 7920 7468 6520 3c41 0a48 5245 + 0x1150: 463d 2268 7474 703a 2f2f 7777 772e 6465 + 0x1160: 6269 616e 2e6f 7267 2f22 3e44 6562 6961 + 0x1170: 6e3c 2f41 3e0a 7265 6c65 6173 6520 6f66 + 0x1180: 2074 6865 2061 7061 6368 6520 5765 6220 + 0x1190: 7365 7276 6572 2070 6163 6b61 6765 2e0a + 0x11a0: 0a3c 503e 5468 6973 2063 6f6d 7075 7465 + 0x11b0: 7220 6861 7320 696e 7374 616c 6c65 6420 + 0x11c0: 7468 6520 4465 6269 616e 2047 4e55 2f4c + 0x11d0: 696e 7578 206f 7065 7261 7469 6e67 2073 + 0x11e0: 7973 7465 6d2c 0a62 7574 2069 7420 6861 + 0x11f0: 7320 3c73 7472 6f6e 673e 6e6f 7468 696e + 0x1200: 6720 746f 2064 6f20 7769 7468 2074 6865 + 0x1210: 2044 6562 6961 6e0a 5072 6f6a 6563 743c + 0x1220: 2f73 7472 6f6e 673e 2e20 506c 6561 7365 + 0x1230: 2064 6f20 3c73 7472 6f6e 673e 6e6f 743c + 0x1240: 2f73 7472 6f6e 673e 2063 6f6e 7461 6374 + 0x1250: 2074 6865 2044 6562 6961 6e0a 5072 6f6a + 0x1260: 6563 7420 6162 6f75 7420 6974 2e3c 2f50 + 0x1270: 3e0a 0a3c 503e 4966 2079 6f75 2066 696e + 0x1280: 6420 6120 6275 6720 696e 2074 6869 7320 + 0x1290: 6170 6163 6865 2070 6163 6b61 6765 2c20 + 0x12a0: 6f72 2069 6e20 4170 6163 6865 2069 7473 + 0x12b0: 656c 662c 0a70 6c65 6173 6520 6669 6c65 + 0x12c0: 2061 2062 7567 2072 6570 6f72 7420 6f6e + 0x12d0: 2069 742e 2020 496e 7374 7275 6374 696f + 0x12e0: 6e73 206f 6e20 646f 696e 6720 7468 6973 + 0x12f0: 2c20 616e 6420 7468 650a 6c69 7374 206f + 0x1300: 6620 3c41 2048 5245 463d 2268 7474 703a + 0x1310: 2f2f 6275 6773 2e64 6562 6961 6e2e 6f72 + 0x1320: 672f 7372 633a 6170 6163 6865 223e 6b6e + 0x1330: 6f77 6e20 6275 6773 3c2f 413e 206f 6620 + 0x1340: 7468 6973 0a70 6163 6b61 6765 2c20 6361 + 0x1350: 6e20 6265 2066 6f75 6e64 2069 6e20 7468 + 0x1360: 6520 0a3c 4120 4852 4546 3d22 6874 7470 + 0x1370: 3a2f 2f77 7777 2e64 6562 6961 6e2e 6f72 + 0x1380: 672f 4275 6773 2f52 6570 6f72 7469 6e67 + 0x1390: 223e 4465 6269 616e 2042 7567 2054 7261 + 0x13a0: 636b 696e 6720 5379 7374 656d 3c2f 413e + 0x13b0: 2e0a 0a3c 503e 5468 616e 6b73 2066 6f72 + 0x13c0: 2075 7369 6e67 2074 6869 7320 7061 636b + 0x13d0: 6167 652c 2061 6e64 2063 6f6e 6772 6174 + 0x13e0: 756c 6174 696f 6e73 2066 6f72 2079 6f75 + 0x13f0: 7220 6368 6f69 6365 206f 660a 6120 4465 + 0x1400: 6269 616e 2073 7973 7465 6d21 3c2f 503e + 0x1410: 0a0a 3c44 4956 2061 6c69 676e 3d22 6365 + 0x1420: 6e74 6572 223e 0a3c 6120 6872 6566 3d22 + 0x1430: 6874 7470 3a2f 2f77 7777 2e64 6562 6961 + 0x1440: 6e2e 6f72 672f 223e 0a3c 494d 4720 616c + 0x1450: 6967 6e3d 226d 6964 646c 6522 2068 6569 + 0x1460: 6768 743d 2233 3022 2077 6964 7468 3d22 + 0x1470: 3235 2220 7372 633d 2269 636f 6e73 2f64 + 0x1480: 6562 6961 6e2f 6f70 656e 6c6f 676f 2d32 + 0x1490: 352e 6a70 6722 2061 6c74 3d22 4465 6269 + 0x14a0: 616e 223e 0a3c 2f61 3e0a 3c61 2068 7265 + 0x14b0: 663d 2268 7474 703a 2f2f 7777 772e 6170 + 0x14c0: 6163 6865 2e6f 7267 2f22 3e0a 3c49 4d47 + 0x14d0: 2061 6c69 676e 3d22 6d69 6464 6c65 2220 + 0x14e0: 6865 6967 6874 3d22 3332 2220 7769 6474 + 0x14f0: 683d 2232 3539 2220 7372 633d 2269 636f + 0x1500: 6e73 2f61 7061 6368 655f 7062 2e70 6e67 + 0x1510: 2220 616c 743d 2241 7061 6368 6522 3e0a + 0x1520: 3c2f 613e 0a3c 2f44 4956 3e0a 0a3c 212d + 0x1530: 2d0a 2020 5468 6973 2070 6167 6520 7761 + 0x1540: 7320 696e 6974 6961 6c6c 7920 6372 6561 + 0x1550: 7465 6420 6279 204a 6f68 6e69 6520 496e + 0x1560: 6772 616d 2028 6874 7470 3a2f 2f6e 6574 + 0x1570: 676f 642e 6e65 742f 290a 2020 4974 2077 + 0x1580: 6173 206c 6174 6572 2065 6469 7465 6420 + 0x1590: 6279 204d 6174 7468 6577 2057 696c 636f + 0x15a0: 7820 616e 6420 4a6f 7369 7020 526f 6469 + 0x15b0: 6e2e 0a20 204c 6173 7420 6d6f 6469 6669 + 0x15c0: 6564 3a20 2444 6174 653a 2032 3030 342f + 0x15d0: 3036 2f32 3020 3135 3a33 333a 3537 2024 + 0x15e0: 2e0a 2020 2d2d 3e0a 0a3c 2f42 4f44 593e + 0x15f0: 0a3c 2f48 544d 4c3e 0a +IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [.], ack 5560, win 12383, options [nop,nop,TS val 1306300953 ecr 1306300953], length 0 + 0x0000: 0000 0000 0000 0000 0000 0000 0800 4500 + 0x0010: 0034 1b6e 4000 4006 2154 7f00 0001 7f00 + 0x0020: 0001 da70 0050 3758 8a49 377a a3a9 8010 + 0x0030: 305f 10ea 0000 0101 080a 4ddc 9219 4ddc + 0x0040: 9219 +IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [F.], seq 203, ack 5560, win 12383, options [nop,nop,TS val 1306302241 ecr 1306300953], length 0 + 0x0000: 0000 0000 0000 0000 0000 0000 0800 4500 + 0x0010: 0034 1b70 4000 4006 2152 7f00 0001 7f00 + 0x0020: 0001 da70 0050 3758 8a49 377a a3a9 8011 + 0x0030: 305f 0be1 0000 0101 080a 4ddc 9721 4ddc + 0x0040: 9219 +IP 127.0.0.1.80 > 127.0.0.1.55920: Flags [F.], seq 5560, ack 204, win 8192, options [nop,nop,TS val 1306302243 ecr 1306302241], length 0 + 0x0000: 0000 0000 0000 0000 0000 0000 0800 4500 + 0x0010: 0034 1fe8 4000 4006 1cda 7f00 0001 7f00 + 0x0020: 0001 0050 da70 377a a3a9 3758 8a4a 8011 + 0x0030: 2000 1735 0000 0101 080a 4ddc 9723 4ddc + 0x0040: 9721 +IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [.], ack 5561, win 12383, options [nop,nop,TS val 1306302243 ecr 1306302243], length 0 + 0x0000: 0000 0000 0000 0000 0000 0000 0800 4500 + 0x0010: 0034 1b72 4000 4006 2150 7f00 0001 7f00 + 0x0020: 0001 da70 0050 3758 8a4a 377a a3aa 8010 + 0x0030: 305f 06d4 0000 0101 080a 4ddc 9723 4ddc + 0x0040: 9723 diff --git a/src/tests/radius-port1700-v.out b/src/tests/radius-port1700-v.out new file mode 100644 index 0000000..389c763 --- /dev/null +++ b/src/tests/radius-port1700-v.out @@ -0,0 +1,4 @@ +IP (tos 0x0, ttl 64, id 44978, offset 0, flags [none], proto UDP (17), length 53) + 127.0.0.1.42172 > 127.0.0.1.1700: RADIUS, length: 25 + CoA-Request (43), id: 0xa6, Authenticator: 7fbf02c6662b5990838a5e6e331b3ff0 + User-Name Attribute (1), length: 5, Value: bob diff --git a/src/tests/radius-rfc4675-v.out b/src/tests/radius-rfc4675-v.out new file mode 100644 index 0000000..c1cea56 --- /dev/null +++ b/src/tests/radius-rfc4675-v.out @@ -0,0 +1,43 @@ +IP (tos 0x0, ttl 64, id 20820, offset 0, flags [none], proto UDP (17), length 108) + 127.0.0.1.53334 > 127.0.0.1.1812: RADIUS, length: 80 + Access-Request (1), id: 0x46, Authenticator: f44757bc498c3393763a27d0b2393702 + User-Name Attribute (1), length: 12, Value: bob-tagged + User-Password Attribute (2), length: 18, Value: + NAS-IP-Address Attribute (4), length: 6, Value: 127.0.0.1 + NAS-Port Attribute (5), length: 6, Value: 1 + Message-Authenticator Attribute (80), length: 18, Value: .....b..7-....b. +IP (tos 0x0, ttl 64, id 20821, offset 0, flags [none], proto UDP (17), length 81) + 127.0.0.1.1812 > 127.0.0.1.53334: RADIUS, length: 53 + Access-Accept (2), id: 0x46, Authenticator: 766a0314eaf4b95f1ec271ae19cb3bdc + Egress-VLANID Attribute (56), length: 6, Value: Tagged (0x31) 123 + Ingress-Filters Attribute (57), length: 6, Value: Enabled + Egress-VLAN-Name Attribute (58), length: 11, Value: Tagged (0x31) vlanname + User-Priority-Table Attribute (59), length: 10, Value: +IP (tos 0x0, ttl 64, id 21127, offset 0, flags [none], proto UDP (17), length 110) + 127.0.0.1.46281 > 127.0.0.1.1812: RADIUS, length: 82 + Access-Request (1), id: 0xb5, Authenticator: 11851d8b1b483f54a864b703ea21f4dc + User-Name Attribute (1), length: 14, Value: bob-untagged + User-Password Attribute (2), length: 18, Value: + NAS-IP-Address Attribute (4), length: 6, Value: 127.0.0.1 + NAS-Port Attribute (5), length: 6, Value: 1 + Message-Authenticator Attribute (80), length: 18, Value: ..o..}f..d.;..R[ +IP (tos 0x0, ttl 64, id 21128, offset 0, flags [none], proto UDP (17), length 71) + 127.0.0.1.1812 > 127.0.0.1.46281: RADIUS, length: 43 + Access-Accept (2), id: 0xb5, Authenticator: e223a663823b20ccc18bcf90c3ecbe27 + Egress-VLANID Attribute (56), length: 6, Value: Untagged (0x32) 123 + Ingress-Filters Attribute (57), length: 6, Value: Disabled + Egress-VLAN-Name Attribute (58), length: 11, Value: Untagged (0x32) vlanname +IP (tos 0x0, ttl 64, id 21190, offset 0, flags [none], proto UDP (17), length 109) + 127.0.0.1.39300 > 127.0.0.1.1812: RADIUS, length: 81 + Access-Request (1), id: 0x5a, Authenticator: 8dd685f50f837e8ad29e9cc095261172 + User-Name Attribute (1), length: 13, Value: bob-invalid + User-Password Attribute (2), length: 18, Value: + NAS-IP-Address Attribute (4), length: 6, Value: 127.0.0.1 + NAS-Port Attribute (5), length: 6, Value: 1 + Message-Authenticator Attribute (80), length: 18, Value: ....(..^A.f..... +IP (tos 0x0, ttl 64, id 21191, offset 0, flags [none], proto UDP (17), length 71) + 127.0.0.1.1812 > 127.0.0.1.39300: RADIUS, length: 43 + Access-Accept (2), id: 0x5a, Authenticator: fbaa7d05d009953514d00697da4d1dfc + Egress-VLANID Attribute (56), length: 6, Value: Unknown tag (0x33) 123 + Ingress-Filters Attribute (57), length: 6, Value: #3 + Egress-VLAN-Name Attribute (58), length: 11, Value: Unknown tag (0x33) vlanname diff --git a/src/tests/radius-rfc5176-v.out b/src/tests/radius-rfc5176-v.out new file mode 100644 index 0000000..aa3210d --- /dev/null +++ b/src/tests/radius-rfc5176-v.out @@ -0,0 +1,24 @@ +IP (tos 0x0, ttl 4, id 29161, offset 0, flags [none], proto UDP (17), length 66) + 10.0.0.10.12345 > 10.0.0.1.3799: RADIUS, length: 38 + Disconnect-Request (40), id: 0x01, Authenticator: e1792d2b4ab349f1a4c0fcc733d091c1 + Message-Authenticator Attribute (80), length: 18, Value: XQ=f(G..sJ0..... +IP (tos 0x0, ttl 4, id 18682, offset 0, flags [none], proto UDP (17), length 66) + 10.0.0.1.3799 > 10.0.0.10.12345: RADIUS, length: 38 + Disconnect-ACK (41), id: 0x02, Authenticator: 3bc9c343f689990756b96c583a56890a + Message-Authenticator Attribute (80), length: 18, Value: .O........iC,'}. +IP (tos 0x0, ttl 4, id 22542, offset 0, flags [none], proto UDP (17), length 66) + 10.0.0.1.3799 > 10.0.0.10.12345: RADIUS, length: 38 + Disconnect-NAK (42), id: 0x03, Authenticator: d867c308c9c43112b3a669a0e8c0ab8c + Message-Authenticator Attribute (80), length: 18, Value: ...p.I...(.".... +IP (tos 0x0, ttl 4, id 16413, offset 0, flags [none], proto UDP (17), length 66) + 10.0.0.10.12345 > 10.0.0.1.3799: RADIUS, length: 38 + CoA-Request (43), id: 0x04, Authenticator: 5f18309be67cd6150fe4c3a0b93536c9 + Message-Authenticator Attribute (80), length: 18, Value: '..6|.F..._...[. +IP (tos 0x0, ttl 4, id 170, offset 0, flags [none], proto UDP (17), length 66) + 10.0.0.1.3799 > 10.0.0.10.12345: RADIUS, length: 38 + CoA-ACK (44), id: 0x05, Authenticator: 55ab6cb78aa161d692753fa9130c5019 + Message-Authenticator Attribute (80), length: 18, Value: .........+.x...s +IP (tos 0x0, ttl 4, id 29645, offset 0, flags [none], proto UDP (17), length 66) + 10.0.0.1.3799 > 10.0.0.10.12345: RADIUS, length: 38 + CoA-NAK (45), id: 0x06, Authenticator: 40f21bdee27a87a5d757a30bfed62f28 + Message-Authenticator Attribute (80), length: 18, Value: .%y.....x...&j.. diff --git a/src/tests/radius-v.out b/src/tests/radius-v.out new file mode 100644 index 0000000..6aae418 --- /dev/null +++ b/src/tests/radius-v.out @@ -0,0 +1,47 @@ +IP (tos 0x0, ttl 255, id 70, offset 0, flags [none], proto UDP (17), length 167) + 10.0.0.1.1645 > 10.0.0.100.1812: RADIUS, length: 139 + Access-Request (1), id: 0x05, Authenticator: ecfe3d2fe4473ec6299095ee46aedf77 + NAS-IP-Address Attribute (4), length: 6, Value: 10.0.0.1 + NAS-Port Attribute (5), length: 6, Value: 50012 + NAS-Port-Type Attribute (61), length: 6, Value: Ethernet + User-Name Attribute (1), length: 14, Value: John.McGuirk + Called-Station-Id Attribute (30), length: 19, Value: 00-19-06-EA-B8-8C + Calling-Station-Id Attribute (31), length: 19, Value: 00-14-22-E9-54-5E + Service-Type Attribute (6), length: 6, Value: Framed + Framed-MTU Attribute (12), length: 6, Value: 1500 + EAP-Message Attribute (79), length: 19, Value: . + Message-Authenticator Attribute (80), length: 18, Value: (....$..p.Q1o.x. +IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto UDP (17), length 137) + 10.0.0.100.1812 > 10.0.0.1.1645: RADIUS, length: 109 + Access-Challenge (11), id: 0x05, Authenticator: f050649184625d36f14c9075b7a48b83 + Framed-IP-Address Attribute (8), length: 6, Value: NAS Select + Framed-MTU Attribute (12), length: 6, Value: 576 + Service-Type Attribute (6), length: 6, Value: Framed + Reply-Message Attribute (18), length: 11, Value: Hello, %u + EAP-Message Attribute (79), length: 24, Value: .. + Message-Authenticator Attribute (80), length: 18, Value: ...<.(.X.13..t4. + State Attribute (24), length: 18, Value: ..../.0$.s..1..w +IP (tos 0x0, ttl 255, id 71, offset 0, flags [none], proto UDP (17), length 202) + 10.0.0.1.1645 > 10.0.0.100.1812: RADIUS, length: 174 + Access-Request (1), id: 0x06, Authenticator: 6a6f38e6dae830304d2333e5d5364643 + NAS-IP-Address Attribute (4), length: 6, Value: 10.0.0.1 + NAS-Port Attribute (5), length: 6, Value: 50012 + NAS-Port-Type Attribute (61), length: 6, Value: Ethernet + User-Name Attribute (1), length: 14, Value: John.McGuirk + Called-Station-Id Attribute (30), length: 19, Value: 00-19-06-EA-B8-8C + Calling-Station-Id Attribute (31), length: 19, Value: 00-14-22-E9-54-5E + Service-Type Attribute (6), length: 6, Value: Framed + Framed-MTU Attribute (12), length: 6, Value: 1500 + State Attribute (24), length: 18, Value: ..../.0$.s..1..w + EAP-Message Attribute (79), length: 36, Value: .. + Message-Authenticator Attribute (80), length: 18, Value: '&.q1.....Ojb..8 +IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto UDP (17), length 125) + 10.0.0.100.1812 > 10.0.0.1.1645: RADIUS, length: 97 + Access-Accept (2), id: 0x06, Authenticator: fbba6a784c7decb314caf0f27944a37b + Framed-IP-Address Attribute (8), length: 6, Value: NAS Select + Framed-MTU Attribute (12), length: 6, Value: 576 + Service-Type Attribute (6), length: 6, Value: Framed + Reply-Message Attribute (18), length: 21, Value: Hello, John.McGuirk + EAP-Message Attribute (79), length: 6, Value: .. + Message-Authenticator Attribute (80), length: 18, Value: ...b...2.^..NLc` + User-Name Attribute (1), length: 14, Value: John.McGuirk diff --git a/src/tests/resp_1.out b/src/tests/resp_1.out new file mode 100644 index 0000000..88c9140 --- /dev/null +++ b/src/tests/resp_1.out @@ -0,0 +1,150 @@ +IP 127.0.0.1.35901 > 127.0.0.1.6379: Flags [S], seq 1159918511, win 43690, options [mss 65495,sackOK,TS val 2004405846 ecr 0,nop,wscale 7], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.35901: Flags [S.], seq 1309831771, ack 1159918512, win 43690, options [mss 65495,sackOK,TS val 2004405846 ecr 2004405846,nop,wscale 7], length 0 +IP 127.0.0.1.35901 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 0 +IP 127.0.0.1.35901 > 127.0.0.1.6379: Flags [P.], seq 1:7, ack 1, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 6: RESP "PING" +IP 127.0.0.1.6379 > 127.0.0.1.35901: Flags [.], ack 7, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.35901: Flags [P.], seq 1:8, ack 7, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 7: RESP "PONG" +IP 127.0.0.1.35901 > 127.0.0.1.6379: Flags [.], ack 8, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 0 +IP 127.0.0.1.35901 > 127.0.0.1.6379: Flags [F.], seq 7, ack 8, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.35901: Flags [F.], seq 8, ack 8, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 0 +IP 127.0.0.1.35901 > 127.0.0.1.6379: Flags [.], ack 9, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 0 +IP 127.0.0.1.35902 > 127.0.0.1.6379: Flags [S], seq 3880036895, win 43690, options [mss 65495,sackOK,TS val 2004405846 ecr 0,nop,wscale 7], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.35902: Flags [S.], seq 95825237, ack 3880036896, win 43690, options [mss 65495,sackOK,TS val 2004405846 ecr 2004405846,nop,wscale 7], length 0 +IP 127.0.0.1.35902 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 0 +IP 127.0.0.1.35902 > 127.0.0.1.6379: Flags [P.], seq 1:15, ack 1, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 14: RESP "PING" +IP 127.0.0.1.6379 > 127.0.0.1.35902: Flags [.], ack 15, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.35902: Flags [P.], seq 1:8, ack 15, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 7: RESP "PONG" +IP 127.0.0.1.35902 > 127.0.0.1.6379: Flags [.], ack 8, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 0 +IP 127.0.0.1.35902 > 127.0.0.1.6379: Flags [F.], seq 15, ack 8, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.35902: Flags [F.], seq 8, ack 16, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 0 +IP 127.0.0.1.35902 > 127.0.0.1.6379: Flags [.], ack 9, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 0 +IP 127.0.0.1.35903 > 127.0.0.1.6379: Flags [S], seq 3040658582, win 43690, options [mss 65495,sackOK,TS val 2004405846 ecr 0,nop,wscale 7], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.35903: Flags [S.], seq 2458684268, ack 3040658583, win 43690, options [mss 65495,sackOK,TS val 2004405846 ecr 2004405846,nop,wscale 7], length 0 +IP 127.0.0.1.35903 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 0 +IP 127.0.0.1.35903 > 127.0.0.1.6379: Flags [P.], seq 1:46, ack 1, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 45: RESP "SET" "key:000000000943" "xxx" +IP 127.0.0.1.6379 > 127.0.0.1.35903: Flags [.], ack 46, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.35903: Flags [P.], seq 1:6, ack 46, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 5: RESP "OK" +IP 127.0.0.1.35903 > 127.0.0.1.6379: Flags [.], ack 6, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 0 +IP 127.0.0.1.35903 > 127.0.0.1.6379: Flags [F.], seq 46, ack 6, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.35903: Flags [F.], seq 6, ack 47, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 0 +IP 127.0.0.1.35903 > 127.0.0.1.6379: Flags [.], ack 7, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 0 +IP 127.0.0.1.35904 > 127.0.0.1.6379: Flags [S], seq 2555867980, win 43690, options [mss 65495,sackOK,TS val 2004405846 ecr 0,nop,wscale 7], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.35904: Flags [S.], seq 4291997072, ack 2555867981, win 43690, options [mss 65495,sackOK,TS val 2004405846 ecr 2004405846,nop,wscale 7], length 0 +IP 127.0.0.1.35904 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 0 +IP 127.0.0.1.35904 > 127.0.0.1.6379: Flags [P.], seq 1:37, ack 1, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 36: RESP "GET" "key:000000000199" +IP 127.0.0.1.6379 > 127.0.0.1.35904: Flags [.], ack 37, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.35904: Flags [P.], seq 1:10, ack 37, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 9: RESP "xxx" +IP 127.0.0.1.35904 > 127.0.0.1.6379: Flags [.], ack 10, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 0 +IP 127.0.0.1.35904 > 127.0.0.1.6379: Flags [F.], seq 37, ack 10, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.35904: Flags [F.], seq 10, ack 38, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 0 +IP 127.0.0.1.35904 > 127.0.0.1.6379: Flags [.], ack 11, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 0 +IP 127.0.0.1.35905 > 127.0.0.1.6379: Flags [S], seq 2342248419, win 43690, options [mss 65495,sackOK,TS val 2004405846 ecr 0,nop,wscale 7], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.35905: Flags [S.], seq 2490886259, ack 2342248420, win 43690, options [mss 65495,sackOK,TS val 2004405847 ecr 2004405846,nop,wscale 7], length 0 +IP 127.0.0.1.35905 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 +IP 127.0.0.1.35905 > 127.0.0.1.6379: Flags [P.], seq 1:42, ack 1, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 41: RESP "INCR" "counter:000000000293" +IP 127.0.0.1.6379 > 127.0.0.1.35905: Flags [.], ack 42, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.35905: Flags [P.], seq 1:5, ack 42, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 4: RESP "3" +IP 127.0.0.1.35905 > 127.0.0.1.6379: Flags [.], ack 5, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 +IP 127.0.0.1.35905 > 127.0.0.1.6379: Flags [F.], seq 42, ack 5, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.35905: Flags [F.], seq 5, ack 43, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 +IP 127.0.0.1.35905 > 127.0.0.1.6379: Flags [.], ack 6, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 +IP 127.0.0.1.35906 > 127.0.0.1.6379: Flags [S], seq 131158412, win 43690, options [mss 65495,sackOK,TS val 2004405847 ecr 0,nop,wscale 7], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.35906: Flags [S.], seq 49781958, ack 131158413, win 43690, options [mss 65495,sackOK,TS val 2004405847 ecr 2004405847,nop,wscale 7], length 0 +IP 127.0.0.1.35906 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 +IP 127.0.0.1.35906 > 127.0.0.1.6379: Flags [P.], seq 1:37, ack 1, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 36: RESP "LPUSH" "mylist" "xxx" +IP 127.0.0.1.6379 > 127.0.0.1.35906: Flags [.], ack 37, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.35906: Flags [P.], seq 1:9, ack 37, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 8: RESP "47158" +IP 127.0.0.1.35906 > 127.0.0.1.6379: Flags [.], ack 9, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 +IP 127.0.0.1.35906 > 127.0.0.1.6379: Flags [F.], seq 37, ack 9, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.35906: Flags [F.], seq 9, ack 38, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 +IP 127.0.0.1.35906 > 127.0.0.1.6379: Flags [.], ack 10, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 +IP 127.0.0.1.35907 > 127.0.0.1.6379: Flags [S], seq 1454742392, win 43690, options [mss 65495,sackOK,TS val 2004405847 ecr 0,nop,wscale 7], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.35907: Flags [S.], seq 4166501195, ack 1454742393, win 43690, options [mss 65495,sackOK,TS val 2004405847 ecr 2004405847,nop,wscale 7], length 0 +IP 127.0.0.1.35907 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 +IP 127.0.0.1.35907 > 127.0.0.1.6379: Flags [P.], seq 1:27, ack 1, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 26: RESP "LPOP" "mylist" +IP 127.0.0.1.6379 > 127.0.0.1.35907: Flags [.], ack 27, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.35907: Flags [P.], seq 1:10, ack 27, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 9: RESP "xxx" +IP 127.0.0.1.35907 > 127.0.0.1.6379: Flags [.], ack 10, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 +IP 127.0.0.1.35907 > 127.0.0.1.6379: Flags [F.], seq 27, ack 10, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.35907: Flags [F.], seq 10, ack 28, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 +IP 127.0.0.1.35907 > 127.0.0.1.6379: Flags [.], ack 11, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 +IP 127.0.0.1.35908 > 127.0.0.1.6379: Flags [S], seq 545589487, win 43690, options [mss 65495,sackOK,TS val 2004405847 ecr 0,nop,wscale 7], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.35908: Flags [S.], seq 2823817844, ack 545589488, win 43690, options [mss 65495,sackOK,TS val 2004405847 ecr 2004405847,nop,wscale 7], length 0 +IP 127.0.0.1.35908 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 +IP 127.0.0.1.35908 > 127.0.0.1.6379: Flags [P.], seq 1:53, ack 1, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 52: RESP "SADD" "myset" "element:000000000063" +IP 127.0.0.1.6379 > 127.0.0.1.35908: Flags [.], ack 53, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.35908: Flags [P.], seq 1:5, ack 53, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 4: RESP "1" +IP 127.0.0.1.35908 > 127.0.0.1.6379: Flags [.], ack 5, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 +IP 127.0.0.1.35908 > 127.0.0.1.6379: Flags [F.], seq 53, ack 5, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.35908: Flags [F.], seq 5, ack 54, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 +IP 127.0.0.1.35908 > 127.0.0.1.6379: Flags [.], ack 6, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 +IP 127.0.0.1.35909 > 127.0.0.1.6379: Flags [S], seq 296698850, win 43690, options [mss 65495,sackOK,TS val 2004405847 ecr 0,nop,wscale 7], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.35909: Flags [S.], seq 3970806453, ack 296698851, win 43690, options [mss 65495,sackOK,TS val 2004405847 ecr 2004405847,nop,wscale 7], length 0 +IP 127.0.0.1.35909 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 +IP 127.0.0.1.35909 > 127.0.0.1.6379: Flags [P.], seq 1:26, ack 1, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 25: RESP "SPOP" "myset" +IP 127.0.0.1.6379 > 127.0.0.1.35909: Flags [.], ack 26, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.35909: Flags [P.], seq 1:28, ack 26, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 27: RESP "element:000000000063" +IP 127.0.0.1.35909 > 127.0.0.1.6379: Flags [.], ack 28, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 +IP 127.0.0.1.35909 > 127.0.0.1.6379: Flags [F.], seq 26, ack 28, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.35909: Flags [F.], seq 28, ack 27, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 +IP 127.0.0.1.35909 > 127.0.0.1.6379: Flags [.], ack 29, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 +IP 127.0.0.1.35910 > 127.0.0.1.6379: Flags [S], seq 2082555059, win 43690, options [mss 65495,sackOK,TS val 2004405847 ecr 0,nop,wscale 7], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.35910: Flags [S.], seq 1762470779, ack 2082555060, win 43690, options [mss 65495,sackOK,TS val 2004405847 ecr 2004405847,nop,wscale 7], length 0 +IP 127.0.0.1.35910 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 +IP 127.0.0.1.35910 > 127.0.0.1.6379: Flags [P.], seq 1:37, ack 1, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 36: RESP "LPUSH" "mylist" "xxx" +IP 127.0.0.1.6379 > 127.0.0.1.35910: Flags [.], ack 37, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.35910: Flags [P.], seq 1:9, ack 37, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 8: RESP "47158" +IP 127.0.0.1.35910 > 127.0.0.1.6379: Flags [.], ack 9, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 +IP 127.0.0.1.35910 > 127.0.0.1.6379: Flags [F.], seq 37, ack 9, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.35910: Flags [F.], seq 9, ack 38, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 +IP 127.0.0.1.35910 > 127.0.0.1.6379: Flags [.], ack 10, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 +IP 127.0.0.1.35911 > 127.0.0.1.6379: Flags [S], seq 823555559, win 43690, options [mss 65495,sackOK,TS val 2004405847 ecr 0,nop,wscale 7], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.35911: Flags [S.], seq 1343119127, ack 823555560, win 43690, options [mss 65495,sackOK,TS val 2004405847 ecr 2004405847,nop,wscale 7], length 0 +IP 127.0.0.1.35911 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 +IP 127.0.0.1.35911 > 127.0.0.1.6379: Flags [P.], seq 1:44, ack 1, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 43: RESP "LRANGE" "mylist" "0" "99" +IP 127.0.0.1.6379 > 127.0.0.1.35911: Flags [.], ack 44, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.35911: Flags [P.], seq 1:907, ack 44, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 906: RESP "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" +IP 127.0.0.1.35911 > 127.0.0.1.6379: Flags [.], ack 907, win 356, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 +IP 127.0.0.1.35911 > 127.0.0.1.6379: Flags [F.], seq 44, ack 907, win 356, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.35911: Flags [F.], seq 907, ack 45, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 +IP 127.0.0.1.35911 > 127.0.0.1.6379: Flags [.], ack 908, win 356, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 +IP 127.0.0.1.35912 > 127.0.0.1.6379: Flags [S], seq 2379661641, win 43690, options [mss 65495,sackOK,TS val 2004405847 ecr 0,nop,wscale 7], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.35912: Flags [S.], seq 1832740480, ack 2379661642, win 43690, options [mss 65495,sackOK,TS val 2004405847 ecr 2004405847,nop,wscale 7], length 0 +IP 127.0.0.1.35912 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 +IP 127.0.0.1.35912 > 127.0.0.1.6379: Flags [P.], seq 1:45, ack 1, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 44: RESP "LRANGE" "mylist" "0" "299" +IP 127.0.0.1.6379 > 127.0.0.1.35912: Flags [.], ack 45, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.35912: Flags [P.], seq 1:2707, ack 45, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 2706: RESP "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" +IP 127.0.0.1.35912 > 127.0.0.1.6379: Flags [.], ack 2707, win 1365, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 +IP 127.0.0.1.35912 > 127.0.0.1.6379: Flags [F.], seq 45, ack 2707, win 1365, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.35912: Flags [F.], seq 2707, ack 46, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 +IP 127.0.0.1.35912 > 127.0.0.1.6379: Flags [.], ack 2708, win 1365, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 +IP 127.0.0.1.35913 > 127.0.0.1.6379: Flags [S], seq 1669304377, win 43690, options [mss 65495,sackOK,TS val 2004405847 ecr 0,nop,wscale 7], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.35913: Flags [S.], seq 1910612537, ack 1669304378, win 43690, options [mss 65495,sackOK,TS val 2004405847 ecr 2004405847,nop,wscale 7], length 0 +IP 127.0.0.1.35913 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 +IP 127.0.0.1.35913 > 127.0.0.1.6379: Flags [P.], seq 1:45, ack 1, win 342, options [nop,nop,TS val 2004405848 ecr 2004405847], length 44: RESP "LRANGE" "mylist" "0" "449" +IP 127.0.0.1.6379 > 127.0.0.1.35913: Flags [.], ack 45, win 342, options [nop,nop,TS val 2004405848 ecr 2004405848], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.35913: Flags [P.], seq 1:4057, ack 45, win 342, options [nop,nop,TS val 2004405848 ecr 2004405848], length 4056: RESP "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" +IP 127.0.0.1.35913 > 127.0.0.1.6379: Flags [.], ack 4057, win 1365, options [nop,nop,TS val 2004405848 ecr 2004405848], length 0 +IP 127.0.0.1.35913 > 127.0.0.1.6379: Flags [F.], seq 45, ack 4057, win 1365, options [nop,nop,TS val 2004405848 ecr 2004405848], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.35913: Flags [F.], seq 4057, ack 46, win 342, options [nop,nop,TS val 2004405848 ecr 2004405848], length 0 +IP 127.0.0.1.35913 > 127.0.0.1.6379: Flags [.], ack 4058, win 1365, options [nop,nop,TS val 2004405848 ecr 2004405848], length 0 +IP 127.0.0.1.35914 > 127.0.0.1.6379: Flags [S], seq 1695153288, win 43690, options [mss 65495,sackOK,TS val 2004405848 ecr 0,nop,wscale 7], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.35914: Flags [S.], seq 488402032, ack 1695153289, win 43690, options [mss 65495,sackOK,TS val 2004405848 ecr 2004405848,nop,wscale 7], length 0 +IP 127.0.0.1.35914 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 2004405848 ecr 2004405848], length 0 +IP 127.0.0.1.35914 > 127.0.0.1.6379: Flags [P.], seq 1:45, ack 1, win 342, options [nop,nop,TS val 2004405848 ecr 2004405848], length 44: RESP "LRANGE" "mylist" "0" "599" +IP 127.0.0.1.6379 > 127.0.0.1.35914: Flags [.], ack 45, win 342, options [nop,nop,TS val 2004405848 ecr 2004405848], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.35914: Flags [P.], seq 1:5407, ack 45, win 342, options [nop,nop,TS val 2004405848 ecr 2004405848], length 5406: RESP "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" +IP 127.0.0.1.35914 > 127.0.0.1.6379: Flags [.], ack 5407, win 1365, options [nop,nop,TS val 2004405848 ecr 2004405848], length 0 +IP 127.0.0.1.35914 > 127.0.0.1.6379: Flags [F.], seq 45, ack 5407, win 1365, options [nop,nop,TS val 2004405848 ecr 2004405848], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.35914: Flags [F.], seq 5407, ack 46, win 342, options [nop,nop,TS val 2004405848 ecr 2004405848], length 0 +IP 127.0.0.1.35914 > 127.0.0.1.6379: Flags [.], ack 5408, win 1365, options [nop,nop,TS val 2004405848 ecr 2004405848], length 0 +IP 127.0.0.1.35915 > 127.0.0.1.6379: Flags [S], seq 3952529642, win 43690, options [mss 65495,sackOK,TS val 2004405848 ecr 0,nop,wscale 7], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.35915: Flags [S.], seq 2079771045, ack 3952529643, win 43690, options [mss 65495,sackOK,TS val 2004405848 ecr 2004405848,nop,wscale 7], length 0 +IP 127.0.0.1.35915 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 2004405848 ecr 2004405848], length 0 +IP 127.0.0.1.35915 > 127.0.0.1.6379: Flags [P.], seq 1:336, ack 1, win 342, options [nop,nop,TS val 2004405848 ecr 2004405848], length 335: RESP "MSET" "key:000000000525" "xxx" "key:000000000050" "xxx" "key:000000000416" "xxx" "key:000000000263" "xxx" "key:000000000941" "xxx" "key:000000000148" "xxx" "key:000000000739" "xxx" "key:000000000571" "xxx" "key:000000000974" "xxx" "key:000000000495" "xxx" +IP 127.0.0.1.6379 > 127.0.0.1.35915: Flags [.], ack 336, win 350, options [nop,nop,TS val 2004405848 ecr 2004405848], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.35915: Flags [P.], seq 1:6, ack 336, win 350, options [nop,nop,TS val 2004405848 ecr 2004405848], length 5: RESP "OK" +IP 127.0.0.1.35915 > 127.0.0.1.6379: Flags [.], ack 6, win 342, options [nop,nop,TS val 2004405848 ecr 2004405848], length 0 +IP 127.0.0.1.35915 > 127.0.0.1.6379: Flags [F.], seq 336, ack 6, win 342, options [nop,nop,TS val 2004405848 ecr 2004405848], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.35915: Flags [F.], seq 6, ack 337, win 350, options [nop,nop,TS val 2004405848 ecr 2004405848], length 0 +IP 127.0.0.1.35915 > 127.0.0.1.6379: Flags [.], ack 7, win 342, options [nop,nop,TS val 2004405848 ecr 2004405848], length 0 diff --git a/src/tests/resp_1_benchmark.pcap b/src/tests/resp_1_benchmark.pcap new file mode 100644 index 0000000..b746f1c Binary files /dev/null and b/src/tests/resp_1_benchmark.pcap differ diff --git a/src/tests/resp_2.out b/src/tests/resp_2.out new file mode 100644 index 0000000..37333d7 --- /dev/null +++ b/src/tests/resp_2.out @@ -0,0 +1,14 @@ +IP 127.0.0.1.35934 > 127.0.0.1.6379: Flags [S], seq 270581733, win 43690, options [mss 65495,sackOK,TS val 2004413385 ecr 0,nop,wscale 7], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.35934: Flags [S.], seq 3524975383, ack 270581734, win 43690, options [mss 65495,sackOK,TS val 2004413385 ecr 2004413385,nop,wscale 7], length 0 +IP 127.0.0.1.35934 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 2004413385 ecr 2004413385], length 0 +IP 127.0.0.1.35934 > 127.0.0.1.6379: Flags [P.], seq 1:13, ack 1, win 342, options [nop,nop,TS val 2004413683 ecr 2004413385], length 12: RESP "set test 1" +IP 127.0.0.1.6379 > 127.0.0.1.35934: Flags [.], ack 13, win 342, options [nop,nop,TS val 2004413683 ecr 2004413683], length 0 +IP 127.0.0.1.35934 > 127.0.0.1.6379: Flags [P.], seq 13:157, ack 1, win 342, options [nop,nop,TS val 2004413683 ecr 2004413683], length 144: RESP "incr test" "set test2 redis" "get test2" "lpush test3 r" "lpush test3 e" "lpush test3 d" "lpush test3 i" "lpush test3 s" "lrange test3 0 -1" "del test4" +IP 127.0.0.1.6379 > 127.0.0.1.35934: Flags [.], ack 157, win 350, options [nop,nop,TS val 2004413683 ecr 2004413683], length 0 +IP 127.0.0.1.35934 > 127.0.0.1.6379: Flags [P.], seq 157:168, ack 1, win 342, options [nop,nop,TS val 2004413683 ecr 2004413683], length 11: RESP "get test4" +IP 127.0.0.1.6379 > 127.0.0.1.35934: Flags [.], ack 168, win 350, options [nop,nop,TS val 2004413683 ecr 2004413683], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.35934: Flags [P.], seq 1:1289, ack 168, win 350, options [nop,nop,TS val 2004413683 ecr 2004413683], length 1288: RESP "OK" "2" "OK" "redis" "170" "171" "172" "173" "174" "s" "i" "d" "e" "r" "s" "i" "d" "e" "r" "s" "i" "d" "e" "r" "s" "i" "d" "e" "r" "s" "i" "d" "e" "r" "s" "i" "d" "e" "r" "s" "i" "d" "e" "r" "s" "i" "d" "e" "r" "s" "i" "d" "e" "r" "s" "i" "d" "e" "r" "s" "i" "d" "e" "r" "s" "i" "d" "e" "r" "s" "i" "d" "e" "r" "s" "i" "d" "e" "r" "s" "i" "d" "e" "r" "s" "i" "d" "e" "r" "s" "i" "d" "e" "r" "s" "i" "d" "e" "r" "s" "i" "d" "e" "r" "s" "i" "d" "e" "r" "i" "r" "s" "i" "d" "e" "r" "s" "i" "d" "e" "r" "s" "i" "d" "e" "r" "s" "i" "d" "e" "r" "s" "i" "d" "e" "r" "s" "i" "d" "e" "r" "s" "i" "d" "e" "r" "d" "r" "s" "i" "d" "e" "r" "s" "i" "d" "e" "r" "s" "i" "d" "e" "r" "s" "i" "d" "e" "r" "s" "i" "d" "e" "r" "i" "s" "i" "e" "r" "s" "i" "d" "e" "r" "0" null +IP 127.0.0.1.35934 > 127.0.0.1.6379: Flags [.], ack 1289, win 1365, options [nop,nop,TS val 2004413683 ecr 2004413683], length 0 +IP 127.0.0.1.35934 > 127.0.0.1.6379: Flags [F.], seq 168, ack 1289, win 1365, options [nop,nop,TS val 2004413984 ecr 2004413683], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.35934: Flags [F.], seq 1289, ack 169, win 350, options [nop,nop,TS val 2004413984 ecr 2004413984], length 0 +IP 127.0.0.1.35934 > 127.0.0.1.6379: Flags [.], ack 1290, win 1365, options [nop,nop,TS val 2004413984 ecr 2004413984], length 0 diff --git a/src/tests/resp_2_inline.pcap b/src/tests/resp_2_inline.pcap new file mode 100644 index 0000000..e22b5f2 Binary files /dev/null and b/src/tests/resp_2_inline.pcap differ diff --git a/src/tests/resp_3.out b/src/tests/resp_3.out new file mode 100644 index 0000000..8c63516 --- /dev/null +++ b/src/tests/resp_3.out @@ -0,0 +1,163 @@ +IP 127.0.0.1.52759 > 127.0.0.1.6379: Flags [F.], seq 2169831382, ack 489972337, win 342, options [nop,nop,TS val 1132418034 ecr 1132417734], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.52759: Flags [F.], seq 1, ack 1, win 342, options [nop,nop,TS val 1132418034 ecr 1132418034], length 0 +IP 127.0.0.1.52759 > 127.0.0.1.6379: Flags [.], ack 2, win 342, options [nop,nop,TS val 1132418034 ecr 1132418034], length 0 +IP 127.0.0.1.52760 > 127.0.0.1.6379: Flags [S], seq 264055152, win 43690, options [mss 65495,sackOK,TS val 1132418037 ecr 0,nop,wscale 7], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.52760: Flags [S.], seq 4227148888, ack 264055153, win 43690, options [mss 65495,sackOK,TS val 1132418037 ecr 1132418037,nop,wscale 7], length 0 +IP 127.0.0.1.52760 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 1132418037 ecr 1132418037], length 0 +IP 127.0.0.1.52760 > 127.0.0.1.6379: Flags [P.], seq 1:7, ack 1, win 342, options [nop,nop,TS val 1132418037 ecr 1132418037], length 6: RESP empty +IP 127.0.0.1.6379 > 127.0.0.1.52760: Flags [.], ack 7, win 342, options [nop,nop,TS val 1132418037 ecr 1132418037], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.52760: Flags [P.], seq 1:28, ack 7, win 342, options [nop,nop,TS val 1132418037 ecr 1132418037], length 27: RESP "ERR unknown command '$0'" +IP 127.0.0.1.52760 > 127.0.0.1.6379: Flags [.], ack 28, win 342, options [nop,nop,TS val 1132418037 ecr 1132418037], length 0 +IP 127.0.0.1.52760 > 127.0.0.1.6379: Flags [F.], seq 7, ack 28, win 342, options [nop,nop,TS val 1132418337 ecr 1132418037], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.52760: Flags [F.], seq 28, ack 8, win 342, options [nop,nop,TS val 1132418337 ecr 1132418337], length 0 +IP 127.0.0.1.52760 > 127.0.0.1.6379: Flags [.], ack 29, win 342, options [nop,nop,TS val 1132418337 ecr 1132418337], length 0 +IP 127.0.0.1.52763 > 127.0.0.1.6379: Flags [S], seq 4029577365, win 43690, options [mss 65495,sackOK,TS val 1132418340 ecr 0,nop,wscale 7], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.52763: Flags [S.], seq 365322185, ack 4029577366, win 43690, options [mss 65495,sackOK,TS val 1132418340 ecr 1132418340,nop,wscale 7], length 0 +IP 127.0.0.1.52763 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 1132418340 ecr 1132418340], length 0 +IP 127.0.0.1.52763 > 127.0.0.1.6379: Flags [P.], seq 1:4, ack 1, win 342, options [nop,nop,TS val 1132418340 ecr 1132418340], length 3: RESP "" +IP 127.0.0.1.6379 > 127.0.0.1.52763: Flags [.], ack 4, win 342, options [nop,nop,TS val 1132418340 ecr 1132418340], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.52763: Flags [P.], seq 1:27, ack 4, win 342, options [nop,nop,TS val 1132418340 ecr 1132418340], length 26: RESP "ERR unknown command '+'" +IP 127.0.0.1.52763 > 127.0.0.1.6379: Flags [.], ack 27, win 342, options [nop,nop,TS val 1132418340 ecr 1132418340], length 0 +IP 127.0.0.1.52763 > 127.0.0.1.6379: Flags [F.], seq 4, ack 27, win 342, options [nop,nop,TS val 1132418640 ecr 1132418340], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.52763: Flags [F.], seq 27, ack 5, win 342, options [nop,nop,TS val 1132418640 ecr 1132418640], length 0 +IP 127.0.0.1.52763 > 127.0.0.1.6379: Flags [.], ack 28, win 342, options [nop,nop,TS val 1132418640 ecr 1132418640], length 0 +IP 127.0.0.1.52764 > 127.0.0.1.6379: Flags [S], seq 3994485171, win 43690, options [mss 65495,sackOK,TS val 1132418642 ecr 0,nop,wscale 7], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.52764: Flags [S.], seq 3089553256, ack 3994485172, win 43690, options [mss 65495,sackOK,TS val 1132418642 ecr 1132418642,nop,wscale 7], length 0 +IP 127.0.0.1.52764 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 1132418642 ecr 1132418642], length 0 +IP 127.0.0.1.52764 > 127.0.0.1.6379: Flags [P.], seq 1:4, ack 1, win 342, options [nop,nop,TS val 1132418642 ecr 1132418642], length 3: RESP "" +IP 127.0.0.1.6379 > 127.0.0.1.52764: Flags [.], ack 4, win 342, options [nop,nop,TS val 1132418642 ecr 1132418642], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.52764: Flags [P.], seq 1:27, ack 4, win 342, options [nop,nop,TS val 1132418642 ecr 1132418642], length 26: RESP "ERR unknown command '-'" +IP 127.0.0.1.52764 > 127.0.0.1.6379: Flags [.], ack 27, win 342, options [nop,nop,TS val 1132418642 ecr 1132418642], length 0 +IP 127.0.0.1.52764 > 127.0.0.1.6379: Flags [F.], seq 4, ack 27, win 342, options [nop,nop,TS val 1132418942 ecr 1132418642], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.52764: Flags [F.], seq 27, ack 5, win 342, options [nop,nop,TS val 1132418942 ecr 1132418942], length 0 +IP 127.0.0.1.52764 > 127.0.0.1.6379: Flags [.], ack 28, win 342, options [nop,nop,TS val 1132418942 ecr 1132418942], length 0 +IP 127.0.0.1.52765 > 127.0.0.1.6379: Flags [S], seq 3235592213, win 43690, options [mss 65495,sackOK,TS val 1132418944 ecr 0,nop,wscale 7], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.52765: Flags [S.], seq 1213611847, ack 3235592214, win 43690, options [mss 65495,sackOK,TS val 1132418944 ecr 1132418944,nop,wscale 7], length 0 +IP 127.0.0.1.52765 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 1132418944 ecr 1132418944], length 0 +IP 127.0.0.1.52765 > 127.0.0.1.6379: Flags [P.], seq 1:4, ack 1, win 342, options [nop,nop,TS val 1132418944 ecr 1132418944], length 3: RESP "" +IP 127.0.0.1.6379 > 127.0.0.1.52765: Flags [.], ack 4, win 342, options [nop,nop,TS val 1132418944 ecr 1132418944], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.52765: Flags [P.], seq 1:27, ack 4, win 342, options [nop,nop,TS val 1132418945 ecr 1132418944], length 26: RESP "ERR unknown command ':'" +IP 127.0.0.1.52765 > 127.0.0.1.6379: Flags [.], ack 27, win 342, options [nop,nop,TS val 1132418945 ecr 1132418945], length 0 +IP 127.0.0.1.52765 > 127.0.0.1.6379: Flags [F.], seq 4, ack 27, win 342, options [nop,nop,TS val 1132419244 ecr 1132418945], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.52765: Flags [F.], seq 27, ack 5, win 342, options [nop,nop,TS val 1132419244 ecr 1132419244], length 0 +IP 127.0.0.1.52765 > 127.0.0.1.6379: Flags [.], ack 28, win 342, options [nop,nop,TS val 1132419244 ecr 1132419244], length 0 +IP 127.0.0.1.52766 > 127.0.0.1.6379: Flags [S], seq 1161779316, win 43690, options [mss 65495,sackOK,TS val 1132419247 ecr 0,nop,wscale 7], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.52766: Flags [S.], seq 1206331179, ack 1161779317, win 43690, options [mss 65495,sackOK,TS val 1132419247 ecr 1132419247,nop,wscale 7], length 0 +IP 127.0.0.1.52766 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 1132419247 ecr 1132419247], length 0 +IP 127.0.0.1.52766 > 127.0.0.1.6379: Flags [P.], seq 1:89, ack 1, win 342, options [nop,nop,TS val 1132419247 ecr 1132419247], length 88: RESP "0392049029024920492304923049032940329402394092304932049230492034932094032940234902340" +IP 127.0.0.1.6379 > 127.0.0.1.52766: Flags [.], ack 89, win 342, options [nop,nop,TS val 1132419247 ecr 1132419247], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.52766: Flags [P.], seq 1:112, ack 89, win 342, options [nop,nop,TS val 1132419247 ecr 1132419247], length 111: RESP "ERR unknown command ':0392049029024920492304923049032940329402394092304932049230492034932094032940234902340'" +IP 127.0.0.1.52766 > 127.0.0.1.6379: Flags [.], ack 112, win 342, options [nop,nop,TS val 1132419247 ecr 1132419247], length 0 +IP 127.0.0.1.52766 > 127.0.0.1.6379: Flags [F.], seq 89, ack 112, win 342, options [nop,nop,TS val 1132419547 ecr 1132419247], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.52766: Flags [F.], seq 112, ack 90, win 342, options [nop,nop,TS val 1132419547 ecr 1132419547], length 0 +IP 127.0.0.1.52766 > 127.0.0.1.6379: Flags [.], ack 113, win 342, options [nop,nop,TS val 1132419547 ecr 1132419547], length 0 +IP 127.0.0.1.52767 > 127.0.0.1.6379: Flags [S], seq 3453687710, win 43690, options [mss 65495,sackOK,TS val 1132419549 ecr 0,nop,wscale 7], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.52767: Flags [S.], seq 4076862539, ack 3453687711, win 43690, options [mss 65495,sackOK,TS val 1132419549 ecr 1132419549,nop,wscale 7], length 0 +IP 127.0.0.1.52767 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 1132419549 ecr 1132419549], length 0 +IP 127.0.0.1.52767 > 127.0.0.1.6379: Flags [P.], seq 1:39, ack 1, win 342, options [nop,nop,TS val 1132419549 ecr 1132419549], length 38: RESP invalid +IP 127.0.0.1.6379 > 127.0.0.1.52767: Flags [.], ack 39, win 342, options [nop,nop,TS val 1132419549 ecr 1132419549], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.52767: Flags [P.], seq 1:48, ack 39, win 342, options [nop,nop,TS val 1132419549 ecr 1132419549], length 47: RESP "ERR Protocol error: invalid multibulk length" +IP 127.0.0.1.52767 > 127.0.0.1.6379: Flags [.], ack 48, win 342, options [nop,nop,TS val 1132419549 ecr 1132419549], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.52767: Flags [F.], seq 48, ack 39, win 342, options [nop,nop,TS val 1132419549 ecr 1132419549], length 0 +IP 127.0.0.1.52767 > 127.0.0.1.6379: Flags [F.], seq 39, ack 49, win 342, options [nop,nop,TS val 1132419549 ecr 1132419549], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.52767: Flags [.], ack 40, win 342, options [nop,nop,TS val 1132419549 ecr 1132419549], length 0 +IP 127.0.0.1.52768 > 127.0.0.1.6379: Flags [S], seq 3109305893, win 43690, options [mss 65495,sackOK,TS val 1132419852 ecr 0,nop,wscale 7], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.52768: Flags [S.], seq 4202059680, ack 3109305894, win 43690, options [mss 65495,sackOK,TS val 1132419852 ecr 1132419852,nop,wscale 7], length 0 +IP 127.0.0.1.52768 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 1132419852 ecr 1132419852], length 0 +IP 127.0.0.1.52768 > 127.0.0.1.6379: Flags [P.], seq 1:7, ack 1, win 342, options [nop,nop,TS val 1132419852 ecr 1132419852], length 6: RESP invalid +IP 127.0.0.1.6379 > 127.0.0.1.52768: Flags [.], ack 7, win 342, options [nop,nop,TS val 1132419852 ecr 1132419852], length 0 +IP 127.0.0.1.52768 > 127.0.0.1.6379: Flags [F.], seq 7, ack 1, win 342, options [nop,nop,TS val 1132420152 ecr 1132419852], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.52768: Flags [F.], seq 1, ack 8, win 342, options [nop,nop,TS val 1132420152 ecr 1132420152], length 0 +IP 127.0.0.1.52768 > 127.0.0.1.6379: Flags [.], ack 2, win 342, options [nop,nop,TS val 1132420152 ecr 1132420152], length 0 +IP 127.0.0.1.52769 > 127.0.0.1.6379: Flags [S], seq 4072438166, win 43690, options [mss 65495,sackOK,TS val 1132420154 ecr 0,nop,wscale 7], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.52769: Flags [S.], seq 156730490, ack 4072438167, win 43690, options [mss 65495,sackOK,TS val 1132420154 ecr 1132420154,nop,wscale 7], length 0 +IP 127.0.0.1.52769 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 1132420154 ecr 1132420154], length 0 +IP 127.0.0.1.52769 > 127.0.0.1.6379: Flags [P.], seq 1:11, ack 1, win 342, options [nop,nop,TS val 1132420154 ecr 1132420154], length 10: RESP invalid [|RESP] +IP 127.0.0.1.6379 > 127.0.0.1.52769: Flags [.], ack 11, win 342, options [nop,nop,TS val 1132420154 ecr 1132420154], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.52769: Flags [P.], seq 1:57, ack 11, win 342, options [nop,nop,TS val 1132420154 ecr 1132420154], length 56: RESP "ERR unknown command '$-20'" "ERR unknown command 'hi'" +IP 127.0.0.1.52769 > 127.0.0.1.6379: Flags [.], ack 57, win 342, options [nop,nop,TS val 1132420154 ecr 1132420154], length 0 +IP 127.0.0.1.52769 > 127.0.0.1.6379: Flags [F.], seq 11, ack 57, win 342, options [nop,nop,TS val 1132420454 ecr 1132420154], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.52769: Flags [F.], seq 57, ack 12, win 342, options [nop,nop,TS val 1132420454 ecr 1132420454], length 0 +IP 127.0.0.1.52769 > 127.0.0.1.6379: Flags [.], ack 58, win 342, options [nop,nop,TS val 1132420454 ecr 1132420454], length 0 +IP 127.0.0.1.52770 > 127.0.0.1.6379: Flags [S], seq 374549345, win 43690, options [mss 65495,sackOK,TS val 1132420457 ecr 0,nop,wscale 7], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.52770: Flags [S.], seq 1146630634, ack 374549346, win 43690, options [mss 65495,sackOK,TS val 1132420457 ecr 1132420457,nop,wscale 7], length 0 +IP 127.0.0.1.52770 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 1132420457 ecr 1132420457], length 0 +IP 127.0.0.1.52770 > 127.0.0.1.6379: Flags [P.], seq 1:7, ack 1, win 342, options [nop,nop,TS val 1132420457 ecr 1132420457], length 6: RESP [|RESP] +IP 127.0.0.1.6379 > 127.0.0.1.52770: Flags [.], ack 7, win 342, options [nop,nop,TS val 1132420457 ecr 1132420457], length 0 +IP 127.0.0.1.52770 > 127.0.0.1.6379: Flags [F.], seq 7, ack 1, win 342, options [nop,nop,TS val 1132420757 ecr 1132420457], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.52770: Flags [F.], seq 1, ack 8, win 342, options [nop,nop,TS val 1132420757 ecr 1132420757], length 0 +IP 127.0.0.1.52770 > 127.0.0.1.6379: Flags [.], ack 2, win 342, options [nop,nop,TS val 1132420757 ecr 1132420757], length 0 +IP 127.0.0.1.52771 > 127.0.0.1.6379: Flags [S], seq 2541241523, win 43690, options [mss 65495,sackOK,TS val 1132420760 ecr 0,nop,wscale 7], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.52771: Flags [S.], seq 3482468888, ack 2541241524, win 43690, options [mss 65495,sackOK,TS val 1132420760 ecr 1132420760,nop,wscale 7], length 0 +IP 127.0.0.1.52771 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 1132420760 ecr 1132420760], length 0 +IP 127.0.0.1.52771 > 127.0.0.1.6379: Flags [P.], seq 1:7, ack 1, win 342, options [nop,nop,TS val 1132420760 ecr 1132420760], length 6: RESP [|RESP] +IP 127.0.0.1.6379 > 127.0.0.1.52771: Flags [.], ack 7, win 342, options [nop,nop,TS val 1132420760 ecr 1132420760], length 0 +IP 127.0.0.1.52771 > 127.0.0.1.6379: Flags [F.], seq 7, ack 1, win 342, options [nop,nop,TS val 1132421059 ecr 1132420760], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.52771: Flags [F.], seq 1, ack 8, win 342, options [nop,nop,TS val 1132421059 ecr 1132421059], length 0 +IP 127.0.0.1.52771 > 127.0.0.1.6379: Flags [.], ack 2, win 342, options [nop,nop,TS val 1132421059 ecr 1132421059], length 0 +IP 127.0.0.1.52772 > 127.0.0.1.6379: Flags [S], seq 3376019145, win 43690, options [mss 65495,sackOK,TS val 1132421060 ecr 0,nop,wscale 7], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.52772: Flags [S.], seq 2449011991, ack 3376019146, win 43690, options [mss 65495,sackOK,TS val 1132421060 ecr 1132421060,nop,wscale 7], length 0 +IP 127.0.0.1.52772 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 1132421060 ecr 1132421060], length 0 +IP 127.0.0.1.52772 > 127.0.0.1.6379: Flags [P.], seq 1:7, ack 1, win 342, options [nop,nop,TS val 1132421060 ecr 1132421060], length 6: RESP [|RESP] +IP 127.0.0.1.6379 > 127.0.0.1.52772: Flags [.], ack 7, win 342, options [nop,nop,TS val 1132421060 ecr 1132421060], length 0 +IP 127.0.0.1.52772 > 127.0.0.1.6379: Flags [F.], seq 7, ack 1, win 342, options [nop,nop,TS val 1132421360 ecr 1132421060], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.52772: Flags [F.], seq 1, ack 8, win 342, options [nop,nop,TS val 1132421360 ecr 1132421360], length 0 +IP 127.0.0.1.52772 > 127.0.0.1.6379: Flags [.], ack 2, win 342, options [nop,nop,TS val 1132421360 ecr 1132421360], length 0 +IP 127.0.0.1.52773 > 127.0.0.1.6379: Flags [S], seq 3567970909, win 43690, options [mss 65495,sackOK,TS val 1132421363 ecr 0,nop,wscale 7], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.52773: Flags [S.], seq 3366370739, ack 3567970910, win 43690, options [mss 65495,sackOK,TS val 1132421363 ecr 1132421363,nop,wscale 7], length 0 +IP 127.0.0.1.52773 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 1132421363 ecr 1132421363], length 0 +IP 127.0.0.1.52773 > 127.0.0.1.6379: Flags [P.], seq 1:6, ack 1, win 342, options [nop,nop,TS val 1132421363 ecr 1132421363], length 5: RESP null +IP 127.0.0.1.6379 > 127.0.0.1.52773: Flags [.], ack 6, win 342, options [nop,nop,TS val 1132421363 ecr 1132421363], length 0 +IP 127.0.0.1.52773 > 127.0.0.1.6379: Flags [F.], seq 6, ack 1, win 342, options [nop,nop,TS val 1132421663 ecr 1132421363], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.52773: Flags [F.], seq 1, ack 7, win 342, options [nop,nop,TS val 1132421663 ecr 1132421663], length 0 +IP 127.0.0.1.52773 > 127.0.0.1.6379: Flags [.], ack 2, win 342, options [nop,nop,TS val 1132421663 ecr 1132421663], length 0 +IP 127.0.0.1.52775 > 127.0.0.1.6379: Flags [S], seq 3374943379, win 43690, options [mss 65495,sackOK,TS val 1132421665 ecr 0,nop,wscale 7], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.52775: Flags [S.], seq 363870070, ack 3374943380, win 43690, options [mss 65495,sackOK,TS val 1132421665 ecr 1132421665,nop,wscale 7], length 0 +IP 127.0.0.1.52775 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 1132421665 ecr 1132421665], length 0 +IP 127.0.0.1.52775 > 127.0.0.1.6379: Flags [P.], seq 1:6, ack 1, win 342, options [nop,nop,TS val 1132421665 ecr 1132421665], length 5: RESP null +IP 127.0.0.1.6379 > 127.0.0.1.52775: Flags [.], ack 6, win 342, options [nop,nop,TS val 1132421665 ecr 1132421665], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.52775: Flags [P.], seq 1:29, ack 6, win 342, options [nop,nop,TS val 1132421665 ecr 1132421665], length 28: RESP "ERR unknown command '$-1'" +IP 127.0.0.1.52775 > 127.0.0.1.6379: Flags [.], ack 29, win 342, options [nop,nop,TS val 1132421665 ecr 1132421665], length 0 +IP 127.0.0.1.52775 > 127.0.0.1.6379: Flags [F.], seq 6, ack 29, win 342, options [nop,nop,TS val 1132421965 ecr 1132421665], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.52775: Flags [F.], seq 29, ack 7, win 342, options [nop,nop,TS val 1132421965 ecr 1132421965], length 0 +IP 127.0.0.1.52775 > 127.0.0.1.6379: Flags [.], ack 30, win 342, options [nop,nop,TS val 1132421965 ecr 1132421965], length 0 +IP 127.0.0.1.52776 > 127.0.0.1.6379: Flags [S], seq 2780863902, win 43690, options [mss 65495,sackOK,TS val 1132421969 ecr 0,nop,wscale 7], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.52776: Flags [S.], seq 2789065616, ack 2780863903, win 43690, options [mss 65495,sackOK,TS val 1132421969 ecr 1132421969,nop,wscale 7], length 0 +IP 127.0.0.1.52776 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 1132421969 ecr 1132421969], length 0 +IP 127.0.0.1.52776 > 127.0.0.1.6379: Flags [P.], seq 1:64, ack 1, win 342, options [nop,nop,TS val 1132421969 ecr 1132421969], length 63: RESP "INCR" "z" "INCR" "z" "INCR" "z" +IP 127.0.0.1.6379 > 127.0.0.1.52776: Flags [.], ack 64, win 342, options [nop,nop,TS val 1132421969 ecr 1132421969], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.52776: Flags [P.], seq 1:16, ack 64, win 342, options [nop,nop,TS val 1132421969 ecr 1132421969], length 15: RESP "69" "70" "71" +IP 127.0.0.1.52776 > 127.0.0.1.6379: Flags [.], ack 16, win 342, options [nop,nop,TS val 1132421969 ecr 1132421969], length 0 +IP 127.0.0.1.52776 > 127.0.0.1.6379: Flags [F.], seq 64, ack 16, win 342, options [nop,nop,TS val 1132422270 ecr 1132421969], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.52776: Flags [F.], seq 16, ack 65, win 342, options [nop,nop,TS val 1132422270 ecr 1132422270], length 0 +IP 127.0.0.1.52776 > 127.0.0.1.6379: Flags [.], ack 17, win 342, options [nop,nop,TS val 1132422270 ecr 1132422270], length 0 +IP 127.0.0.1.52777 > 127.0.0.1.6379: Flags [S], seq 357339476, win 43690, options [mss 65495,sackOK,TS val 1132422271 ecr 0,nop,wscale 7], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.52777: Flags [S.], seq 3123925211, ack 357339477, win 43690, options [mss 65495,sackOK,TS val 1132422271 ecr 1132422271,nop,wscale 7], length 0 +IP 127.0.0.1.52777 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 1132422271 ecr 1132422271], length 0 +IP 127.0.0.1.52777 > 127.0.0.1.6379: Flags [P.], seq 1:21, ack 1, win 342, options [nop,nop,TS val 1132422271 ecr 1132422271], length 20: RESP "PING" "PING" "PING" [|RESP] +IP 127.0.0.1.6379 > 127.0.0.1.52777: Flags [.], ack 21, win 342, options [nop,nop,TS val 1132422271 ecr 1132422271], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.52777: Flags [P.], seq 1:22, ack 21, win 342, options [nop,nop,TS val 1132422271 ecr 1132422271], length 21: RESP "PONG" "PONG" "PONG" +IP 127.0.0.1.52777 > 127.0.0.1.6379: Flags [.], ack 22, win 342, options [nop,nop,TS val 1132422271 ecr 1132422271], length 0 +IP 127.0.0.1.52777 > 127.0.0.1.6379: Flags [F.], seq 21, ack 22, win 342, options [nop,nop,TS val 1132422571 ecr 1132422271], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.52777: Flags [F.], seq 22, ack 22, win 342, options [nop,nop,TS val 1132422571 ecr 1132422571], length 0 +IP 127.0.0.1.52777 > 127.0.0.1.6379: Flags [.], ack 23, win 342, options [nop,nop,TS val 1132422571 ecr 1132422571], length 0 +IP 127.0.0.1.52778 > 127.0.0.1.6379: Flags [S], seq 2069568772, win 43690, options [mss 65495,sackOK,TS val 1132422573 ecr 0,nop,wscale 7], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.52778: Flags [S.], seq 1085796497, ack 2069568773, win 43690, options [mss 65495,sackOK,TS val 1132422573 ecr 1132422573,nop,wscale 7], length 0 +IP 127.0.0.1.52778 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 1132422573 ecr 1132422573], length 0 +IP 127.0.0.1.52778 > 127.0.0.1.6379: Flags [P.], seq 1:21, ack 1, win 342, options [nop,nop,TS val 1132422573 ecr 1132422573], length 20: RESP "PING" "PING" "PING" [|RESP] +IP 127.0.0.1.6379 > 127.0.0.1.52778: Flags [.], ack 21, win 342, options [nop,nop,TS val 1132422573 ecr 1132422573], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.52778: Flags [P.], seq 1:22, ack 21, win 342, options [nop,nop,TS val 1132422573 ecr 1132422573], length 21: RESP "PONG" "PONG" "PONG" +IP 127.0.0.1.52778 > 127.0.0.1.6379: Flags [.], ack 22, win 342, options [nop,nop,TS val 1132422573 ecr 1132422573], length 0 +IP 127.0.0.1.52778 > 127.0.0.1.6379: Flags [F.], seq 21, ack 22, win 342, options [nop,nop,TS val 1132422873 ecr 1132422573], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.52778: Flags [F.], seq 22, ack 22, win 342, options [nop,nop,TS val 1132422873 ecr 1132422873], length 0 +IP 127.0.0.1.52778 > 127.0.0.1.6379: Flags [.], ack 23, win 342, options [nop,nop,TS val 1132422873 ecr 1132422873], length 0 +IP 127.0.0.1.52779 > 127.0.0.1.6379: Flags [S], seq 1578479120, win 43690, options [mss 65495,sackOK,TS val 1132422875 ecr 0,nop,wscale 7], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.52779: Flags [S.], seq 2529957046, ack 1578479121, win 43690, options [mss 65495,sackOK,TS val 1132422875 ecr 1132422875,nop,wscale 7], length 0 +IP 127.0.0.1.52779 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 1132422875 ecr 1132422875], length 0 +IP 127.0.0.1.52779 > 127.0.0.1.6379: Flags [P.], seq 1:24, ack 1, win 342, options [nop,nop,TS val 1132422875 ecr 1132422875], length 23: RESP "PING" "PING" "PING" [|RESP] +IP 127.0.0.1.6379 > 127.0.0.1.52779: Flags [.], ack 24, win 342, options [nop,nop,TS val 1132422875 ecr 1132422875], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.52779: Flags [P.], seq 1:22, ack 24, win 342, options [nop,nop,TS val 1132422875 ecr 1132422875], length 21: RESP "PONG" "PONG" "PONG" +IP 127.0.0.1.52779 > 127.0.0.1.6379: Flags [.], ack 22, win 342, options [nop,nop,TS val 1132422875 ecr 1132422875], length 0 +IP 127.0.0.1.52779 > 127.0.0.1.6379: Flags [F.], seq 24, ack 22, win 342, options [nop,nop,TS val 1132423175 ecr 1132422875], length 0 +IP 127.0.0.1.6379 > 127.0.0.1.52779: Flags [F.], seq 22, ack 25, win 342, options [nop,nop,TS val 1132423175 ecr 1132423175], length 0 +IP 127.0.0.1.52779 > 127.0.0.1.6379: Flags [.], ack 23, win 342, options [nop,nop,TS val 1132423175 ecr 1132423175], length 0 diff --git a/src/tests/resp_3_malicious.pcap b/src/tests/resp_3_malicious.pcap new file mode 100644 index 0000000..02cd53f Binary files /dev/null and b/src/tests/resp_3_malicious.pcap differ diff --git a/src/tests/ripv1v2.out b/src/tests/ripv1v2.out new file mode 100644 index 0000000..65243d8 --- /dev/null +++ b/src/tests/ripv1v2.out @@ -0,0 +1,16 @@ +IP (tos 0xc0, ttl 64, id 0, offset 0, flags [DF], proto UDP (17), length 52) + 10.0.0.20.520 > 10.0.0.255.520: + RIPv1, Request, length: 24, routes: 1 + AFI 0, 0.0.0.0, metric: 16 +IP (tos 0xc0, ttl 64, id 0, offset 0, flags [DF], proto UDP (17), length 52) + 10.0.0.20.520 > 10.0.0.255.520: + RIPv1, Response, length: 24, routes: 1 + 10.70.178.0, metric: 1 +IP (tos 0xc0, ttl 1, id 0, offset 0, flags [DF], proto UDP (17), length 52) + 10.0.0.20.520 > 224.0.0.9.520: + RIPv2, Request, length: 24, routes: 1 or less + AFI 0, 0.0.0.0/0 , tag 0x0000, metric: 16, next-hop: self +IP (tos 0xc0, ttl 1, id 0, offset 0, flags [DF], proto UDP (17), length 52) + 10.0.0.20.520 > 224.0.0.9.520: + RIPv2, Response, length: 24, routes: 1 or less + AFI IPv4, 10.70.178.0/24, tag 0x0000, metric: 1, next-hop: self diff --git a/src/tests/ripv1v2.pcap b/src/tests/ripv1v2.pcap new file mode 100644 index 0000000..b98056f Binary files /dev/null and b/src/tests/ripv1v2.pcap differ diff --git a/src/tests/ripv2_auth.out b/src/tests/ripv2_auth.out new file mode 100644 index 0000000..618e4a7 --- /dev/null +++ b/src/tests/ripv2_auth.out @@ -0,0 +1,94 @@ +IP (tos 0xc0, ttl 1, id 0, offset 0, flags [DF], proto UDP (17), length 72) + 10.0.0.20.520 > 224.0.0.9.520: + RIPv2, Request, length: 44, routes: 2 or less + Simple Text Authentication data: abcdefghijklmnop + AFI 0, 0.0.0.0/0 , tag 0x0000, metric: 16, next-hop: self +IP (tos 0xc0, ttl 1, id 0, offset 0, flags [DF], proto UDP (17), length 72) + 10.0.0.20.520 > 224.0.0.9.520: + RIPv2, Response, length: 44, routes: 2 or less + Simple Text Authentication data: abcdefghijklmnop + AFI IPv4, 10.70.178.0/24, tag 0x0000, metric: 1, next-hop: self +IP (tos 0xc0, ttl 1, id 0, offset 0, flags [DF], proto UDP (17), length 92) + 10.0.0.20.520 > 224.0.0.9.520: + RIPv2, Request, length: 64, routes: 3 or less + Auth header: Packet Len 44, Key-ID 45, Auth Data Len 16, SeqNo 1339429688, MBZ 0, MBZ 0 + AFI 0, 0.0.0.0/0 , tag 0x0000, metric: 16, next-hop: self + Auth trailer: + 0x0000: a2fe c865 f120 8808 2326 1369 d6c2 3593 +IP (tos 0xc0, ttl 1, id 0, offset 0, flags [DF], proto UDP (17), length 92) + 10.0.0.20.520 > 224.0.0.9.520: + RIPv2, Response, length: 64, routes: 3 or less + Auth header: Packet Len 44, Key-ID 45, Auth Data Len 16, SeqNo 1339429692, MBZ 0, MBZ 0 + AFI IPv4, 10.70.178.0/24, tag 0x0000, metric: 1, next-hop: self + Auth trailer: + 0x0000: 6d21 5dd5 6d27 a6f4 8a51 e2c2 fcc2 af0f +IP (tos 0xc0, ttl 1, id 0, offset 0, flags [DF], proto UDP (17), length 96) + 10.0.0.20.520 > 224.0.0.9.520: + RIPv2, Request, length: 68, routes: 3 or less + Auth header: Packet Len 44, Key-ID 45, Auth Data Len 20, SeqNo 1339429713, MBZ 0, MBZ 0 + AFI 0, 0.0.0.0/0 , tag 0x0000, metric: 16, next-hop: self + Auth trailer: + 0x0000: 728c 5b16 9a1b 3913 0021 a73f 7a73 bc1b + 0x0010: eee0 e6a2 +IP (tos 0xc0, ttl 1, id 0, offset 0, flags [DF], proto UDP (17), length 96) + 10.0.0.20.520 > 224.0.0.9.520: + RIPv2, Response, length: 68, routes: 3 or less + Auth header: Packet Len 44, Key-ID 45, Auth Data Len 20, SeqNo 1339429716, MBZ 0, MBZ 0 + AFI IPv4, 10.70.178.0/24, tag 0x0000, metric: 1, next-hop: self + Auth trailer: + 0x0000: 375c 8a50 f77f 543b 2425 a695 a27d 6b95 + 0x0010: 3375 fc89 +IP (tos 0xc0, ttl 1, id 0, offset 0, flags [DF], proto UDP (17), length 108) + 10.0.0.20.520 > 224.0.0.9.520: + RIPv2, Request, length: 80, routes: 4 or less + Auth header: Packet Len 44, Key-ID 45, Auth Data Len 32, SeqNo 1339429740, MBZ 0, MBZ 0 + AFI 0, 0.0.0.0/0 , tag 0x0000, metric: 16, next-hop: self + Auth trailer: + 0x0000: 4ae5 fb9c 9702 03b8 5a93 812d 0258 6740 + 0x0010: 451a bd20 cee4 8a3d a466 17a0 e550 5b4b +IP (tos 0xc0, ttl 1, id 0, offset 0, flags [DF], proto UDP (17), length 108) + 10.0.0.20.520 > 224.0.0.9.520: + RIPv2, Response, length: 80, routes: 4 or less + Auth header: Packet Len 44, Key-ID 45, Auth Data Len 32, SeqNo 1339429744, MBZ 0, MBZ 0 + AFI IPv4, 10.70.178.0/24, tag 0x0000, metric: 1, next-hop: self + Auth trailer: + 0x0000: 3965 b755 535a 3375 e83a 973c 60c9 1693 + 0x0010: f2de 8132 9e87 3f7f b763 3cb0 b3dc 3ba2 +IP (tos 0xc0, ttl 1, id 0, offset 0, flags [DF], proto UDP (17), length 124) + 10.0.0.20.520 > 224.0.0.9.520: + RIPv2, Request, length: 96, routes: 4 or less + Auth header: Packet Len 44, Key-ID 45, Auth Data Len 48, SeqNo 1339429761, MBZ 0, MBZ 0 + AFI 0, 0.0.0.0/0 , tag 0x0000, metric: 16, next-hop: self + Auth trailer: + 0x0000: a1f2 20f6 6f72 f45b e8e0 291f 2322 a198 + 0x0010: 1b6b 67bc 9279 7d3b 8e05 c683 8b7e 05bc + 0x0020: 230c abc8 1470 8e30 5470 fb27 6fe3 4506 +IP (tos 0xc0, ttl 1, id 0, offset 0, flags [DF], proto UDP (17), length 124) + 10.0.0.20.520 > 224.0.0.9.520: + RIPv2, Response, length: 96, routes: 4 or less + Auth header: Packet Len 44, Key-ID 45, Auth Data Len 48, SeqNo 1339429765, MBZ 0, MBZ 0 + AFI IPv4, 10.70.178.0/24, tag 0x0000, metric: 1, next-hop: self + Auth trailer: + 0x0000: 64de 1dec 3632 e210 0258 2404 0b32 a947 + 0x0010: aa86 59a1 fef3 9248 3115 c266 0386 f183 + 0x0020: 4f31 1df0 0681 e1cc ba10 b4c1 7795 9773 +IP (tos 0xc0, ttl 1, id 0, offset 0, flags [DF], proto UDP (17), length 140) + 10.0.0.20.520 > 224.0.0.9.520: + RIPv2, Request, length: 112, routes: 5 or less + Auth header: Packet Len 44, Key-ID 45, Auth Data Len 64, SeqNo 1339429781, MBZ 0, MBZ 0 + AFI 0, 0.0.0.0/0 , tag 0x0000, metric: 16, next-hop: self + Auth trailer: + 0x0000: 73ad b6e3 5fe6 07bd 0bc5 ca25 41cc 63ec + 0x0010: bd06 55b1 77a4 e223 ef52 8ea2 7480 e39c + 0x0020: ee51 96bd 4e35 8cb7 f185 ba49 9892 e683 + 0x0030: e756 788d aa23 bf90 0b01 5c2d 241d 2d8e +IP (tos 0xc0, ttl 1, id 0, offset 0, flags [DF], proto UDP (17), length 140) + 10.0.0.20.520 > 224.0.0.9.520: + RIPv2, Response, length: 112, routes: 5 or less + Auth header: Packet Len 44, Key-ID 45, Auth Data Len 64, SeqNo 1339429785, MBZ 0, MBZ 0 + AFI IPv4, 10.70.178.0/24, tag 0x0000, metric: 1, next-hop: self + Auth trailer: + 0x0000: ad5a 5d8a a1a8 b023 1ec3 5c1c ba6a 45fb + 0x0010: bee1 5584 6b1c 724d b1b7 f02e 7365 f038 + 0x0020: 7558 0914 6762 00d1 a92f d499 5da2 43ad + 0x0030: 202c 7a9b 8065 49ad 260b 2142 0f8d d83f diff --git a/src/tests/ripv2_auth.pcap b/src/tests/ripv2_auth.pcap new file mode 100644 index 0000000..57b5a41 Binary files /dev/null and b/src/tests/ripv2_auth.pcap differ diff --git a/src/tests/rpl-14-dao.pcap b/src/tests/rpl-14-dao.pcap new file mode 100644 index 0000000..9a164e4 Binary files /dev/null and b/src/tests/rpl-14-dao.pcap differ diff --git a/src/tests/rpl-14-daovvv.out b/src/tests/rpl-14-daovvv.out new file mode 100644 index 0000000..7e4b8a5 --- /dev/null +++ b/src/tests/rpl-14-daovvv.out @@ -0,0 +1 @@ +IP6 (hlim 64, next-header ICMPv6 (58) payload length: 24) fe80::216:3eff:fe11:3424 > ff02::1: [icmp6 sum ok] ICMP6, RPL, (CLR)Destination Advertisement Object [dagid:7061:6e64:6f72:6120:6973:2066:756e:a6c,seq:1,instance:1,Dagid,40] diff --git a/src/tests/rpl-19-pickdag.out b/src/tests/rpl-19-pickdag.out new file mode 100644 index 0000000..d3c41ee --- /dev/null +++ b/src/tests/rpl-19-pickdag.out @@ -0,0 +1 @@ +IP6 (hlim 64, next-header ICMPv6 (58) payload length: 56) fe80::216:3eff:fe11:3424 > fe80::216:3eff:fe11:3424: [icmp6 sum ok] ICMP6, RPL, (CLR)Destination Advertisement Object [dagid:5431::,seq:10,instance:42,Dagid,40] opt:rpltarget len:25 opt:pad0 opt:pad0 opt:pad0 opt:pad0 opt:pad0 opt:pad0 opt:pad0 diff --git a/src/tests/rpl-19-pickdag.pcap b/src/tests/rpl-19-pickdag.pcap new file mode 100644 index 0000000..3eca6c9 Binary files /dev/null and b/src/tests/rpl-19-pickdag.pcap differ diff --git a/src/tests/rpl-19-pickdagvvv.out b/src/tests/rpl-19-pickdagvvv.out new file mode 100644 index 0000000..deee033 --- /dev/null +++ b/src/tests/rpl-19-pickdagvvv.out @@ -0,0 +1 @@ +IP6 (hlim 64, next-header ICMPv6 (58) payload length: 56) fe80::216:3eff:fe11:3424 > fe80::216:3eff:fe11:3424: [icmp6 sum ok] ICMP6, RPL, (CLR)Destination Advertisement Object [dagid:5431::,seq:10,instance:42,Dagid,40] opt:rpltarget len:25 0x0000: 0080 2001 0db8 0001 0000 0216 3eff fe11 0x0010: 3424 0000 0000 00 opt:pad0 opt:pad0 opt:pad0 opt:pad0 opt:pad0 opt:pad0 opt:pad0 diff --git a/src/tests/rpl-26-senddaoack.pcap b/src/tests/rpl-26-senddaoack.pcap new file mode 100644 index 0000000..fd397a4 Binary files /dev/null and b/src/tests/rpl-26-senddaoack.pcap differ diff --git a/src/tests/rpl-26-senddaovv.out b/src/tests/rpl-26-senddaovv.out new file mode 100644 index 0000000..1b642bb --- /dev/null +++ b/src/tests/rpl-26-senddaovv.out @@ -0,0 +1 @@ +IP6 (hlim 64, next-header ICMPv6 (58) payload length: 24) fe80::216:3eff:fe11:3424 > ff02::1: [icmp6 sum ok] ICMP6, RPL, (CLR)Destination Advertisement Object Ack [dagid:7468:6973:6973:6d79:6469:6365:6461:6732,seq:11,instance:43,status:0] diff --git a/src/tests/rpvst-v.out b/src/tests/rpvst-v.out new file mode 100644 index 0000000..c55c1eb --- /dev/null +++ b/src/tests/rpvst-v.out @@ -0,0 +1,68 @@ +DTPv1, length 38 + Domain TLV (0x0001) TLV, length 10, cisco + Status TLV (0x0002) TLV, length 5, 0x81 + DTP type TLV (0x0003) TLV, length 5, 0xa5 + Neighbor TLV (0x0004) TLV, length 10, 00:1f:6d:96:ec:04 +DTPv1, length 38 + Domain TLV (0x0001) TLV, length 10, cisco + Status TLV (0x0002) TLV, length 5, 0x81 + DTP type TLV (0x0003) TLV, length 5, 0xa5 + Neighbor TLV (0x0004) TLV, length 10, 00:1f:6d:96:ec:04 +STP 802.1w, Rapid STP, Flags [Proposal], bridge-id 8001.00:1f:6d:96:ec:00.8004, length 42 + message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s + root-id 8001.00:1f:6d:96:ec:00, root-pathcost 0, port-role Designated +STP 802.1w, Rapid STP, Flags [Proposal], bridge-id 8001.00:1f:6d:96:ec:00.8004, length 43 + message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s + root-id 8001.00:1f:6d:96:ec:00, root-pathcost 0, port-role Designated +STP 802.1w, Rapid STP, Flags [Proposal], bridge-id 8005.00:1f:6d:96:ec:00.8004, length 42 + message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s + root-id 8005.00:1f:6d:96:ec:00, root-pathcost 0, port-role Designated +STP 802.1w, Rapid STP, Flags [Proposal], bridge-id 8001.00:1f:6d:96:ec:00.8004, length 42 + message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s + root-id 8001.00:1f:6d:96:ec:00, root-pathcost 0, port-role Designated +STP 802.1w, Rapid STP, Flags [Proposal], bridge-id 8001.00:1f:6d:96:ec:00.8004, length 43 + message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s + root-id 8001.00:1f:6d:96:ec:00, root-pathcost 0, port-role Designated +STP 802.1w, Rapid STP, Flags [Proposal], bridge-id 8005.00:1f:6d:96:ec:00.8004, length 42 + message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s + root-id 8005.00:1f:6d:96:ec:00, root-pathcost 0, port-role Designated +STP 802.1w, Rapid STP, Flags [Proposal], bridge-id 8001.00:1f:6d:96:ec:00.8004, length 42 + message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s + root-id 8001.00:1f:6d:96:ec:00, root-pathcost 0, port-role Designated +STP 802.1w, Rapid STP, Flags [Proposal], bridge-id 8001.00:1f:6d:96:ec:00.8004, length 43 + message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s + root-id 8001.00:1f:6d:96:ec:00, root-pathcost 0, port-role Designated +STP 802.1w, Rapid STP, Flags [Proposal], bridge-id 8005.00:1f:6d:96:ec:00.8004, length 42 + message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s + root-id 8005.00:1f:6d:96:ec:00, root-pathcost 0, port-role Designated +VTPv1, Message Summary advertisement (0x01), length 77 + Domain name: cisco, Followers: 0 + Config Rev 2, Updater 155.1.37.7, Timestamp 0x39333033 0x30313030 0x30393030, MD5 digest: fb393cf67014e50aa79c7c5b193f6fe1 +STP 802.1w, Rapid STP, Flags [Proposal], bridge-id 8001.00:1f:6d:96:ec:00.8004, length 42 + message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s + root-id 8001.00:1f:6d:96:ec:00, root-pathcost 0, port-role Designated +STP 802.1w, Rapid STP, Flags [Proposal], bridge-id 8001.00:1f:6d:96:ec:00.8004, length 43 + message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s + root-id 8001.00:1f:6d:96:ec:00, root-pathcost 0, port-role Designated +STP 802.1w, Rapid STP, Flags [Proposal], bridge-id 8005.00:1f:6d:96:ec:00.8004, length 42 + message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s + root-id 8005.00:1f:6d:96:ec:00, root-pathcost 0, port-role Designated +STP 802.1w, Rapid STP, Flags [Proposal], bridge-id 8001.00:1f:6d:96:ec:00.8004, length 42 + message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s + root-id 8001.00:1f:6d:96:ec:00, root-pathcost 0, port-role Designated +STP 802.1w, Rapid STP, Flags [Proposal], bridge-id 8001.00:1f:6d:96:ec:00.8004, length 43 + message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s + root-id 8001.00:1f:6d:96:ec:00, root-pathcost 0, port-role Designated +STP 802.1w, Rapid STP, Flags [Proposal], bridge-id 8005.00:1f:6d:96:ec:00.8004, length 42 + message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s + root-id 8005.00:1f:6d:96:ec:00, root-pathcost 0, port-role Designated +STP 802.1w, Rapid STP, Flags [Proposal], bridge-id 8001.00:1f:6d:96:ec:00.8004, length 42 + message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s + root-id 8001.00:1f:6d:96:ec:00, root-pathcost 0, port-role Designated +STP 802.1w, Rapid STP, Flags [Proposal], bridge-id 8001.00:1f:6d:96:ec:00.8004, length 43 + message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s + root-id 8001.00:1f:6d:96:ec:00, root-pathcost 0, port-role Designated +STP 802.1w, Rapid STP, Flags [Proposal], bridge-id 8005.00:1f:6d:96:ec:00.8004, length 42 + message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s + root-id 8005.00:1f:6d:96:ec:00, root-pathcost 0, port-role Designated +Loopback, skipCount 0, Reply, receipt number 0, data (40 octets) diff --git a/src/tests/rpvstp-trunk-native-vid5.pcap b/src/tests/rpvstp-trunk-native-vid5.pcap new file mode 100644 index 0000000..4c9908b Binary files /dev/null and b/src/tests/rpvstp-trunk-native-vid5.pcap differ diff --git a/src/tests/rstp-v.out b/src/tests/rstp-v.out new file mode 100644 index 0000000..318b450 --- /dev/null +++ b/src/tests/rstp-v.out @@ -0,0 +1,90 @@ +STP 802.1w, Rapid STP, Flags [Proposal], bridge-id 8001.00:19:06:ea:b8:80.800c, length 43 + message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s + root-id 8001.00:19:06:ea:b8:80, root-pathcost 0, port-role Designated +STP 802.1w, Rapid STP, Flags [Proposal], bridge-id 8001.00:19:06:ea:b8:80.800c, length 43 + message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s + root-id 8001.00:19:06:ea:b8:80, root-pathcost 0, port-role Designated +STP 802.1w, Rapid STP, Flags [Proposal], bridge-id 8001.00:19:06:ea:b8:80.800c, length 43 + message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s + root-id 8001.00:19:06:ea:b8:80, root-pathcost 0, port-role Designated +STP 802.1w, Rapid STP, Flags [Proposal], bridge-id 8001.00:19:06:ea:b8:80.800c, length 43 + message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s + root-id 8001.00:19:06:ea:b8:80, root-pathcost 0, port-role Designated +STP 802.1w, Rapid STP, Flags [Proposal], bridge-id 8001.00:19:06:ea:b8:80.800c, length 43 + message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s + root-id 8001.00:19:06:ea:b8:80, root-pathcost 0, port-role Designated +STP 802.1w, Rapid STP, Flags [Proposal], bridge-id 8001.00:19:06:ea:b8:80.800c, length 43 + message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s + root-id 8001.00:19:06:ea:b8:80, root-pathcost 0, port-role Designated +STP 802.1w, Rapid STP, Flags [Proposal], bridge-id 8001.00:19:06:ea:b8:80.800c, length 43 + message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s + root-id 8001.00:19:06:ea:b8:80, root-pathcost 0, port-role Designated +STP 802.1w, Rapid STP, Flags [Proposal], bridge-id 8001.00:19:06:ea:b8:80.800c, length 43 + message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s + root-id 8001.00:19:06:ea:b8:80, root-pathcost 0, port-role Designated +STP 802.1w, Rapid STP, Flags [Proposal, Learn], bridge-id 8001.00:19:06:ea:b8:80.800c, length 43 + message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s + root-id 8001.00:19:06:ea:b8:80, root-pathcost 0, port-role Designated +STP 802.1w, Rapid STP, Flags [Proposal, Learn], bridge-id 8001.00:19:06:ea:b8:80.800c, length 43 + message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s + root-id 8001.00:19:06:ea:b8:80, root-pathcost 0, port-role Designated +STP 802.1w, Rapid STP, Flags [Proposal, Learn], bridge-id 8001.00:19:06:ea:b8:80.800c, length 43 + message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s + root-id 8001.00:19:06:ea:b8:80, root-pathcost 0, port-role Designated +STP 802.1w, Rapid STP, Flags [Proposal, Learn], bridge-id 8001.00:19:06:ea:b8:80.800c, length 43 + message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s + root-id 8001.00:19:06:ea:b8:80, root-pathcost 0, port-role Designated +STP 802.1w, Rapid STP, Flags [Proposal, Learn], bridge-id 8001.00:19:06:ea:b8:80.800c, length 43 + message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s + root-id 8001.00:19:06:ea:b8:80, root-pathcost 0, port-role Designated +STP 802.1w, Rapid STP, Flags [Proposal, Learn], bridge-id 8001.00:19:06:ea:b8:80.800c, length 43 + message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s + root-id 8001.00:19:06:ea:b8:80, root-pathcost 0, port-role Designated +STP 802.1w, Rapid STP, Flags [Proposal, Learn], bridge-id 8001.00:19:06:ea:b8:80.800c, length 43 + message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s + root-id 8001.00:19:06:ea:b8:80, root-pathcost 0, port-role Designated +STP 802.1w, Rapid STP, Flags [Topology change, Learn, Forward], bridge-id 8001.00:19:06:ea:b8:80.800c, length 43 + message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s + root-id 8001.00:19:06:ea:b8:80, root-pathcost 0, port-role Designated +STP 802.1w, Rapid STP, Flags [Topology change, Learn, Forward], bridge-id 8001.00:19:06:ea:b8:80.800c, length 43 + message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s + root-id 8001.00:19:06:ea:b8:80, root-pathcost 0, port-role Designated +STP 802.1w, Rapid STP, Flags [Topology change, Learn, Forward], bridge-id 8001.00:19:06:ea:b8:80.800c, length 43 + message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s + root-id 8001.00:19:06:ea:b8:80, root-pathcost 0, port-role Designated +STP 802.1w, Rapid STP, Flags [Learn, Forward], bridge-id 8001.00:19:06:ea:b8:80.800c, length 43 + message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s + root-id 8001.00:19:06:ea:b8:80, root-pathcost 0, port-role Designated +STP 802.1w, Rapid STP, Flags [Learn, Forward], bridge-id 8001.00:19:06:ea:b8:80.800c, length 43 + message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s + root-id 8001.00:19:06:ea:b8:80, root-pathcost 0, port-role Designated +STP 802.1w, Rapid STP, Flags [Learn, Forward], bridge-id 8001.00:19:06:ea:b8:80.800c, length 43 + message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s + root-id 8001.00:19:06:ea:b8:80, root-pathcost 0, port-role Designated +STP 802.1w, Rapid STP, Flags [Learn, Forward], bridge-id 8001.00:19:06:ea:b8:80.800c, length 43 + message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s + root-id 8001.00:19:06:ea:b8:80, root-pathcost 0, port-role Designated +STP 802.1w, Rapid STP, Flags [Learn, Forward], bridge-id 8001.00:19:06:ea:b8:80.800c, length 43 + message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s + root-id 8001.00:19:06:ea:b8:80, root-pathcost 0, port-role Designated +STP 802.1w, Rapid STP, Flags [Learn, Forward], bridge-id 8001.00:19:06:ea:b8:80.800c, length 43 + message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s + root-id 8001.00:19:06:ea:b8:80, root-pathcost 0, port-role Designated +STP 802.1w, Rapid STP, Flags [Learn, Forward], bridge-id 8001.00:19:06:ea:b8:80.800c, length 43 + message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s + root-id 8001.00:19:06:ea:b8:80, root-pathcost 0, port-role Designated +STP 802.1w, Rapid STP, Flags [Learn, Forward], bridge-id 8001.00:19:06:ea:b8:80.800c, length 43 + message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s + root-id 8001.00:19:06:ea:b8:80, root-pathcost 0, port-role Designated +STP 802.1w, Rapid STP, Flags [Learn, Forward], bridge-id 8001.00:19:06:ea:b8:80.800c, length 43 + message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s + root-id 8001.00:19:06:ea:b8:80, root-pathcost 0, port-role Designated +STP 802.1w, Rapid STP, Flags [Learn, Forward], bridge-id 8001.00:19:06:ea:b8:80.800c, length 43 + message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s + root-id 8001.00:19:06:ea:b8:80, root-pathcost 0, port-role Designated +STP 802.1w, Rapid STP, Flags [Learn, Forward], bridge-id 8001.00:19:06:ea:b8:80.800c, length 43 + message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s + root-id 8001.00:19:06:ea:b8:80, root-pathcost 0, port-role Designated +STP 802.1w, Rapid STP, Flags [Learn, Forward], bridge-id 8001.00:19:06:ea:b8:80.800c, length 43 + message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s + root-id 8001.00:19:06:ea:b8:80, root-pathcost 0, port-role Designated diff --git a/src/tests/rsvp-infinite-loop.pcap b/src/tests/rsvp-infinite-loop.pcap new file mode 100644 index 0000000..dc03dac Binary files /dev/null and b/src/tests/rsvp-infinite-loop.pcap differ diff --git a/src/tests/rsvp_infloop-v.out b/src/tests/rsvp_infloop-v.out new file mode 100644 index 0000000..9084e15 --- /dev/null +++ b/src/tests/rsvp_infloop-v.out @@ -0,0 +1,35 @@ +IP (tos 0x0, ttl 128, id 0, offset 0, flags [DF], proto RSVP (46), length 40) + 208.208.77.43 > 192.168.1.1: + RSVPv1 Hello Message (20), Flags: [none], length: 20, ttl: 64, checksum: 0x98ce + ERO Object (20) Flags: [reject if unknown], Class-Type: IPv4 (1), length: 8 + Subobject Type: Label, length 0 + ERROR: zero length ERO subtype + ERROR: object header too short 0 < 4 +IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto RSVP (46), length 40) + 199.106.167.61 > 192.168.1.1: + RSVPv1 Hello Message (20), Flags: [none], length: 20, ttl: 64, checksum: 0x98ce + ERO Object (20) Flags: [reject if unknown], Class-Type: IPv4 (1), length: 8 + Subobject Type: Label, length 0 + ERROR: zero length ERO subtype + ERROR: object header too short 0 < 4 +IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto RSVP (46), length 40) + 179.9.22.16 > 192.168.1.1: + RSVPv1 Hello Message (20), Flags: [none], length: 20, ttl: 128, checksum: 0x58ce + ERO Object (20) Flags: [reject if unknown], Class-Type: IPv4 (1), length: 8 + Subobject Type: Label, length 0 + ERROR: zero length ERO subtype + ERROR: object header too short 0 < 4 +IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto RSVP (46), length 40) + 99.107.153.33 > 192.168.1.1: + RSVPv1 Hello Message (20), Flags: [none], length: 20, ttl: 128, checksum: 0x58ce + ERO Object (20) Flags: [reject if unknown], Class-Type: IPv4 (1), length: 8 + Subobject Type: Label, length 0 + ERROR: zero length ERO subtype + ERROR: object header too short 0 < 4 +IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto RSVP (46), length 40) + 188.46.23.116 > 192.168.1.1: + RSVPv1 Hello Message (20), Flags: [none], length: 20, ttl: 128, checksum: 0x58ce + ERO Object (20) Flags: [reject if unknown], Class-Type: IPv4 (1), length: 8 + Subobject Type: Label, length 0 + ERROR: zero length ERO subtype + ERROR: object header too short 0 < 4 diff --git a/src/tests/sflow_multiple_counter_30_pdus-nv.out b/src/tests/sflow_multiple_counter_30_pdus-nv.out new file mode 100644 index 0000000..45a2d90 --- /dev/null +++ b/src/tests/sflow_multiple_counter_30_pdus-nv.out @@ -0,0 +1,30 @@ +IP 15.184.1.76.40948 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.8.4, agent-id 2, length 1288 +IP 15.184.1.195.4942 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.195, agent-id 1, length 1288 +IP 15.184.1.195.4942 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.195, agent-id 1, length 1288 +IP 15.184.1.195.4942 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.195, agent-id 1, length 1288 +IP 15.184.1.195.4942 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.195, agent-id 1, length 1288 +IP 15.184.1.195.4942 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.195, agent-id 1, length 1108 +IP 15.184.1.76.40948 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.8.4, agent-id 2, length 208 +IP 15.184.1.194.3099 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.194, agent-id 1, length 1288 +IP 15.184.1.194.3099 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.194, agent-id 1, length 1288 +IP 15.184.1.194.3099 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.194, agent-id 1, length 1288 +IP 15.184.1.194.3099 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.194, agent-id 1, length 1288 +IP 15.184.4.165.49408 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.4.165, agent-id 100, length 460 +IP 168.87.240.2.40000 > 15.184.3.9.6343: sFlow version 327681 packet not supported +IP 15.184.3.1.41024 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.129, agent-id 2, length 1288 +IP 15.184.3.1.41024 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.129, agent-id 2, length 568 +IP 168.87.240.3.50340 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.129, agent-id 6, length 928 +IP 15.184.1.194.3099 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.194, agent-id 1, length 1108 +IP 15.184.13.248.50229 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.13.52, agent-id 100, length 424 +IP 168.87.240.1.40000 > 15.184.3.9.6343: sFlow version 327681 packet not supported +IP 168.87.240.1.40000 > 15.184.3.9.6343: sFlow version 327682 packet not supported +IP 168.87.240.1.40000 > 15.184.3.9.6343: sFlow version 327681 packet not supported +IP 168.87.240.2.40000 > 15.184.3.9.6343: sFlow version 327682 packet not supported +IP 168.87.240.3.50340 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.129, agent-id 6, length 568 +IP 15.184.1.195.4942 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.195, agent-id 1, length 1288 +IP 15.184.1.195.4942 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.195, agent-id 1, length 1288 +IP 15.184.1.195.4942 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.195, agent-id 1, length 1288 +IP 15.184.1.195.4942 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.195, agent-id 1, length 1288 +IP 15.184.1.195.4942 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.195, agent-id 1, length 1108 +IP 15.184.1.194.3099 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.194, agent-id 1, length 1288 +IP 15.184.1.194.3099 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.194, agent-id 1, length 1288 diff --git a/src/tests/sflow_multiple_counter_30_pdus.out b/src/tests/sflow_multiple_counter_30_pdus.out new file mode 100644 index 0000000..1b1938e --- /dev/null +++ b/src/tests/sflow_multiple_counter_30_pdus.out @@ -0,0 +1,1828 @@ +IP (tos 0x0, ttl 253, id 23654, offset 0, flags [none], proto UDP (17), length 1316) + 15.184.1.76.40948 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.8.4, agent-id 2, seqnum 204720, uptime 2612972293, samples 7, length 1288 + expanded counter sample (4), length 172, seqnum 87096, type 0, idx 55, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 55, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 820721, unicast pkts 9601, multicast pkts 0, broadcast pkts 1302, discards 0 + In errors 0, unknown protos 0 + Out octets 178785248, unicast pkts 9736, multicast pkts 132958, broadcast pkts 2213534, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 87096, type 0, idx 56, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 56, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 156084746, unicast pkts 473593, multicast pkts 0, broadcast pkts 1862745, discards 0 + In errors 0, unknown protos 0 + Out octets 59635889, unicast pkts 8834, multicast pkts 132958, broadcast pkts 352092, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 87099, type 0, idx 57, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 57, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 3051593057, unicast pkts 52919488, multicast pkts 1491, broadcast pkts 956, discards 0 + In errors 0, unknown protos 0 + Out octets 1525716840, unicast pkts 30013667, multicast pkts 131467, broadcast pkts 2213880, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 87096, type 0, idx 60, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 60, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 0, unicast pkts 0, multicast pkts 0, broadcast pkts 0, discards 0 + In errors 0, unknown protos 0 + Out octets 178404732, unicast pkts 3035, multicast pkts 132958, broadcast pkts 2214836, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 87016, type 0, idx 61, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 61, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 0, unicast pkts 0, multicast pkts 0, broadcast pkts 0, discards 0 + In errors 0, unknown protos 0 + Out octets 178368955, unicast pkts 3031, multicast pkts 132840, broadcast pkts 2214791, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 87096, type 0, idx 62, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 62, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 0, unicast pkts 0, multicast pkts 0, broadcast pkts 0, discards 0 + In errors 0, unknown protos 0 + Out octets 178404650, unicast pkts 3034, multicast pkts 132958, broadcast pkts 2214836, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 87096, type 0, idx 63, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 63, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 0, unicast pkts 0, multicast pkts 0, broadcast pkts 0, discards 0 + In errors 0, unknown protos 0 + Out octets 178404732, unicast pkts 3035, multicast pkts 132958, broadcast pkts 2214836, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 +IP (tos 0x0, ttl 253, id 12208, offset 0, flags [none], proto UDP (17), length 1316) + 15.184.1.195.4942 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.195, agent-id 1, seqnum 10499682, uptime 12973660, samples 7, length 1288 + expanded counter sample (4), length 172, seqnum 2007195, type 0, idx 1, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 1, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 2460750, unicast pkts 22544, multicast pkts 5, broadcast pkts 6408, discards 0 + In errors 0, unknown protos 0 + Out octets 3991394888, unicast pkts 131978, multicast pkts 2198965, broadcast pkts 48358863, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2006745, type 0, idx 2, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 2, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 122196260, unicast pkts 82823825, multicast pkts 710, broadcast pkts 38540, discards 0 + In errors 2, unknown protos 0 + Out octets 3744715166, unicast pkts 93942161, multicast pkts 2218252, broadcast pkts 48317917, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 2, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2007118, type 0, idx 3, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 3, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 87175881, unicast pkts 11173387, multicast pkts 1312, broadcast pkts 7310, discards 0 + In errors 0, unknown protos 0 + Out octets 2575091711, unicast pkts 8663056, multicast pkts 1949260, broadcast pkts 8701202, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2007648, type 0, idx 4, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 4, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 3013636604, unicast pkts 424917316, multicast pkts 1216, broadcast pkts 196654, discards 0 + In errors 0, unknown protos 0 + Out octets 584566587, unicast pkts 294167676, multicast pkts 1948957, broadcast pkts 8512276, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 1832884, type 0, idx 5, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 5, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 3835856598, unicast pkts 6812799, multicast pkts 1145, broadcast pkts 705277, discards 0 + In errors 0, unknown protos 0 + Out octets 2182764482, unicast pkts 8284848, multicast pkts 2738770, broadcast pkts 7987023, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2007139, type 0, idx 6, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 6, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 21722, unicast pkts 0, multicast pkts 12, broadcast pkts 37, discards 0 + In errors 0, unknown protos 0 + Out octets 1874046310, unicast pkts 98496, multicast pkts 1955062, broadcast pkts 20311831, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2006986, type 0, idx 7, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 7, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 3474926128, unicast pkts 10088201, multicast pkts 1463, broadcast pkts 14105, discards 0 + In errors 0, unknown protos 0 + Out octets 831378523, unicast pkts 12805926, multicast pkts 1954494, broadcast pkts 20293366, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 +IP (tos 0x0, ttl 253, id 12209, offset 0, flags [none], proto UDP (17), length 1316) + 15.184.1.195.4942 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.195, agent-id 1, seqnum 10499683, uptime 12973661, samples 7, length 1288 + expanded counter sample (4), length 172, seqnum 2007114, type 0, idx 8, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 8, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 3858988244, unicast pkts 13191097, multicast pkts 1215, broadcast pkts 24593, discards 0 + In errors 0, unknown protos 0 + Out octets 2559231968, unicast pkts 16126546, multicast pkts 1954848, broadcast pkts 20284429, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2007001, type 0, idx 9, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 9, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 3386316332, unicast pkts 14360061, multicast pkts 1244, broadcast pkts 16485, discards 0 + In errors 0, unknown protos 0 + Out octets 1675798901, unicast pkts 15790519, multicast pkts 1954451, broadcast pkts 20291225, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2005309, type 0, idx 10, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 10, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 1558898282, unicast pkts 162603641, multicast pkts 1331, broadcast pkts 188407, discards 0 + In errors 0, unknown protos 0 + Out octets 3568458580, unicast pkts 162582480, multicast pkts 1953553, broadcast pkts 20106780, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2007256, type 0, idx 11, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 11, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 125808339, unicast pkts 691735, multicast pkts 2539, broadcast pkts 22184, discards 0 + In errors 0, unknown protos 0 + Out octets 1249750181, unicast pkts 33020559, multicast pkts 2196657, broadcast pkts 48342104, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2007178, type 0, idx 12, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 12, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 45949249, unicast pkts 205456, multicast pkts 1743, broadcast pkts 8308, discards 0 + In errors 0, unknown protos 0 + Out octets 4019313234, unicast pkts 210496, multicast pkts 2197587, broadcast pkts 48353561, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2007155, type 0, idx 13, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 13, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 32111027, unicast pkts 143922, multicast pkts 1193, broadcast pkts 5276, discards 0 + In errors 0, unknown protos 0 + Out octets 4050797426, unicast pkts 198665, multicast pkts 2197850, broadcast pkts 48353779, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2006875, type 0, idx 14, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 14, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 19576, unicast pkts 19, multicast pkts 5, broadcast pkts 30, discards 0 + In errors 0, unknown protos 0 + Out octets 3990801228, unicast pkts 107683, multicast pkts 2199048, broadcast pkts 48364452, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 +IP (tos 0x0, ttl 253, id 12210, offset 0, flags [none], proto UDP (17), length 1316) + 15.184.1.195.4942 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.195, agent-id 1, seqnum 10499684, uptime 12973663, samples 7, length 1288 + expanded counter sample (4), length 172, seqnum 2007174, type 0, idx 15, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 15, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 96700793, unicast pkts 453020, multicast pkts 2568, broadcast pkts 22804, discards 0 + In errors 0, unknown protos 0 + Out octets 4042743345, unicast pkts 379591, multicast pkts 2196676, broadcast pkts 48338646, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2007085, type 0, idx 16, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 16, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 289703711, unicast pkts 1654844, multicast pkts 37302, broadcast pkts 22784, discards 0 + In errors 0, unknown protos 0 + Out octets 4098637095, unicast pkts 801788, multicast pkts 2166613, broadcast pkts 48320960, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2007171, type 0, idx 17, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 17, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 45204461, unicast pkts 194096, multicast pkts 1700, broadcast pkts 8788, discards 0 + In errors 0, unknown protos 0 + Out octets 4014792810, unicast pkts 198133, multicast pkts 2197652, broadcast pkts 48351768, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2007169, type 0, idx 18, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 18, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 95210366, unicast pkts 443561, multicast pkts 2169, broadcast pkts 24997, discards 0 + In errors 0, unknown protos 0 + Out octets 4035379503, unicast pkts 332327, multicast pkts 2196767, broadcast pkts 48336027, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2007264, type 0, idx 19, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 19, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 1379521296, unicast pkts 50010620, multicast pkts 1046, broadcast pkts 48921, discards 0 + In errors 0, unknown protos 0 + Out octets 435976335, unicast pkts 57993600, multicast pkts 2197958, broadcast pkts 48315375, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2007257, type 0, idx 20, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 20, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 312017292, unicast pkts 47238597, multicast pkts 1476, broadcast pkts 23377, discards 0 + In errors 0, unknown protos 0 + Out octets 3242136708, unicast pkts 57532634, multicast pkts 2198069, broadcast pkts 48339981, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2009604, type 0, idx 21, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 21, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 4127607826, unicast pkts 29906144, multicast pkts 1233, broadcast pkts 69575, discards 0 + In errors 0, unknown protos 0 + Out octets 2091792747, unicast pkts 3024931093, multicast pkts 2198065, broadcast pkts 48294332, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 +IP (tos 0x0, ttl 253, id 12211, offset 0, flags [none], proto UDP (17), length 1316) + 15.184.1.195.4942 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.195, agent-id 1, seqnum 10499685, uptime 12973664, samples 7, length 1288 + expanded counter sample (4), length 172, seqnum 2007104, type 0, idx 22, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 22, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 124432239, unicast pkts 511115, multicast pkts 21969, broadcast pkts 120004, discards 0 + In errors 0, unknown protos 0 + Out octets 3066166092, unicast pkts 2595939, multicast pkts 2177143, broadcast pkts 48244891, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2008568, type 0, idx 23, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 23, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 142412715, unicast pkts 4067695849, multicast pkts 1301, broadcast pkts 59350, discards 0 + In errors 0, unknown protos 0 + Out octets 3335716564, unicast pkts 2083658988, multicast pkts 2198160, broadcast pkts 48304443, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2009649, type 0, idx 24, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 24, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 1376243919, unicast pkts 42736656, multicast pkts 1161, broadcast pkts 37177, discards 0 + In errors 0, unknown protos 0 + Out octets 3949008841, unicast pkts 3045234063, multicast pkts 2197974, broadcast pkts 48326808, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2009621, type 0, idx 25, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 25, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 1314601210, unicast pkts 4258058414, multicast pkts 1154, broadcast pkts 42425, discards 0 + In errors 0, unknown protos 0 + Out octets 2836953588, unicast pkts 2986750860, multicast pkts 2197982, broadcast pkts 48321714, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2007193, type 0, idx 26, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 26, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 2022052468, unicast pkts 13527038, multicast pkts 933, broadcast pkts 57921, discards 0 + In errors 0, unknown protos 0 + Out octets 620629707, unicast pkts 19469425, multicast pkts 2198358, broadcast pkts 48305869, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2007253, type 0, idx 27, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 27, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 3262458931, unicast pkts 47684835, multicast pkts 1039, broadcast pkts 5299, discards 0 + In errors 3, unknown protos 0 + Out octets 3900626480, unicast pkts 54120142, multicast pkts 2198706, broadcast pkts 48356894, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 2, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2005148, type 0, idx 28, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 28, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 259120552, unicast pkts 1107924, multicast pkts 198, broadcast pkts 3429, discards 0 + In errors 2, unknown protos 0 + Out octets 653805810, unicast pkts 4189777, multicast pkts 2198871, broadcast pkts 48346830, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 2, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 +IP (tos 0x0, ttl 253, id 12212, offset 0, flags [none], proto UDP (17), length 1136) + 15.184.1.195.4942 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.195, agent-id 1, seqnum 10499686, uptime 12973800, samples 6, length 1108 + expanded counter sample (4), length 172, seqnum 2007268, type 0, idx 29, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 29, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 1267844166, unicast pkts 49781127, multicast pkts 1368, broadcast pkts 40480, discards 0 + In errors 0, unknown protos 0 + Out octets 321243842, unicast pkts 57718818, multicast pkts 2197767, broadcast pkts 48323189, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2009633, type 0, idx 30, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 30, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 1960827113, unicast pkts 4258067543, multicast pkts 1249, broadcast pkts 60280, discards 0 + In errors 0, unknown protos 0 + Out octets 3144893898, unicast pkts 3032873251, multicast pkts 2198370, broadcast pkts 48301571, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2017264, type 0, idx 50, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 50, iftype 117, ifspeed 10000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 4161963595, unicast pkts 3263163886, multicast pkts 1151176, broadcast pkts 287880328, discards 0 + In errors 0, unknown protos 0 + Out octets 296840057, unicast pkts 1684325909, multicast pkts 1126235, broadcast pkts 1405132663, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2017179, type 0, idx 51, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 51, iftype 117, ifspeed 10000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 2214905605, unicast pkts 2466386895, multicast pkts 5276601, broadcast pkts 1225128676, discards 0 + In errors 0, unknown protos 0 + Out octets 3025945518, unicast pkts 2183065991, multicast pkts 899419, broadcast pkts 2308600565, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 1220659, type 0, idx 52, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 52, iftype 117, ifspeed 10000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 3618900052, unicast pkts 334487763, multicast pkts 651947, broadcast pkts 3712423535, discards 0 + In errors 1, unknown protos 0 + Out octets 697413100, unicast pkts 537120139, multicast pkts 163886, broadcast pkts 4083094099, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 1, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 1 + expanded counter sample (4), length 172, seqnum 1220562, type 0, idx 53, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 53, iftype 117, ifspeed 10000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 851207797, unicast pkts 325440428, multicast pkts 164171, broadcast pkts 21946044, discards 0 + In errors 0, unknown protos 0 + Out octets 1855403849, unicast pkts 517660679, multicast pkts 163669, broadcast pkts 21301, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 +IP (tos 0x0, ttl 253, id 23656, offset 0, flags [none], proto UDP (17), length 236) + 15.184.1.76.40948 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.8.4, agent-id 2, seqnum 204721, uptime 2612972594, samples 1, length 208 + expanded counter sample (4), length 172, seqnum 87243, type 0, idx 105, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 105, iftype 117, ifspeed 10000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 1063772406, unicast pkts 81120, multicast pkts 174318, broadcast pkts 3847558651, discards 0 + In errors 6, unknown protos 0 + Out octets 3728106697, unicast pkts 53832149, multicast pkts 218554, broadcast pkts 2160868, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 6, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 4 +IP (tos 0x0, ttl 253, id 27097, offset 0, flags [none], proto UDP (17), length 1316) + 15.184.1.194.3099 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.194, agent-id 1, seqnum 10354082, uptime 15617401, samples 7, length 1288 + expanded counter sample (4), length 172, seqnum 2007459, type 0, idx 1, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 1, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 398, unicast pkts 0, multicast pkts 5, broadcast pkts 0, discards 0 + In errors 0, unknown protos 0 + Out octets 3980656605, unicast pkts 65082, multicast pkts 2199480, broadcast pkts 48372199, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2007455, type 0, idx 2, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 2, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 1444442513, unicast pkts 69372226, multicast pkts 1207, broadcast pkts 31114, discards 0 + In errors 0, unknown protos 0 + Out octets 1845546441, unicast pkts 41823689, multicast pkts 2201740, broadcast pkts 48335077, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2007396, type 0, idx 3, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 3, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 200763454, unicast pkts 891785, multicast pkts 982, broadcast pkts 13320, discards 0 + In errors 1, unknown protos 0 + Out octets 3317395016, unicast pkts 5225674, multicast pkts 1949791, broadcast pkts 8711770, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 1, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2007402, type 0, idx 4, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 4, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 165801154, unicast pkts 662297, multicast pkts 491, broadcast pkts 15752, discards 0 + In errors 0, unknown protos 0 + Out octets 2164450538, unicast pkts 1115261, multicast pkts 1949901, broadcast pkts 8709518, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 1993492, type 0, idx 5, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 5, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 198991268, unicast pkts 941829, multicast pkts 664, broadcast pkts 33726, discards 0 + In errors 1, unknown protos 0 + Out octets 4052534333, unicast pkts 2591418, multicast pkts 1994963, broadcast pkts 8691000, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 1, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 1, frames too long 0, mac receive errors 0, symbol errors 1 + expanded counter sample (4), length 172, seqnum 2007737, type 0, idx 6, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 6, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 561751280, unicast pkts 575605209, multicast pkts 1250, broadcast pkts 15322854, discards 0 + In errors 1, unknown protos 0 + Out octets 1513353683, unicast pkts 602598577, multicast pkts 1954404, broadcast pkts 4990177, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2008403, type 0, idx 7, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 7, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 3193665198, unicast pkts 642460773, multicast pkts 1401, broadcast pkts 219741, discards 0 + In errors 0, unknown protos 0 + Out octets 2913194238, unicast pkts 390983681, multicast pkts 1955407, broadcast pkts 20090610, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 +IP (tos 0x0, ttl 253, id 27098, offset 0, flags [none], proto UDP (17), length 1316) + 15.184.1.194.3099 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.194, agent-id 1, seqnum 10354083, uptime 15617403, samples 7, length 1288 + expanded counter sample (4), length 172, seqnum 2008394, type 0, idx 8, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 8, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 1089063112, unicast pkts 559652885, multicast pkts 634, broadcast pkts 224712, discards 0 + In errors 0, unknown protos 0 + Out octets 3489201031, unicast pkts 383200930, multicast pkts 1955795, broadcast pkts 20085985, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2008429, type 0, idx 9, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 9, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 2436646808, unicast pkts 568003495, multicast pkts 906, broadcast pkts 16545, discards 0 + In errors 0, unknown protos 0 + Out octets 1717246279, unicast pkts 389888234, multicast pkts 1955669, broadcast pkts 20294132, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2005878, type 0, idx 10, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 10, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 105616289, unicast pkts 531333, multicast pkts 768, broadcast pkts 9159, discards 0 + In errors 0, unknown protos 0 + Out octets 10387408, unicast pkts 2209569, multicast pkts 1954606, broadcast pkts 20288646, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2007661, type 0, idx 11, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 11, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 1801369357, unicast pkts 137590483, multicast pkts 2109, broadcast pkts 55528, discards 0 + In errors 0, unknown protos 0 + Out octets 1769140298, unicast pkts 113363667, multicast pkts 2197521, broadcast pkts 48315560, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2007552, type 0, idx 12, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 12, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 4201581256, unicast pkts 45842890, multicast pkts 1610, broadcast pkts 22730, discards 0 + In errors 0, unknown protos 0 + Out octets 1948082196, unicast pkts 53163690, multicast pkts 2198297, broadcast pkts 48348226, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2007540, type 0, idx 13, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 13, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 1019109063, unicast pkts 46613839, multicast pkts 1236, broadcast pkts 22226, discards 0 + In errors 0, unknown protos 0 + Out octets 2052469045, unicast pkts 53287225, multicast pkts 2198499, broadcast pkts 48348754, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2010424, type 0, idx 14, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 14, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 36138805, unicast pkts 2267783883, multicast pkts 298, broadcast pkts 38306126, discards 0 + In errors 2, unknown protos 0 + Out octets 614425293, unicast pkts 2014274284, multicast pkts 2199305, broadcast pkts 10065409, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 2, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 +IP (tos 0x0, ttl 253, id 27099, offset 0, flags [none], proto UDP (17), length 1316) + 15.184.1.194.3099 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.194, agent-id 1, seqnum 10354084, uptime 15617404, samples 7, length 1288 + expanded counter sample (4), length 172, seqnum 2009508, type 0, idx 15, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 15, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 601225935, unicast pkts 4276033652, multicast pkts 1612, broadcast pkts 34856, discards 0 + In errors 0, unknown protos 0 + Out octets 1981555755, unicast pkts 2886814164, multicast pkts 2198139, broadcast pkts 48336014, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2007691, type 0, idx 16, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 16, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 4196949353, unicast pkts 109362236, multicast pkts 10140, broadcast pkts 40757, discards 0 + In errors 0, unknown protos 0 + Out octets 703618451, unicast pkts 113710944, multicast pkts 2190477, broadcast pkts 48326386, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2007530, type 0, idx 17, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 17, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 4170852137, unicast pkts 45863536, multicast pkts 1559, broadcast pkts 27211, discards 0 + In errors 0, unknown protos 0 + Out octets 2026848065, unicast pkts 53131746, multicast pkts 2198420, broadcast pkts 48343547, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2009475, type 0, idx 18, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 18, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 125400617, unicast pkts 3953942566, multicast pkts 1121, broadcast pkts 35754, discards 0 + In errors 0, unknown protos 0 + Out octets 3010600832, unicast pkts 2658737621, multicast pkts 2198495, broadcast pkts 48334857, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2007417, type 0, idx 19, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 19, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 97068375, unicast pkts 444889, multicast pkts 1007, broadcast pkts 8350, discards 0 + In errors 0, unknown protos 0 + Out octets 4110456622, unicast pkts 336462, multicast pkts 2198059, broadcast pkts 48354968, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2007243, type 0, idx 20, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 20, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 85827864, unicast pkts 397199, multicast pkts 1855, broadcast pkts 9570, discards 0 + In errors 0, unknown protos 0 + Out octets 4029102009, unicast pkts 295961, multicast pkts 2196786, broadcast pkts 48315955, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2007206, type 0, idx 21, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 21, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 91053304, unicast pkts 438205, multicast pkts 1011, broadcast pkts 7940, discards 0 + In errors 0, unknown protos 0 + Out octets 4103297026, unicast pkts 317273, multicast pkts 2197586, broadcast pkts 48306440, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 +IP (tos 0x0, ttl 253, id 27100, offset 0, flags [none], proto UDP (17), length 1316) + 15.184.1.194.3099 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.194, agent-id 1, seqnum 10354085, uptime 15617405, samples 7, length 1288 + expanded counter sample (4), length 172, seqnum 2006231, type 0, idx 22, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 22, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 34112098, unicast pkts 105160, multicast pkts 21890, broadcast pkts 87902, discards 0 + In errors 0, unknown protos 0 + Out octets 3973831211, unicast pkts 170034, multicast pkts 2177391, broadcast pkts 48280299, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2007385, type 0, idx 23, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 23, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 88669719, unicast pkts 426910, multicast pkts 1274, broadcast pkts 9963, discards 0 + In errors 0, unknown protos 0 + Out octets 4040560781, unicast pkts 263325, multicast pkts 2198421, broadcast pkts 48355369, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2007419, type 0, idx 24, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 24, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 91303939, unicast pkts 434713, multicast pkts 1082, broadcast pkts 9160, discards 0 + In errors 0, unknown protos 0 + Out octets 4108976190, unicast pkts 328918, multicast pkts 2198317, broadcast pkts 48355036, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2007417, type 0, idx 25, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 25, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 92997371, unicast pkts 447348, multicast pkts 1121, broadcast pkts 9663, discards 0 + In errors 0, unknown protos 0 + Out octets 4037714536, unicast pkts 258087, multicast pkts 2198271, broadcast pkts 48354566, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2007413, type 0, idx 26, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 26, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 736394053, unicast pkts 4302342, multicast pkts 1537, broadcast pkts 9112, discards 0 + In errors 0, unknown protos 0 + Out octets 4154005710, unicast pkts 612617, multicast pkts 2197991, broadcast pkts 48350433, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2007109, type 0, idx 27, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 27, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 7325604, unicast pkts 91520, multicast pkts 1016, broadcast pkts 2335, discards 0 + In errors 0, unknown protos 0 + Out octets 4107132478, unicast pkts 154975, multicast pkts 2199118, broadcast pkts 48364314, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2004644, type 0, idx 28, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 28, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 15584594, unicast pkts 232478, multicast pkts 12, broadcast pkts 1252, discards 0 + In errors 0, unknown protos 0 + Out octets 250802552, unicast pkts 447550, multicast pkts 2198406, broadcast pkts 48250290, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 +IP (tos 0x0, ttl 63, id 0, offset 0, flags [DF], proto UDP (17), length 488) + 15.184.4.165.49408 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.4.165, agent-id 100, seqnum 304697, uptime 568980408, samples 1, length 460 + counter sample (2), length 424, seqnum 304697, type 2, idx 1, records 6 + enterprise 0, Unknown (2001) length 68 + 0x0000: 0000 0004 0000 0002 0000 0001 1cc1 de18 + 0x0010: 96f0 0000 0000 0003 0000 0001 1cc1 de18 + 0x0020: 96f0 0000 0000 0005 0000 0001 1cc1 de18 + 0x0030: 96f0 0000 0000 0006 0000 0001 0000 0000 + 0x0040: 0000 0000 + enterprise 0, Unknown (2005) length 52 + 0x0000: 0000 01ce 1562 3800 0000 01b5 5abb 6000 + 0x0010: 0000 07a2 0002 2ed1 0000 0000 ad27 5000 + 0x0020: 0011 36a1 03c8 c6c6 0000 014c e1b6 8800 + 0x0030: 1016 b722 + enterprise 0, Unknown (2004) length 72 + 0x0000: 0000 0005 e225 c000 0000 0003 848a 3000 + 0x0010: 0000 0000 0000 0000 0000 0000 13bf c000 + 0x0020: 0000 0002 3662 0000 0000 0000 0000 0000 + 0x0030: 0000 0000 0000 0000 0015 af62 299c 36d1 + 0x0040: 0000 0000 0000 0000 + enterprise 0, Unknown (2003) length 68 + 0x0000: 3ca3 d70a 3c23 d70a 3d23 d70a 0000 0001 + 0x0010: 0000 0186 0000 0018 0000 0640 0096 43b9 + 0x0020: 1e74 d09c 0187 6bc0 142d 000a cc79 de36 + 0x0030: 00a5 dd9a 0051 60bc 041a 9f4c 7a8f 6da7 + 0x0040: 3842 8b86 + enterprise 0, Unknown (2006) length 40 + 0x0000: 0000 16b2 0b31 f24e fcb8 d0dc 0000 0000 + 0x0010: 0000 032a 0000 36b3 f8ae 8e96 0ab2 541e + 0x0020: 0000 0000 0000 0000 + enterprise 0, Unknown (2000) length 64 + 0x0000: 0000 0010 7072 6f78 792d 7573 6530 3331 + 0x0010: 3437 6b32 3638 3935 3431 5355 4530 3331 + 0x0020: 3437 4b32 0000 0003 0000 0002 0000 000e + 0x0030: 322e 362e 3138 2d31 3934 2e65 6c35 0000 +IP (tos 0x0, ttl 254, id 0, offset 0, flags [none], proto UDP (17), length 100) + 168.87.240.2.40000 > 15.184.3.9.6343: sFlow version 327681 packet not supported +IP (tos 0x0, ttl 255, id 16476, offset 0, flags [none], proto UDP (17), length 1316) + 15.184.3.1.41024 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.129, agent-id 2, seqnum 211306, uptime 2441326183, samples 7, length 1288 + expanded counter sample (4), length 172, seqnum 81390, type 0, idx 56, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 56, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 809903675, unicast pkts 3736015, multicast pkts 162927, broadcast pkts 30039, discards 0 + In errors 0, unknown protos 0 + Out octets 3159365496, unicast pkts 3749574, multicast pkts 328087, broadcast pkts 279825377, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 6536, type 0, idx 33, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 33, iftype 117, ifspeed 10000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 2950591154, unicast pkts 334880915, multicast pkts 13078, broadcast pkts 633, discards 0 + In errors 0, unknown protos 0 + Out octets 3019300047, unicast pkts 221588667, multicast pkts 13070, broadcast pkts 62903, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 81076, type 0, idx 34, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 34, iftype 117, ifspeed 10000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 49685433, unicast pkts 2528128710, multicast pkts 162056, broadcast pkts 1220, discards 0 + In errors 0, unknown protos 0 + Out octets 2876151927, unicast pkts 678847059, multicast pkts 163438, broadcast pkts 1810770236, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 81493, type 0, idx 35, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 35, iftype 117, ifspeed 10000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 408342602, unicast pkts 2796427385, multicast pkts 751161, broadcast pkts 740734824, discards 0 + In errors 0, unknown protos 0 + Out octets 642300096, unicast pkts 1951849543, multicast pkts 183235, broadcast pkts 22658, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 81669, type 0, idx 37, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 37, iftype 117, ifspeed 10000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 1461246724, unicast pkts 1380492582, multicast pkts 163835, broadcast pkts 140670, discards 0 + In errors 0, unknown protos 0 + Out octets 498812438, unicast pkts 3834735035, multicast pkts 174908, broadcast pkts 1255093219, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 81390, type 0, idx 38, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 38, iftype 117, ifspeed 10000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 71981454, unicast pkts 214133, multicast pkts 162760, broadcast pkts 157, discards 0 + In errors 0, unknown protos 0 + Out octets 3267993738, unicast pkts 2856556, multicast pkts 164514, broadcast pkts 1813907262, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 81434, type 0, idx 39, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 39, iftype 117, ifspeed 10000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 3630784674, unicast pkts 832589817, multicast pkts 162837, broadcast pkts 84051, discards 0 + In errors 0, unknown protos 0 + Out octets 3008452523, unicast pkts 1179091938, multicast pkts 164436, broadcast pkts 1814098221, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 +IP (tos 0x0, ttl 255, id 16477, offset 0, flags [none], proto UDP (17), length 596) + 15.184.3.1.41024 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.129, agent-id 2, seqnum 211307, uptime 2441326343, samples 3, length 568 + expanded counter sample (4), length 172, seqnum 81390, type 0, idx 40, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 40, iftype 117, ifspeed 10000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 38989430, unicast pkts 0, multicast pkts 162755, broadcast pkts 3, discards 0 + In errors 0, unknown protos 0 + Out octets 2802182351, unicast pkts 56820, multicast pkts 165686, broadcast pkts 1814332502, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 81138, type 0, idx 41, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 41, iftype 117, ifspeed 10000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 46653626, unicast pkts 85863, multicast pkts 27682, broadcast pkts 478300, discards 0 + In errors 0, unknown protos 0 + Out octets 311406364, unicast pkts 80002, multicast pkts 1261847, broadcast pkts 1178283, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 81376, type 0, idx 50, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 50, iftype 117, ifspeed 10000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 2331728577, unicast pkts 108446058, multicast pkts 81380, broadcast pkts 1837, discards 0 + In errors 0, unknown protos 0 + Out octets 330353971, unicast pkts 160483289, multicast pkts 1588895, broadcast pkts 1448152, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 +IP (tos 0x0, ttl 254, id 50953, offset 0, flags [none], proto UDP (17), length 956) + 168.87.240.3.50340 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.129, agent-id 6, seqnum 444098, uptime 127118529, samples 5, length 928 + expanded counter sample (4), length 172, seqnum 147400, type 0, idx 60, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 60, iftype 117, ifspeed 10000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 72510805, unicast pkts 0, multicast pkts 294749, broadcast pkts 0, discards 0 + In errors 0, unknown protos 0 + Out octets 123866349, unicast pkts 13446, multicast pkts 736973, broadcast pkts 117224, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 147400, type 0, idx 61, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 61, iftype 117, ifspeed 10000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 72511166, unicast pkts 0, multicast pkts 294750, broadcast pkts 0, discards 0 + In errors 0, unknown protos 0 + Out octets 2101933816, unicast pkts 33990, multicast pkts 368505, broadcast pkts 42768255, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 147400, type 0, idx 62, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 62, iftype 117, ifspeed 10000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 89171611, unicast pkts 5392, multicast pkts 294750, broadcast pkts 49641, discards 0 + In errors 0, unknown protos 0 + Out octets 124086999, unicast pkts 11982, multicast pkts 736973, broadcast pkts 117224, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 147400, type 0, idx 63, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 63, iftype 117, ifspeed 10000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 71037120, unicast pkts 0, multicast pkts 294748, broadcast pkts 0, discards 0 + In errors 0, unknown protos 0 + Out octets 2101596784, unicast pkts 29476, multicast pkts 368505, broadcast pkts 42768255, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 147400, type 0, idx 64, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 64, iftype 117, ifspeed 10000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 71037922, unicast pkts 0, multicast pkts 294751, broadcast pkts 0, discards 0 + In errors 0, unknown protos 0 + Out octets 123494040, unicast pkts 7500, multicast pkts 736973, broadcast pkts 117224, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 +IP (tos 0x0, ttl 253, id 27101, offset 0, flags [none], proto UDP (17), length 1136) + 15.184.1.194.3099 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.194, agent-id 1, seqnum 10354086, uptime 15618312, samples 6, length 1108 + expanded counter sample (4), length 172, seqnum 2007421, type 0, idx 29, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 29, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 82208831, unicast pkts 403685, multicast pkts 1054, broadcast pkts 8246, discards 0 + In errors 0, unknown protos 0 + Out octets 4103781979, unicast pkts 294994, multicast pkts 2198185, broadcast pkts 48352457, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2007311, type 0, idx 30, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 30, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 92569896, unicast pkts 433051, multicast pkts 1312, broadcast pkts 12292, discards 0 + In errors 0, unknown protos 0 + Out octets 4037227515, unicast pkts 268387, multicast pkts 2197973, broadcast pkts 48326301, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2018134, type 0, idx 50, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 50, iftype 117, ifspeed 10000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 1215684621, unicast pkts 3179986010, multicast pkts 4299773, broadcast pkts 2959481171, discards 0 + In errors 0, unknown protos 0 + Out octets 832983248, unicast pkts 684975702, multicast pkts 1115367, broadcast pkts 45280648, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 1221174, type 0, idx 51, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 51, iftype 117, ifspeed 10000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 576720530, unicast pkts 537564819, multicast pkts 1613151, broadcast pkts 660268633, discards 0 + In errors 0, unknown protos 0 + Out octets 428264565, unicast pkts 1068854786, multicast pkts 344705, broadcast pkts 9140809, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 1221287, type 0, idx 52, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 52, iftype 117, ifspeed 10000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 3028289271, unicast pkts 458255786, multicast pkts 651461, broadcast pkts 541454, discards 0 + In errors 0, unknown protos 0 + Out octets 3361225808, unicast pkts 1109386475, multicast pkts 163507, broadcast pkts 8683, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 1221183, type 0, idx 53, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 53, iftype 117, ifspeed 10000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 2050689076, unicast pkts 476082627, multicast pkts 164214, broadcast pkts 21756786, discards 0 + In errors 0, unknown protos 0 + Out octets 2159078261, unicast pkts 1043897297, multicast pkts 163510, broadcast pkts 210489, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 +IP (tos 0x0, ttl 62, id 0, offset 0, flags [DF], proto UDP (17), length 452) + 15.184.13.248.50229 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.13.52, agent-id 100, seqnum 26626, uptime 798762000, samples 1, length 424 + counter sample (2), length 388, seqnum 26626, type 2, idx 1, records 6 + enterprise 0, Unknown (2001) length 36 + 0x0000: 0000 0002 0000 0002 0000 0001 d485 64cc + 0x0010: 6024 0000 0000 0003 0000 0001 d485 64cc + 0x0020: 6025 0000 + enterprise 0, Unknown (2005) length 52 + 0x0000: 0000 0018 3daa e800 0000 0016 50cb 8000 + 0x0010: 0000 07e5 0000 bac1 0000 0000 29ac 2400 + 0x0020: 0003 3cc1 0044 1f88 0000 000c eeff 1000 + 0x0030: 0011 78ce + enterprise 0, Unknown (2004) length 72 + 0x0000: 0000 0003 caa6 5000 0000 0003 9dc3 3000 + 0x0010: 0000 0000 0000 0000 0000 0000 0a33 d000 + 0x0020: 0000 0000 1a2a 4000 0000 0000 7ff5 6000 + 0x0030: 0000 0000 7ff5 6000 0005 3fea 019d dfe2 + 0x0040: 0000 0000 0000 0000 + enterprise 0, Unknown (2003) length 68 + 0x0000: 0000 0000 0000 0000 0000 0000 0000 0001 + 0x0010: 0000 0153 0000 0018 0000 0640 000c 3077 + 0x0020: 0033 efdc 0000 02da 0015 f7b6 7652 2a4a + 0x0030: 0002 204c 0000 36ba 0001 458c 306c a669 + 0x0040: e653 ddf6 + enterprise 0, Unknown (2006) length 40 + 0x0000: 0000 0000 2550 2198 005a d481 0000 0000 + 0x0010: 0000 0000 0000 0000 1a2e 15ef 002a 4d2a + 0x0020: 0000 0000 0000 0000 + enterprise 0, Unknown (2000) length 60 + 0x0000: 0000 000a 7573 6530 3337 3130 6666 0000 + 0x0010: 3431 3036 3630 5355 4530 3337 3130 4646 + 0x0020: 0000 0003 0000 0002 0000 000e 322e 362e + 0x0030: 3138 2d31 3934 2e65 6c35 0000 +IP (tos 0x0, ttl 254, id 0, offset 0, flags [none], proto UDP (17), length 100) + 168.87.240.1.40000 > 15.184.3.9.6343: sFlow version 327681 packet not supported +IP (tos 0x0, ttl 254, id 0, offset 0, flags [none], proto UDP (17), length 148) + 168.87.240.1.40000 > 15.184.3.9.6343: sFlow version 327682 packet not supported +IP (tos 0x0, ttl 254, id 8886, offset 0, flags [none], proto UDP (17), length 100) + 168.87.240.1.40000 > 15.184.3.9.6343: sFlow version 327681 packet not supported +IP (tos 0x0, ttl 254, id 0, offset 0, flags [none], proto UDP (17), length 148) + 168.87.240.2.40000 > 15.184.3.9.6343: sFlow version 327682 packet not supported +IP (tos 0x0, ttl 254, id 50954, offset 0, flags [none], proto UDP (17), length 596) + 168.87.240.3.50340 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.129, agent-id 6, seqnum 444099, uptime 127119529, samples 3, length 568 + expanded counter sample (4), length 172, seqnum 147400, type 0, idx 65, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 65, iftype 117, ifspeed 10000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 71855431, unicast pkts 5778, multicast pkts 294751, broadcast pkts 0, discards 0 + In errors 0, unknown protos 0 + Out octets 2102528585, unicast pkts 40099, multicast pkts 368505, broadcast pkts 42768255, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 147400, type 0, idx 66, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 66, iftype 117, ifspeed 10000000000, ifdirection 1 (full-duplex) + ifstatus 1, adminstatus: up, operstatus: down + In octets 25177702, unicast pkts 0, multicast pkts 104472, broadcast pkts 4, discards 0 + In errors 0, unknown protos 0 + Out octets 39878920, unicast pkts 4387, multicast pkts 261178, broadcast pkts 1, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 147400, type 0, idx 67, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 67, iftype 117, ifspeed 10000000000, ifdirection 1 (full-duplex) + ifstatus 1, adminstatus: up, operstatus: down + In octets 25284454, unicast pkts 0, multicast pkts 104859, broadcast pkts 4, discards 0 + In errors 0, unknown protos 0 + Out octets 31308450, unicast pkts 5841, multicast pkts 133252, broadcast pkts 299, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 +IP (tos 0x0, ttl 253, id 12213, offset 0, flags [none], proto UDP (17), length 1316) + 15.184.1.195.4942 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.195, agent-id 1, seqnum 10499687, uptime 12975660, samples 7, length 1288 + expanded counter sample (4), length 172, seqnum 2007196, type 0, idx 1, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 1, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 2460750, unicast pkts 22544, multicast pkts 5, broadcast pkts 6408, discards 0 + In errors 0, unknown protos 0 + Out octets 3991394888, unicast pkts 131978, multicast pkts 2198965, broadcast pkts 48358863, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2006746, type 0, idx 2, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 2, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 122196260, unicast pkts 82823825, multicast pkts 710, broadcast pkts 38540, discards 0 + In errors 2, unknown protos 0 + Out octets 3744715166, unicast pkts 93942161, multicast pkts 2218252, broadcast pkts 48317917, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 2, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2007119, type 0, idx 3, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 3, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 87175881, unicast pkts 11173387, multicast pkts 1312, broadcast pkts 7310, discards 0 + In errors 0, unknown protos 0 + Out octets 2575091711, unicast pkts 8663056, multicast pkts 1949260, broadcast pkts 8701202, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2007649, type 0, idx 4, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 4, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 3013639728, unicast pkts 424917338, multicast pkts 1216, broadcast pkts 196654, discards 0 + In errors 0, unknown protos 0 + Out octets 584569975, unicast pkts 294167698, multicast pkts 1948957, broadcast pkts 8512276, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 1832885, type 0, idx 5, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 5, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 3835856598, unicast pkts 6812799, multicast pkts 1145, broadcast pkts 705277, discards 0 + In errors 0, unknown protos 0 + Out octets 2182764482, unicast pkts 8284848, multicast pkts 2738770, broadcast pkts 7987023, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2007140, type 0, idx 6, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 6, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 21722, unicast pkts 0, multicast pkts 12, broadcast pkts 37, discards 0 + In errors 0, unknown protos 0 + Out octets 1874046630, unicast pkts 98496, multicast pkts 1955062, broadcast pkts 20311836, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2006987, type 0, idx 7, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 7, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 3474926128, unicast pkts 10088201, multicast pkts 1463, broadcast pkts 14105, discards 0 + In errors 0, unknown protos 0 + Out octets 831378843, unicast pkts 12805926, multicast pkts 1954494, broadcast pkts 20293371, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 +IP (tos 0x0, ttl 253, id 12214, offset 0, flags [none], proto UDP (17), length 1316) + 15.184.1.195.4942 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.195, agent-id 1, seqnum 10499688, uptime 12975661, samples 7, length 1288 + expanded counter sample (4), length 172, seqnum 2007115, type 0, idx 8, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 8, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 3858988244, unicast pkts 13191097, multicast pkts 1215, broadcast pkts 24593, discards 0 + In errors 0, unknown protos 0 + Out octets 2559232288, unicast pkts 16126546, multicast pkts 1954848, broadcast pkts 20284434, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2007002, type 0, idx 9, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 9, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 3386316332, unicast pkts 14360061, multicast pkts 1244, broadcast pkts 16485, discards 0 + In errors 0, unknown protos 0 + Out octets 1675799221, unicast pkts 15790519, multicast pkts 1954451, broadcast pkts 20291230, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2005310, type 0, idx 10, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 10, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 1558898282, unicast pkts 162603641, multicast pkts 1331, broadcast pkts 188407, discards 0 + In errors 0, unknown protos 0 + Out octets 3568458900, unicast pkts 162582480, multicast pkts 1953553, broadcast pkts 20106785, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2007257, type 0, idx 11, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 11, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 125808339, unicast pkts 691735, multicast pkts 2539, broadcast pkts 22184, discards 0 + In errors 0, unknown protos 0 + Out octets 1249750181, unicast pkts 33020559, multicast pkts 2196657, broadcast pkts 48342104, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2007179, type 0, idx 12, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 12, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 45949249, unicast pkts 205456, multicast pkts 1743, broadcast pkts 8308, discards 0 + In errors 0, unknown protos 0 + Out octets 4019313234, unicast pkts 210496, multicast pkts 2197587, broadcast pkts 48353561, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2007156, type 0, idx 13, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 13, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 32111027, unicast pkts 143922, multicast pkts 1193, broadcast pkts 5276, discards 0 + In errors 0, unknown protos 0 + Out octets 4050797426, unicast pkts 198665, multicast pkts 2197850, broadcast pkts 48353779, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2006876, type 0, idx 14, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 14, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 19576, unicast pkts 19, multicast pkts 5, broadcast pkts 30, discards 0 + In errors 0, unknown protos 0 + Out octets 3990801228, unicast pkts 107683, multicast pkts 2199048, broadcast pkts 48364452, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 +IP (tos 0x0, ttl 253, id 12215, offset 0, flags [none], proto UDP (17), length 1316) + 15.184.1.195.4942 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.195, agent-id 1, seqnum 10499689, uptime 12975663, samples 7, length 1288 + expanded counter sample (4), length 172, seqnum 2007175, type 0, idx 15, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 15, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 96700793, unicast pkts 453020, multicast pkts 2568, broadcast pkts 22804, discards 0 + In errors 0, unknown protos 0 + Out octets 4042743345, unicast pkts 379591, multicast pkts 2196676, broadcast pkts 48338646, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2007086, type 0, idx 16, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 16, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 289703711, unicast pkts 1654844, multicast pkts 37302, broadcast pkts 22784, discards 0 + In errors 0, unknown protos 0 + Out octets 4098637095, unicast pkts 801788, multicast pkts 2166613, broadcast pkts 48320960, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2007172, type 0, idx 17, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 17, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 45204461, unicast pkts 194096, multicast pkts 1700, broadcast pkts 8788, discards 0 + In errors 0, unknown protos 0 + Out octets 4014792810, unicast pkts 198133, multicast pkts 2197652, broadcast pkts 48351768, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2007170, type 0, idx 18, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 18, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 95210366, unicast pkts 443561, multicast pkts 2169, broadcast pkts 24997, discards 0 + In errors 0, unknown protos 0 + Out octets 4035379503, unicast pkts 332327, multicast pkts 2196767, broadcast pkts 48336027, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2007265, type 0, idx 19, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 19, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 1379521296, unicast pkts 50010620, multicast pkts 1046, broadcast pkts 48921, discards 0 + In errors 0, unknown protos 0 + Out octets 435976335, unicast pkts 57993600, multicast pkts 2197958, broadcast pkts 48315375, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2007258, type 0, idx 20, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 20, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 312017292, unicast pkts 47238597, multicast pkts 1476, broadcast pkts 23377, discards 0 + In errors 0, unknown protos 0 + Out octets 3242136708, unicast pkts 57532634, multicast pkts 2198069, broadcast pkts 48339981, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2009605, type 0, idx 21, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 21, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 4127607826, unicast pkts 29906144, multicast pkts 1233, broadcast pkts 69575, discards 0 + In errors 0, unknown protos 0 + Out octets 2091792747, unicast pkts 3024931093, multicast pkts 2198065, broadcast pkts 48294332, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 +IP (tos 0x0, ttl 253, id 12216, offset 0, flags [none], proto UDP (17), length 1316) + 15.184.1.195.4942 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.195, agent-id 1, seqnum 10499690, uptime 12975664, samples 7, length 1288 + expanded counter sample (4), length 172, seqnum 2007105, type 0, idx 22, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 22, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 124432239, unicast pkts 511115, multicast pkts 21969, broadcast pkts 120004, discards 0 + In errors 0, unknown protos 0 + Out octets 3066166092, unicast pkts 2595939, multicast pkts 2177143, broadcast pkts 48244891, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2008569, type 0, idx 23, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 23, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 142412715, unicast pkts 4067695849, multicast pkts 1301, broadcast pkts 59350, discards 0 + In errors 0, unknown protos 0 + Out octets 3335716564, unicast pkts 2083658988, multicast pkts 2198160, broadcast pkts 48304443, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2009650, type 0, idx 24, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 24, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 1376243919, unicast pkts 42736656, multicast pkts 1161, broadcast pkts 37177, discards 0 + In errors 0, unknown protos 0 + Out octets 3949008841, unicast pkts 3045234063, multicast pkts 2197974, broadcast pkts 48326808, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2009622, type 0, idx 25, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 25, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 1314601210, unicast pkts 4258058414, multicast pkts 1154, broadcast pkts 42425, discards 0 + In errors 0, unknown protos 0 + Out octets 2836953588, unicast pkts 2986750860, multicast pkts 2197982, broadcast pkts 48321714, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2007194, type 0, idx 26, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 26, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 2022052468, unicast pkts 13527038, multicast pkts 933, broadcast pkts 57921, discards 0 + In errors 0, unknown protos 0 + Out octets 620629707, unicast pkts 19469425, multicast pkts 2198358, broadcast pkts 48305869, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2007254, type 0, idx 27, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 27, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 3262458931, unicast pkts 47684835, multicast pkts 1039, broadcast pkts 5299, discards 0 + In errors 3, unknown protos 0 + Out octets 3900626480, unicast pkts 54120142, multicast pkts 2198706, broadcast pkts 48356894, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 2, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2005149, type 0, idx 28, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 28, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 259120552, unicast pkts 1107924, multicast pkts 198, broadcast pkts 3429, discards 0 + In errors 2, unknown protos 0 + Out octets 653805810, unicast pkts 4189777, multicast pkts 2198871, broadcast pkts 48346830, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 2, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 +IP (tos 0x0, ttl 253, id 12217, offset 0, flags [none], proto UDP (17), length 1136) + 15.184.1.195.4942 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.195, agent-id 1, seqnum 10499691, uptime 12975801, samples 6, length 1108 + expanded counter sample (4), length 172, seqnum 2007269, type 0, idx 29, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 29, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 1267844166, unicast pkts 49781127, multicast pkts 1368, broadcast pkts 40480, discards 0 + In errors 0, unknown protos 0 + Out octets 321243842, unicast pkts 57718818, multicast pkts 2197767, broadcast pkts 48323189, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2009634, type 0, idx 30, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 30, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 1960827113, unicast pkts 4258067543, multicast pkts 1249, broadcast pkts 60280, discards 0 + In errors 0, unknown protos 0 + Out octets 3144893898, unicast pkts 3032873251, multicast pkts 2198370, broadcast pkts 48301571, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2017265, type 0, idx 50, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 50, iftype 117, ifspeed 10000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 4161963799, unicast pkts 3263163886, multicast pkts 1151176, broadcast pkts 287880331, discards 0 + In errors 0, unknown protos 0 + Out octets 296849779, unicast pkts 1684325936, multicast pkts 1126235, broadcast pkts 1405132663, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2017180, type 0, idx 51, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 51, iftype 117, ifspeed 10000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 2214905605, unicast pkts 2466386895, multicast pkts 5276601, broadcast pkts 1225128676, discards 0 + In errors 0, unknown protos 0 + Out octets 3025945518, unicast pkts 2183065991, multicast pkts 899419, broadcast pkts 2308600565, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 1220660, type 0, idx 52, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 52, iftype 117, ifspeed 10000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 3618900052, unicast pkts 334487763, multicast pkts 651947, broadcast pkts 3712423535, discards 0 + In errors 1, unknown protos 0 + Out octets 697413100, unicast pkts 537120139, multicast pkts 163886, broadcast pkts 4083094099, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 1, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 1 + expanded counter sample (4), length 172, seqnum 1220563, type 0, idx 53, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 53, iftype 117, ifspeed 10000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 851211409, unicast pkts 325440450, multicast pkts 164171, broadcast pkts 21946046, discards 0 + In errors 0, unknown protos 0 + Out octets 1855403849, unicast pkts 517660679, multicast pkts 163669, broadcast pkts 21301, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 +IP (tos 0x0, ttl 253, id 27102, offset 0, flags [none], proto UDP (17), length 1316) + 15.184.1.194.3099 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.194, agent-id 1, seqnum 10354087, uptime 15619401, samples 7, length 1288 + expanded counter sample (4), length 172, seqnum 2007460, type 0, idx 1, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 1, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 398, unicast pkts 0, multicast pkts 5, broadcast pkts 0, discards 0 + In errors 0, unknown protos 0 + Out octets 3980656605, unicast pkts 65082, multicast pkts 2199480, broadcast pkts 48372199, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2007456, type 0, idx 2, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 2, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 1444442513, unicast pkts 69372226, multicast pkts 1207, broadcast pkts 31114, discards 0 + In errors 0, unknown protos 0 + Out octets 1845546441, unicast pkts 41823689, multicast pkts 2201740, broadcast pkts 48335077, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2007397, type 0, idx 3, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 3, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 200763454, unicast pkts 891785, multicast pkts 982, broadcast pkts 13320, discards 0 + In errors 1, unknown protos 0 + Out octets 3317395016, unicast pkts 5225674, multicast pkts 1949791, broadcast pkts 8711770, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 1, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2007403, type 0, idx 4, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 4, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 165801154, unicast pkts 662297, multicast pkts 491, broadcast pkts 15752, discards 0 + In errors 0, unknown protos 0 + Out octets 2164450538, unicast pkts 1115261, multicast pkts 1949901, broadcast pkts 8709518, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 1993493, type 0, idx 5, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 5, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 198991268, unicast pkts 941829, multicast pkts 664, broadcast pkts 33726, discards 0 + In errors 1, unknown protos 0 + Out octets 4052534333, unicast pkts 2591418, multicast pkts 1994963, broadcast pkts 8691000, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 1, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 1, frames too long 0, mac receive errors 0, symbol errors 1 + expanded counter sample (4), length 172, seqnum 2007738, type 0, idx 6, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 6, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 561751280, unicast pkts 575605209, multicast pkts 1250, broadcast pkts 15322854, discards 0 + In errors 1, unknown protos 0 + Out octets 1513354003, unicast pkts 602598577, multicast pkts 1954404, broadcast pkts 4990182, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2008404, type 0, idx 7, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 7, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 3193665262, unicast pkts 642460773, multicast pkts 1401, broadcast pkts 219742, discards 0 + In errors 0, unknown protos 0 + Out octets 2913194494, unicast pkts 390983681, multicast pkts 1955407, broadcast pkts 20090614, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 +IP (tos 0x0, ttl 253, id 27103, offset 0, flags [none], proto UDP (17), length 1316) + 15.184.1.194.3099 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.194, agent-id 1, seqnum 10354088, uptime 15619403, samples 7, length 1288 + expanded counter sample (4), length 172, seqnum 2008395, type 0, idx 8, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 8, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 1089063112, unicast pkts 559652885, multicast pkts 634, broadcast pkts 224712, discards 0 + In errors 0, unknown protos 0 + Out octets 3489201351, unicast pkts 383200930, multicast pkts 1955795, broadcast pkts 20085990, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2008430, type 0, idx 9, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 9, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 2436646808, unicast pkts 568003495, multicast pkts 906, broadcast pkts 16545, discards 0 + In errors 0, unknown protos 0 + Out octets 1717246599, unicast pkts 389888234, multicast pkts 1955669, broadcast pkts 20294137, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2005879, type 0, idx 10, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 10, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 105616289, unicast pkts 531333, multicast pkts 768, broadcast pkts 9159, discards 0 + In errors 0, unknown protos 0 + Out octets 10387728, unicast pkts 2209569, multicast pkts 1954606, broadcast pkts 20288651, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2007662, type 0, idx 11, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 11, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 1801371574, unicast pkts 137590493, multicast pkts 2109, broadcast pkts 55528, discards 0 + In errors 0, unknown protos 0 + Out octets 1769141617, unicast pkts 113363676, multicast pkts 2197521, broadcast pkts 48315560, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2007553, type 0, idx 12, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 12, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 4201581256, unicast pkts 45842890, multicast pkts 1610, broadcast pkts 22730, discards 0 + In errors 0, unknown protos 0 + Out octets 1948082196, unicast pkts 53163690, multicast pkts 2198297, broadcast pkts 48348226, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2007541, type 0, idx 13, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 13, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 1019109063, unicast pkts 46613839, multicast pkts 1236, broadcast pkts 22226, discards 0 + In errors 0, unknown protos 0 + Out octets 2052469045, unicast pkts 53287225, multicast pkts 2198499, broadcast pkts 48348754, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 + expanded counter sample (4), length 172, seqnum 2010425, type 0, idx 14, records 2 + enterprise 0, Generic counter (1) length 88 + ifindex 14, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) + ifstatus 3, adminstatus: up, operstatus: up + In octets 36138805, unicast pkts 2267783883, multicast pkts 298, broadcast pkts 38306126, discards 0 + In errors 2, unknown protos 0 + Out octets 614425293, unicast pkts 2014274284, multicast pkts 2199305, broadcast pkts 10065409, discards 0 + Out errors 0, promisc mode 2 + enterprise 0, Ethernet counter (2) length 52 + align errors 0, fcs errors 2, single collision 0, multiple collision 0, test error 0 + deferred 0, late collision 0, excessive collision 0, mac trans error 0 + carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 diff --git a/src/tests/sflow_multiple_counter_30_pdus.pcap b/src/tests/sflow_multiple_counter_30_pdus.pcap new file mode 100644 index 0000000..5ec39c4 Binary files /dev/null and b/src/tests/sflow_multiple_counter_30_pdus.pcap differ diff --git a/src/tests/spb.out b/src/tests/spb.out new file mode 100644 index 0000000..ef2f82a --- /dev/null +++ b/src/tests/spb.out @@ -0,0 +1,53 @@ +IS-IS, p2p IIH, src-id 8888.8888.8888, length 1492 +IS-IS, p2p IIH, src-id 2222.2222.2222, length 1492 +IS-IS, p2p IIH, src-id 8888.8888.8888, length 1492 +IS-IS, p2p IIH, src-id 2222.2222.2222, length 1492 +IS-IS, L1 LSP, lsp-id 2222.2222.2222.00-00, seq 0x0000000f, lifetime 1200s, length 149 +IS-IS, L1 PSNP, src-id 8888.8888.8888.00, length 35 +IS-IS, p2p IIH, src-id 8888.8888.8888, length 1492 +IS-IS, p2p IIH, src-id 2222.2222.2222, length 1492 +IS-IS, p2p IIH, src-id 8888.8888.8888, length 1492 +IS-IS, p2p IIH, src-id 2222.2222.2222, length 1492 +IS-IS, p2p IIH, src-id 8888.8888.8888, length 1492 +IS-IS, p2p IIH, src-id 2222.2222.2222, length 1492 +IS-IS, p2p IIH, src-id 8888.8888.8888, length 1492 +IS-IS, p2p IIH, src-id 2222.2222.2222, length 1492 +IS-IS, p2p IIH, src-id 8888.8888.8888, length 1492 +IS-IS, p2p IIH, src-id 2222.2222.2222, length 1492 +IS-IS, p2p IIH, src-id 8888.8888.8888, length 1492 +IS-IS, p2p IIH, src-id 2222.2222.2222, length 1492 +IS-IS, p2p IIH, src-id 8888.8888.8888, length 1492 +IS-IS, p2p IIH, src-id 2222.2222.2222, length 1492 +IS-IS, p2p IIH, src-id 8888.8888.8888, length 1492 +IS-IS, p2p IIH, src-id 2222.2222.2222, length 1492 +IS-IS, p2p IIH, src-id 8888.8888.8888, length 1492 +IS-IS, p2p IIH, src-id 2222.2222.2222, length 1492 +IS-IS, p2p IIH, src-id 8888.8888.8888, length 1492 +IS-IS, p2p IIH, src-id 2222.2222.2222, length 1492 +IS-IS, p2p IIH, src-id 8888.8888.8888, length 1492 +IS-IS, p2p IIH, src-id 2222.2222.2222, length 1492 +IS-IS, p2p IIH, src-id 8888.8888.8888, length 1492 +IS-IS, p2p IIH, src-id 2222.2222.2222, length 1492 +IS-IS, p2p IIH, src-id 8888.8888.8888, length 1492 +IS-IS, L1 LSP, lsp-id 2222.2222.2222.00-00, seq 0x00000010, lifetime 1200s, length 149 +IS-IS, L1 PSNP, src-id 8888.8888.8888.00, length 35 +IS-IS, p2p IIH, src-id 2222.2222.2222, length 1492 +IS-IS, p2p IIH, src-id 8888.8888.8888, length 1492 +IS-IS, p2p IIH, src-id 2222.2222.2222, length 1492 +IS-IS, p2p IIH, src-id 8888.8888.8888, length 1492 +IS-IS, p2p IIH, src-id 2222.2222.2222, length 1492 +IS-IS, p2p IIH, src-id 8888.8888.8888, length 1492 +IS-IS, p2p IIH, src-id 2222.2222.2222, length 1492 +IS-IS, p2p IIH, src-id 8888.8888.8888, length 1492 +IS-IS, p2p IIH, src-id 2222.2222.2222, length 1492 +IS-IS, p2p IIH, src-id 8888.8888.8888, length 1492 +IS-IS, p2p IIH, src-id 2222.2222.2222, length 1492 +IS-IS, p2p IIH, src-id 8888.8888.8888, length 1492 +IS-IS, p2p IIH, src-id 2222.2222.2222, length 1492 +IS-IS, p2p IIH, src-id 8888.8888.8888, length 1492 +IS-IS, p2p IIH, src-id 2222.2222.2222, length 1492 +IS-IS, p2p IIH, src-id 8888.8888.8888, length 1492 +IS-IS, p2p IIH, src-id 2222.2222.2222, length 1492 +IS-IS, p2p IIH, src-id 8888.8888.8888, length 1492 +IS-IS, p2p IIH, src-id 2222.2222.2222, length 1492 +IS-IS, p2p IIH, src-id 8888.8888.8888, length 1492 diff --git a/src/tests/spb.pcap b/src/tests/spb.pcap new file mode 100644 index 0000000..99e2505 Binary files /dev/null and b/src/tests/spb.pcap differ diff --git a/src/tests/spb_bpduv4.out b/src/tests/spb_bpduv4.out new file mode 100644 index 0000000..748d4d2 --- /dev/null +++ b/src/tests/spb_bpduv4.out @@ -0,0 +1,25 @@ +STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205 +STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205 +STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205 +STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205 +STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205 +STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205 +STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205 +STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205 +STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205 +STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205 +STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205 +STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205 +STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205 +STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205 +STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205 +STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205 +STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205 +STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205 +STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205 +STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205 +STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205 +STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205 +STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205 +STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205 +STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205 diff --git a/src/tests/spb_bpduv4.pcap b/src/tests/spb_bpduv4.pcap new file mode 100644 index 0000000..b12d4c1 Binary files /dev/null and b/src/tests/spb_bpduv4.pcap differ diff --git a/src/tests/stp-v.out b/src/tests/stp-v.out new file mode 100644 index 0000000..66d3081 --- /dev/null +++ b/src/tests/stp-v.out @@ -0,0 +1,42 @@ +STP 802.1d, Config, Flags [none], bridge-id 8001.00:19:06:ea:b8:80.8005, length 43 + message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s + root-id 8001.00:19:06:ea:b8:80, root-pathcost 0 +STP 802.1d, Config, Flags [none], bridge-id 8001.00:19:06:ea:b8:80.8005, length 43 + message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s + root-id 8001.00:19:06:ea:b8:80, root-pathcost 0 +STP 802.1d, Config, Flags [none], bridge-id 8001.00:19:06:ea:b8:80.8005, length 43 + message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s + root-id 8001.00:19:06:ea:b8:80, root-pathcost 0 +STP 802.1d, Config, Flags [none], bridge-id 8001.00:19:06:ea:b8:80.8005, length 43 + message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s + root-id 8001.00:19:06:ea:b8:80, root-pathcost 0 +STP 802.1d, Config, Flags [none], bridge-id 8001.00:19:06:ea:b8:80.8005, length 43 + message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s + root-id 8001.00:19:06:ea:b8:80, root-pathcost 0 +STP 802.1d, Config, Flags [none], bridge-id 8001.00:19:06:ea:b8:80.8005, length 43 + message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s + root-id 8001.00:19:06:ea:b8:80, root-pathcost 0 +STP 802.1d, Config, Flags [none], bridge-id 8001.00:19:06:ea:b8:80.8005, length 43 + message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s + root-id 8001.00:19:06:ea:b8:80, root-pathcost 0 +STP 802.1d, Config, Flags [none], bridge-id 8001.00:19:06:ea:b8:80.8005, length 43 + message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s + root-id 8001.00:19:06:ea:b8:80, root-pathcost 0 +STP 802.1d, Config, Flags [none], bridge-id 8001.00:19:06:ea:b8:80.8005, length 43 + message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s + root-id 8001.00:19:06:ea:b8:80, root-pathcost 0 +STP 802.1d, Config, Flags [none], bridge-id 8001.00:19:06:ea:b8:80.8005, length 43 + message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s + root-id 8001.00:19:06:ea:b8:80, root-pathcost 0 +STP 802.1d, Config, Flags [none], bridge-id 8001.00:19:06:ea:b8:80.8005, length 43 + message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s + root-id 8001.00:19:06:ea:b8:80, root-pathcost 0 +STP 802.1d, Config, Flags [none], bridge-id 8001.00:19:06:ea:b8:80.8005, length 43 + message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s + root-id 8001.00:19:06:ea:b8:80, root-pathcost 0 +STP 802.1d, Config, Flags [none], bridge-id 8001.00:19:06:ea:b8:80.8005, length 43 + message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s + root-id 8001.00:19:06:ea:b8:80, root-pathcost 0 +STP 802.1d, Config, Flags [none], bridge-id 8001.00:19:06:ea:b8:80.8005, length 43 + message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s + root-id 8001.00:19:06:ea:b8:80, root-pathcost 0 diff --git a/src/tests/syslog-v.out b/src/tests/syslog-v.out new file mode 100644 index 0000000..5ebed29 --- /dev/null +++ b/src/tests/syslog-v.out @@ -0,0 +1,16 @@ +IP (tos 0x0, ttl 64, id 30929, offset 0, flags [DF], proto UDP (17), length 79) + 10.0.0.20.47565 > 10.0.0.72.514: SYSLOG, length: 51 + Facility kernel (0), Severity notice (5) + Msg: Sep 12 19:16:12 through logger: test message 21\0x00 +IP (tos 0x0, ttl 64, id 37393, offset 0, flags [DF], proto UDP (17), length 79) + 10.0.0.20.33884 > 10.0.0.72.514: SYSLOG, length: 51 + Facility user (1), Severity alert (1) + Msg: Sep 12 19:16:18 through logger: test message 22\0x00 +IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto UDP (17), length 107) + 10.0.0.20.52693 > 10.0.0.71.514: SYSLOG, length: 79 + Facility user (1), Severity notice (5) + Msg: 2013-09-12T19:16:34.457849+04:00 localhost through rsyslog: test message 23 +IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto UDP (17), length 106) + 10.0.0.20.52693 > 10.0.0.71.514: SYSLOG, length: 78 + Facility user (1), Severity alert (1) + Msg: 2013-09-12T19:16:43.513746+04:00 localhost through rsyslog: test message 24 diff --git a/src/tests/syslog_udp.pcap b/src/tests/syslog_udp.pcap new file mode 100644 index 0000000..06d54e6 Binary files /dev/null and b/src/tests/syslog_udp.pcap differ diff --git a/src/tests/tfo-5c1fa7f9ae91.pcap b/src/tests/tfo-5c1fa7f9ae91.pcap new file mode 100644 index 0000000..43ae5b7 Binary files /dev/null and b/src/tests/tfo-5c1fa7f9ae91.pcap differ diff --git a/src/tests/tfo.out b/src/tests/tfo.out new file mode 100644 index 0000000..ff5a955 --- /dev/null +++ b/src/tests/tfo.out @@ -0,0 +1,14 @@ +IP 192.168.0.100.13047 > 3.3.3.3.13054: Flags [S], seq 218476388, win 1400, options [exp-tfo cookiereq], length 0 +IP 9.9.9.9.13047 > 3.3.3.3.13054: Flags [S], seq 218476388, win 1400, options [mss 1460,exp-tfo cookiereq], length 0 +IP 3.3.3.3.13054 > 9.9.9.9.13047: Flags [S.], seq 4035392501, ack 218476389, win 1400, options [exp-tfo cookie 090909090000,nop,nop], length 0 +IP 3.3.3.3.13054 > 192.168.0.100.13047: Flags [S.], seq 4035392501, ack 218476389, win 1400, options [mss 1500,exp-tfo cookie 090909090000,nop,nop], length 0 +IP 192.168.0.100.13047 > 3.3.3.3.13054: Flags [.], ack 1, win 1400, length 0 +IP 9.9.9.9.13047 > 3.3.3.3.13054: Flags [.], ack 1, win 1400, length 0 +IP 192.168.0.100.13047 > 3.3.3.3.13054: Flags [F.], seq 1, ack 1, win 1400, length 0 +IP 9.9.9.9.13047 > 3.3.3.3.13054: Flags [F.], seq 1, ack 1, win 1400, length 0 +IP 3.3.3.3.13054 > 9.9.9.9.13047: Flags [F.], seq 1, ack 2, win 1400, length 0 +IP 3.3.3.3.13054 > 192.168.0.100.13047: Flags [F.], seq 1, ack 2, win 1400, length 0 +IP 192.168.0.100.13047 > 3.3.3.3.13054: Flags [.], ack 2, win 1400, length 0 +IP 9.9.9.9.13047 > 3.3.3.3.13054: Flags [.], ack 2, win 1400, length 0 +IP 192.168.0.100.13048 > 3.3.3.3.13054: Flags [S], seq 936732547:936732551, win 1400, options [exp-tfo cookie 090909090000,nop,nop], length 4 +IP 192.168.0.100.13048 > 3.3.3.3.13054: Flags [F.], seq 936732552, ack 0, win 1400, length 0 diff --git a/src/tests/udld-v.out b/src/tests/udld-v.out new file mode 100644 index 0000000..d4361f4 --- /dev/null +++ b/src/tests/udld-v.out @@ -0,0 +1,261 @@ +UDLDv1, Code Probe message (1), Flags [RT, RSY] (0x03), length 60 + Checksum 0x6d85 (unverified) + Device-ID TLV (0x0001) TLV, length 15, FOC1031Z7JG + Port-ID TLV (0x0002) TLV, length 9, Gi0/1 + Echo TLV (0x0003) TLV, length 8, ^@^@^@^@ + Message Interval TLV (0x0004) TLV, length 5, 7s + Timeout Interval TLV (0x0005) TLV, length 5, 5s + Device Name TLV (0x0006) TLV, length 6, S1 + Sequence Number TLV (0x0007) TLV, length 8, 1 +UDLDv1, Code Echo message (2), Flags [RT] (0x00), length 80 + Checksum 0x805d (unverified) + Device-ID TLV (0x0001) TLV, length 15, FOC1025X4W3 + Port-ID TLV (0x0002) TLV, length 9, Fa0/1 + Echo TLV (0x0003) TLV, length 28, ^@^@^@^A^@^KFOC1031Z7JG^@^EGi0/1 + Message Interval TLV (0x0004) TLV, length 5, 7s + Timeout Interval TLV (0x0005) TLV, length 5, 5s + Device Name TLV (0x0006) TLV, length 6, S2 + Sequence Number TLV (0x0007) TLV, length 8, 1 +UDLDv1, Code Echo message (2), Flags [RT] (0x00), length 80 + Checksum 0x805e (unverified) + Device-ID TLV (0x0001) TLV, length 15, FOC1031Z7JG + Port-ID TLV (0x0002) TLV, length 9, Gi0/1 + Echo TLV (0x0003) TLV, length 28, ^@^@^@^A^@^KFOC1025X4W3^@^EFa0/1 + Message Interval TLV (0x0004) TLV, length 5, 7s + Timeout Interval TLV (0x0005) TLV, length 5, 5s + Device Name TLV (0x0006) TLV, length 6, S1 + Sequence Number TLV (0x0007) TLV, length 8, 1 +UDLDv1, Code Echo message (2), Flags [RT] (0x00), length 80 + Checksum 0x805c (unverified) + Device-ID TLV (0x0001) TLV, length 15, FOC1025X4W3 + Port-ID TLV (0x0002) TLV, length 9, Fa0/1 + Echo TLV (0x0003) TLV, length 28, ^@^@^@^A^@^KFOC1031Z7JG^@^EGi0/1 + Message Interval TLV (0x0004) TLV, length 5, 7s + Timeout Interval TLV (0x0005) TLV, length 5, 5s + Device Name TLV (0x0006) TLV, length 6, S2 + Sequence Number TLV (0x0007) TLV, length 8, 2 +UDLDv1, Code Echo message (2), Flags [RT] (0x00), length 80 + Checksum 0x805d (unverified) + Device-ID TLV (0x0001) TLV, length 15, FOC1031Z7JG + Port-ID TLV (0x0002) TLV, length 9, Gi0/1 + Echo TLV (0x0003) TLV, length 28, ^@^@^@^A^@^KFOC1025X4W3^@^EFa0/1 + Message Interval TLV (0x0004) TLV, length 5, 7s + Timeout Interval TLV (0x0005) TLV, length 5, 5s + Device Name TLV (0x0006) TLV, length 6, S1 + Sequence Number TLV (0x0007) TLV, length 8, 2 +UDLDv1, Code Echo message (2), Flags [RT] (0x00), length 80 + Checksum 0x805b (unverified) + Device-ID TLV (0x0001) TLV, length 15, FOC1025X4W3 + Port-ID TLV (0x0002) TLV, length 9, Fa0/1 + Echo TLV (0x0003) TLV, length 28, ^@^@^@^A^@^KFOC1031Z7JG^@^EGi0/1 + Message Interval TLV (0x0004) TLV, length 5, 7s + Timeout Interval TLV (0x0005) TLV, length 5, 5s + Device Name TLV (0x0006) TLV, length 6, S2 + Sequence Number TLV (0x0007) TLV, length 8, 3 +UDLDv1, Code Echo message (2), Flags [RT] (0x00), length 80 + Checksum 0x805c (unverified) + Device-ID TLV (0x0001) TLV, length 15, FOC1031Z7JG + Port-ID TLV (0x0002) TLV, length 9, Gi0/1 + Echo TLV (0x0003) TLV, length 28, ^@^@^@^A^@^KFOC1025X4W3^@^EFa0/1 + Message Interval TLV (0x0004) TLV, length 5, 7s + Timeout Interval TLV (0x0005) TLV, length 5, 5s + Device Name TLV (0x0006) TLV, length 6, S1 + Sequence Number TLV (0x0007) TLV, length 8, 3 +UDLDv1, Code Echo message (2), Flags [RT] (0x00), length 80 + Checksum 0x805a (unverified) + Device-ID TLV (0x0001) TLV, length 15, FOC1025X4W3 + Port-ID TLV (0x0002) TLV, length 9, Fa0/1 + Echo TLV (0x0003) TLV, length 28, ^@^@^@^A^@^KFOC1031Z7JG^@^EGi0/1 + Message Interval TLV (0x0004) TLV, length 5, 7s + Timeout Interval TLV (0x0005) TLV, length 5, 5s + Device Name TLV (0x0006) TLV, length 6, S2 + Sequence Number TLV (0x0007) TLV, length 8, 4 +UDLDv1, Code Echo message (2), Flags [RT] (0x00), length 80 + Checksum 0x805b (unverified) + Device-ID TLV (0x0001) TLV, length 15, FOC1031Z7JG + Port-ID TLV (0x0002) TLV, length 9, Gi0/1 + Echo TLV (0x0003) TLV, length 28, ^@^@^@^A^@^KFOC1025X4W3^@^EFa0/1 + Message Interval TLV (0x0004) TLV, length 5, 7s + Timeout Interval TLV (0x0005) TLV, length 5, 5s + Device Name TLV (0x0006) TLV, length 6, S1 + Sequence Number TLV (0x0007) TLV, length 8, 4 +UDLDv1, Code Echo message (2), Flags [RT] (0x00), length 80 + Checksum 0x8059 (unverified) + Device-ID TLV (0x0001) TLV, length 15, FOC1025X4W3 + Port-ID TLV (0x0002) TLV, length 9, Fa0/1 + Echo TLV (0x0003) TLV, length 28, ^@^@^@^A^@^KFOC1031Z7JG^@^EGi0/1 + Message Interval TLV (0x0004) TLV, length 5, 7s + Timeout Interval TLV (0x0005) TLV, length 5, 5s + Device Name TLV (0x0006) TLV, length 6, S2 + Sequence Number TLV (0x0007) TLV, length 8, 5 +UDLDv1, Code Echo message (2), Flags [RT] (0x00), length 80 + Checksum 0x805a (unverified) + Device-ID TLV (0x0001) TLV, length 15, FOC1031Z7JG + Port-ID TLV (0x0002) TLV, length 9, Gi0/1 + Echo TLV (0x0003) TLV, length 28, ^@^@^@^A^@^KFOC1025X4W3^@^EFa0/1 + Message Interval TLV (0x0004) TLV, length 5, 7s + Timeout Interval TLV (0x0005) TLV, length 5, 5s + Device Name TLV (0x0006) TLV, length 6, S1 + Sequence Number TLV (0x0007) TLV, length 8, 5 +UDLDv1, Code Probe message (1), Flags [RT, RSY] (0x01), length 80 + Checksum 0x795c (unverified) + Device-ID TLV (0x0001) TLV, length 15, FOC1025X4W3 + Port-ID TLV (0x0002) TLV, length 9, Fa0/1 + Echo TLV (0x0003) TLV, length 28, ^@^@^@^A^@^KFOC1031Z7JG^@^EGi0/1 + Message Interval TLV (0x0004) TLV, length 5, 15s + Timeout Interval TLV (0x0005) TLV, length 5, 5s + Device Name TLV (0x0006) TLV, length 6, S2 + Sequence Number TLV (0x0007) TLV, length 8, 1 +UDLDv1, Code Probe message (1), Flags [RT, RSY] (0x01), length 80 + Checksum 0x795d (unverified) + Device-ID TLV (0x0001) TLV, length 15, FOC1031Z7JG + Port-ID TLV (0x0002) TLV, length 9, Gi0/1 + Echo TLV (0x0003) TLV, length 28, ^@^@^@^A^@^KFOC1025X4W3^@^EFa0/1 + Message Interval TLV (0x0004) TLV, length 5, 15s + Timeout Interval TLV (0x0005) TLV, length 5, 5s + Device Name TLV (0x0006) TLV, length 6, S1 + Sequence Number TLV (0x0007) TLV, length 8, 1 +UDLDv1, Code Probe message (1), Flags [RT, RSY] (0x01), length 80 + Checksum 0x795b (unverified) + Device-ID TLV (0x0001) TLV, length 15, FOC1025X4W3 + Port-ID TLV (0x0002) TLV, length 9, Fa0/1 + Echo TLV (0x0003) TLV, length 28, ^@^@^@^A^@^KFOC1031Z7JG^@^EGi0/1 + Message Interval TLV (0x0004) TLV, length 5, 15s + Timeout Interval TLV (0x0005) TLV, length 5, 5s + Device Name TLV (0x0006) TLV, length 6, S2 + Sequence Number TLV (0x0007) TLV, length 8, 2 +UDLDv1, Code Probe message (1), Flags [RT, RSY] (0x01), length 80 + Checksum 0x795c (unverified) + Device-ID TLV (0x0001) TLV, length 15, FOC1031Z7JG + Port-ID TLV (0x0002) TLV, length 9, Gi0/1 + Echo TLV (0x0003) TLV, length 28, ^@^@^@^A^@^KFOC1025X4W3^@^EFa0/1 + Message Interval TLV (0x0004) TLV, length 5, 15s + Timeout Interval TLV (0x0005) TLV, length 5, 5s + Device Name TLV (0x0006) TLV, length 6, S1 + Sequence Number TLV (0x0007) TLV, length 8, 2 +UDLDv1, Code Probe message (1), Flags [RT, RSY] (0x01), length 80 + Checksum 0x795a (unverified) + Device-ID TLV (0x0001) TLV, length 15, FOC1025X4W3 + Port-ID TLV (0x0002) TLV, length 9, Fa0/1 + Echo TLV (0x0003) TLV, length 28, ^@^@^@^A^@^KFOC1031Z7JG^@^EGi0/1 + Message Interval TLV (0x0004) TLV, length 5, 15s + Timeout Interval TLV (0x0005) TLV, length 5, 5s + Device Name TLV (0x0006) TLV, length 6, S2 + Sequence Number TLV (0x0007) TLV, length 8, 3 +UDLDv1, Code Probe message (1), Flags [RT, RSY] (0x01), length 80 + Checksum 0x795b (unverified) + Device-ID TLV (0x0001) TLV, length 15, FOC1031Z7JG + Port-ID TLV (0x0002) TLV, length 9, Gi0/1 + Echo TLV (0x0003) TLV, length 28, ^@^@^@^A^@^KFOC1025X4W3^@^EFa0/1 + Message Interval TLV (0x0004) TLV, length 5, 15s + Timeout Interval TLV (0x0005) TLV, length 5, 5s + Device Name TLV (0x0006) TLV, length 6, S1 + Sequence Number TLV (0x0007) TLV, length 8, 3 +UDLDv1, Code Probe message (1), Flags [RT, RSY] (0x01), length 80 + Checksum 0x7959 (unverified) + Device-ID TLV (0x0001) TLV, length 15, FOC1025X4W3 + Port-ID TLV (0x0002) TLV, length 9, Fa0/1 + Echo TLV (0x0003) TLV, length 28, ^@^@^@^A^@^KFOC1031Z7JG^@^EGi0/1 + Message Interval TLV (0x0004) TLV, length 5, 15s + Timeout Interval TLV (0x0005) TLV, length 5, 5s + Device Name TLV (0x0006) TLV, length 6, S2 + Sequence Number TLV (0x0007) TLV, length 8, 4 +UDLDv1, Code Probe message (1), Flags [RT, RSY] (0x01), length 80 + Checksum 0x795a (unverified) + Device-ID TLV (0x0001) TLV, length 15, FOC1031Z7JG + Port-ID TLV (0x0002) TLV, length 9, Gi0/1 + Echo TLV (0x0003) TLV, length 28, ^@^@^@^A^@^KFOC1025X4W3^@^EFa0/1 + Message Interval TLV (0x0004) TLV, length 5, 15s + Timeout Interval TLV (0x0005) TLV, length 5, 5s + Device Name TLV (0x0006) TLV, length 6, S1 + Sequence Number TLV (0x0007) TLV, length 8, 4 +UDLDv1, Code Probe message (1), Flags [RT, RSY] (0x01), length 80 + Checksum 0x7958 (unverified) + Device-ID TLV (0x0001) TLV, length 15, FOC1025X4W3 + Port-ID TLV (0x0002) TLV, length 9, Fa0/1 + Echo TLV (0x0003) TLV, length 28, ^@^@^@^A^@^KFOC1031Z7JG^@^EGi0/1 + Message Interval TLV (0x0004) TLV, length 5, 15s + Timeout Interval TLV (0x0005) TLV, length 5, 5s + Device Name TLV (0x0006) TLV, length 6, S2 + Sequence Number TLV (0x0007) TLV, length 8, 5 +UDLDv1, Code Probe message (1), Flags [RT, RSY] (0x01), length 80 + Checksum 0x7959 (unverified) + Device-ID TLV (0x0001) TLV, length 15, FOC1031Z7JG + Port-ID TLV (0x0002) TLV, length 9, Gi0/1 + Echo TLV (0x0003) TLV, length 28, ^@^@^@^A^@^KFOC1025X4W3^@^EFa0/1 + Message Interval TLV (0x0004) TLV, length 5, 15s + Timeout Interval TLV (0x0005) TLV, length 5, 5s + Device Name TLV (0x0006) TLV, length 6, S1 + Sequence Number TLV (0x0007) TLV, length 8, 5 +UDLDv1, Code Probe message (1), Flags [RT, RSY] (0x01), length 80 + Checksum 0x7957 (unverified) + Device-ID TLV (0x0001) TLV, length 15, FOC1025X4W3 + Port-ID TLV (0x0002) TLV, length 9, Fa0/1 + Echo TLV (0x0003) TLV, length 28, ^@^@^@^A^@^KFOC1031Z7JG^@^EGi0/1 + Message Interval TLV (0x0004) TLV, length 5, 15s + Timeout Interval TLV (0x0005) TLV, length 5, 5s + Device Name TLV (0x0006) TLV, length 6, S2 + Sequence Number TLV (0x0007) TLV, length 8, 6 +UDLDv1, Code Probe message (1), Flags [RT, RSY] (0x01), length 80 + Checksum 0x7958 (unverified) + Device-ID TLV (0x0001) TLV, length 15, FOC1031Z7JG + Port-ID TLV (0x0002) TLV, length 9, Gi0/1 + Echo TLV (0x0003) TLV, length 28, ^@^@^@^A^@^KFOC1025X4W3^@^EFa0/1 + Message Interval TLV (0x0004) TLV, length 5, 15s + Timeout Interval TLV (0x0005) TLV, length 5, 5s + Device Name TLV (0x0006) TLV, length 6, S1 + Sequence Number TLV (0x0007) TLV, length 8, 6 +UDLDv1, Code Probe message (1), Flags [RT, RSY] (0x01), length 80 + Checksum 0x7956 (unverified) + Device-ID TLV (0x0001) TLV, length 15, FOC1025X4W3 + Port-ID TLV (0x0002) TLV, length 9, Fa0/1 + Echo TLV (0x0003) TLV, length 28, ^@^@^@^A^@^KFOC1031Z7JG^@^EGi0/1 + Message Interval TLV (0x0004) TLV, length 5, 15s + Timeout Interval TLV (0x0005) TLV, length 5, 5s + Device Name TLV (0x0006) TLV, length 6, S2 + Sequence Number TLV (0x0007) TLV, length 8, 7 +UDLDv1, Code Probe message (1), Flags [RT, RSY] (0x01), length 80 + Checksum 0x7957 (unverified) + Device-ID TLV (0x0001) TLV, length 15, FOC1031Z7JG + Port-ID TLV (0x0002) TLV, length 9, Gi0/1 + Echo TLV (0x0003) TLV, length 28, ^@^@^@^A^@^KFOC1025X4W3^@^EFa0/1 + Message Interval TLV (0x0004) TLV, length 5, 15s + Timeout Interval TLV (0x0005) TLV, length 5, 5s + Device Name TLV (0x0006) TLV, length 6, S1 + Sequence Number TLV (0x0007) TLV, length 8, 7 +UDLDv1, Code Probe message (1), Flags [RT, RSY] (0x01), length 80 + Checksum 0x7955 (unverified) + Device-ID TLV (0x0001) TLV, length 15, FOC1025X4W3 + Port-ID TLV (0x0002) TLV, length 9, Fa0/1 + Echo TLV (0x0003) TLV, length 28, ^@^@^@^A^@^KFOC1031Z7JG^@^EGi0/1 + Message Interval TLV (0x0004) TLV, length 5, 15s + Timeout Interval TLV (0x0005) TLV, length 5, 5s + Device Name TLV (0x0006) TLV, length 6, S2 + Sequence Number TLV (0x0007) TLV, length 8, 8 +UDLDv1, Code Probe message (1), Flags [RT, RSY] (0x01), length 80 + Checksum 0x7956 (unverified) + Device-ID TLV (0x0001) TLV, length 15, FOC1031Z7JG + Port-ID TLV (0x0002) TLV, length 9, Gi0/1 + Echo TLV (0x0003) TLV, length 28, ^@^@^@^A^@^KFOC1025X4W3^@^EFa0/1 + Message Interval TLV (0x0004) TLV, length 5, 15s + Timeout Interval TLV (0x0005) TLV, length 5, 5s + Device Name TLV (0x0006) TLV, length 6, S1 + Sequence Number TLV (0x0007) TLV, length 8, 8 +UDLDv1, Code Probe message (1), Flags [RT, RSY] (0x01), length 80 + Checksum 0x7954 (unverified) + Device-ID TLV (0x0001) TLV, length 15, FOC1025X4W3 + Port-ID TLV (0x0002) TLV, length 9, Fa0/1 + Echo TLV (0x0003) TLV, length 28, ^@^@^@^A^@^KFOC1031Z7JG^@^EGi0/1 + Message Interval TLV (0x0004) TLV, length 5, 15s + Timeout Interval TLV (0x0005) TLV, length 5, 5s + Device Name TLV (0x0006) TLV, length 6, S2 + Sequence Number TLV (0x0007) TLV, length 8, 9 +UDLDv1, Code Probe message (1), Flags [RT, RSY] (0x01), length 80 + Checksum 0x7955 (unverified) + Device-ID TLV (0x0001) TLV, length 15, FOC1031Z7JG + Port-ID TLV (0x0002) TLV, length 9, Gi0/1 + Echo TLV (0x0003) TLV, length 28, ^@^@^@^A^@^KFOC1025X4W3^@^EFa0/1 + Message Interval TLV (0x0004) TLV, length 5, 15s + Timeout Interval TLV (0x0005) TLV, length 5, 5s + Device Name TLV (0x0006) TLV, length 6, S1 + Sequence Number TLV (0x0007) TLV, length 8, 9 diff --git a/src/tests/unaligned-nfs-1.out b/src/tests/unaligned-nfs-1.out new file mode 100644 index 0000000..e74aa30 --- /dev/null +++ b/src/tests/unaligned-nfs-1.out @@ -0,0 +1,2 @@ +IP (tos 0x0, ttl 63, id 38810, offset 0, flags [DF], proto TCP (6), length 168) + 128.112.130.130.2049 > 140.180.226.200.1023: Flags [P.], cksum 0x6f82 (correct), seq 271994717:271994833, ack 3625862383, win 12274, options [nop,nop,TS val 801481683 ecr 243357584], length 116: NFS reply xid 3532485149 reply ok 112 diff --git a/src/tests/unaligned-nfs-1.pcap b/src/tests/unaligned-nfs-1.pcap new file mode 100644 index 0000000..5f12c13 Binary files /dev/null and b/src/tests/unaligned-nfs-1.pcap differ diff --git a/src/tests/vrrp-v.out b/src/tests/vrrp-v.out new file mode 100644 index 0000000..47b3c7d --- /dev/null +++ b/src/tests/vrrp-v.out @@ -0,0 +1,266 @@ +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) + 10.0.0.91 > 224.0.0.18: vrrp 10.0.0.91 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 191, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) + 10.0.0.91 > 224.0.0.18: vrrp 10.0.0.91 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 191, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) + 10.0.0.91 > 224.0.0.18: vrrp 10.0.0.91 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 191, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) + 10.0.0.91 > 224.0.0.18: vrrp 10.0.0.91 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 191, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) + 10.0.0.91 > 224.0.0.18: vrrp 10.0.0.91 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 191, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 +IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::d6ca:6dff:fe66:cf60 > ff02::12: ip-proto-112 40 +IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::d6ca:6dff:fe66:cf60 > ff02::12: ip-proto-112 88 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) + 10.0.0.91 > 224.0.0.18: vrrp 10.0.0.91 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 191, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) + 10.0.0.91 > 224.0.0.18: vrrp 10.0.0.91 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 191, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) + 10.0.0.91 > 224.0.0.18: vrrp 10.0.0.91 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 191, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 +IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::d6ca:6dff:fe66:cf60 > ff02::12: ip-proto-112 88 +IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::d6ca:6dff:fe66:cf60 > ff02::12: ip-proto-112 40 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) + 10.0.0.91 > 224.0.0.18: vrrp 10.0.0.91 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 191, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) + 10.0.0.92 > 224.0.0.18: vrrp 10.0.0.92 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 192, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) + 10.0.0.92 > 224.0.0.18: vrrp 10.0.0.92 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 192, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) + 10.0.0.92 > 224.0.0.18: vrrp 10.0.0.92 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 192, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 +IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::d6ca:6dff:fe66:cf60 > ff02::12: ip-proto-112 40 +IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::d6ca:6dff:fe66:cf60 > ff02::12: ip-proto-112 88 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) + 10.0.0.92 > 224.0.0.18: vrrp 10.0.0.92 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 192, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) + 10.0.0.92 > 224.0.0.18: vrrp 10.0.0.92 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 192, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) + 10.0.0.92 > 224.0.0.18: vrrp 10.0.0.92 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 192, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 +IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::d6ca:6dff:fe72:b1da > ff02::12: ip-proto-112 88 +IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::d6ca:6dff:fe72:b1da > ff02::12: ip-proto-112 40 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) + 10.0.0.92 > 224.0.0.18: vrrp 10.0.0.92 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 192, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) + 10.0.0.92 > 224.0.0.18: vrrp 10.0.0.92 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 192, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) + 10.0.0.92 > 224.0.0.18: vrrp 10.0.0.92 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 192, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 +IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::d6ca:6dff:fe72:b1da > ff02::12: ip-proto-112 40 +IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::d6ca:6dff:fe72:b1da > ff02::12: ip-proto-112 88 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) + 10.0.0.93 > 224.0.0.18: vrrp 10.0.0.93 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 193, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) + 10.0.0.93 > 224.0.0.18: vrrp 10.0.0.93 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 193, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) + 10.0.0.93 > 224.0.0.18: vrrp 10.0.0.93 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 193, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 +IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::d6ca:6dff:fe72:b1da > ff02::12: ip-proto-112 88 +IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::d6ca:6dff:fe72:b1da > ff02::12: ip-proto-112 40 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) + 10.0.0.93 > 224.0.0.18: vrrp 10.0.0.93 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 193, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) + 10.0.0.93 > 224.0.0.18: vrrp 10.0.0.93 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 193, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 +IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::d6ca:6dff:fe66:cf65 > ff02::12: ip-proto-112 88 +IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::d6ca:6dff:fe66:cf65 > ff02::12: ip-proto-112 40 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) + 10.0.0.93 > 224.0.0.18: vrrp 10.0.0.93 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 193, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) + 10.0.0.93 > 224.0.0.18: vrrp 10.0.0.93 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 193, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) + 10.0.0.93 > 224.0.0.18: vrrp 10.0.0.93 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 193, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 +IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::d6ca:6dff:fe66:cf65 > ff02::12: ip-proto-112 88 +IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::d6ca:6dff:fe66:cf65 > ff02::12: ip-proto-112 40 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) + 10.0.0.93 > 224.0.0.18: vrrp 10.0.0.93 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 193, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) + 10.0.0.93 > 224.0.0.18: vrrp 10.0.0.93 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 193, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) + 10.0.0.93 > 224.0.0.18: vrrp 10.0.0.93 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 193, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" +IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::d6ca:6dff:fe66:cf65 > ff02::12: ip-proto-112 88 +IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::d6ca:6dff:fe66:cf65 > ff02::12: ip-proto-112 40 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) + 10.0.0.93 > 224.0.0.18: vrrp 10.0.0.93 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 193, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) + 10.0.0.94 > 224.0.0.18: vrrp 10.0.0.94 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 194, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) + 10.0.0.94 > 224.0.0.18: vrrp 10.0.0.94 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 194, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) + 10.0.0.94 > 224.0.0.18: vrrp 10.0.0.94 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 194, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 +IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::d6ca:6dff:fe66:cf65 > ff02::12: ip-proto-112 88 +IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::d6ca:6dff:fe66:cf65 > ff02::12: ip-proto-112 40 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) + 10.0.0.94 > 224.0.0.18: vrrp 10.0.0.94 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 194, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) + 10.0.0.94 > 224.0.0.18: vrrp 10.0.0.94 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 194, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 +IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::d6ca:6dff:fe65:d45c > ff02::12: ip-proto-112 40 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) + 10.0.0.94 > 224.0.0.18: vrrp 10.0.0.94 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 194, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 +IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::d6ca:6dff:fe65:d45c > ff02::12: ip-proto-112 88 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) + 10.0.0.94 > 224.0.0.18: vrrp 10.0.0.94 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 194, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) + 10.0.0.94 > 224.0.0.18: vrrp 10.0.0.94 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 194, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) + 10.0.0.94 > 224.0.0.18: vrrp 10.0.0.94 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 194, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 +IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::d6ca:6dff:fe65:d45c > ff02::12: ip-proto-112 40 +IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::d6ca:6dff:fe65:d45c > ff02::12: ip-proto-112 88 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) + 10.0.0.94 > 224.0.0.18: vrrp 10.0.0.94 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 194, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) + 10.0.0.94 > 224.0.0.18: vrrp 10.0.0.94 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 194, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 +IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::d6ca:6dff:fe65:d45c > ff02::12: ip-proto-112 40 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) + 10.0.0.94 > 224.0.0.18: vrrp 10.0.0.94 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 194, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 +IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::d6ca:6dff:fe65:d45c > ff02::12: ip-proto-112 88 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) + 10.0.0.94 > 224.0.0.18: vrrp 10.0.0.94 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 194, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) + 10.0.0.94 > 224.0.0.18: vrrp 10.0.0.94 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 194, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) + 10.0.0.94 > 224.0.0.18: vrrp 10.0.0.94 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 194, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 +IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::d6ca:6dff:fe65:d45c > ff02::12: ip-proto-112 40 +IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::d6ca:6dff:fe65:d45c > ff02::12: ip-proto-112 88 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) + 10.0.0.95 > 224.0.0.18: vrrp 10.0.0.95 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 195, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) + 10.0.0.95 > 224.0.0.18: vrrp 10.0.0.95 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 195, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) + 10.0.0.95 > 224.0.0.18: vrrp 10.0.0.95 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 195, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 +IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::d6ca:6dff:fe65:d45c > ff02::12: ip-proto-112 40 +IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::d6ca:6dff:fe65:d45c > ff02::12: ip-proto-112 88 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) + 10.0.0.95 > 224.0.0.18: vrrp 10.0.0.95 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 195, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) + 10.0.0.95 > 224.0.0.18: vrrp 10.0.0.95 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 195, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) + 10.0.0.95 > 224.0.0.18: vrrp 10.0.0.95 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 195, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 +IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::d6ca:6dff:fe65:d46b > ff02::12: ip-proto-112 40 +IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::d6ca:6dff:fe65:d46b > ff02::12: ip-proto-112 88 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) + 10.0.0.95 > 224.0.0.18: vrrp 10.0.0.95 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 195, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) + 10.0.0.95 > 224.0.0.18: vrrp 10.0.0.95 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 195, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 +IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::d6ca:6dff:fe65:d46b > ff02::12: ip-proto-112 40 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) + 10.0.0.95 > 224.0.0.18: vrrp 10.0.0.95 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 195, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 +IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::d6ca:6dff:fe65:d46b > ff02::12: ip-proto-112 88 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) + 10.0.0.95 > 224.0.0.18: vrrp 10.0.0.95 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 195, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) + 10.0.0.95 > 224.0.0.18: vrrp 10.0.0.95 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 195, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) + 10.0.0.95 > 224.0.0.18: vrrp 10.0.0.95 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 195, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 +IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::d6ca:6dff:fe65:d46b > ff02::12: ip-proto-112 40 +IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::d6ca:6dff:fe65:d46b > ff02::12: ip-proto-112 88 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) + 10.0.0.96 > 224.0.0.18: vrrp 10.0.0.96 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 196, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) + 10.0.0.96 > 224.0.0.18: vrrp 10.0.0.96 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 196, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) + 10.0.0.96 > 224.0.0.18: vrrp 10.0.0.96 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 196, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 +IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::d6ca:6dff:fe65:d46b > ff02::12: ip-proto-112 40 +IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::d6ca:6dff:fe65:d46b > ff02::12: ip-proto-112 88 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) + 10.0.0.96 > 224.0.0.18: vrrp 10.0.0.96 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 196, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) + 10.0.0.96 > 224.0.0.18: vrrp 10.0.0.96 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 196, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 +IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::d6ca:6dff:fe72:b1e4 > ff02::12: ip-proto-112 40 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) + 10.0.0.96 > 224.0.0.18: vrrp 10.0.0.96 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 196, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 +IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::d6ca:6dff:fe72:b1e4 > ff02::12: ip-proto-112 88 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) + 10.0.0.96 > 224.0.0.18: vrrp 10.0.0.96 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 196, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) + 10.0.0.96 > 224.0.0.18: vrrp 10.0.0.96 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 196, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 +IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::d6ca:6dff:fe72:b1e4 > ff02::12: ip-proto-112 40 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) + 10.0.0.96 > 224.0.0.18: vrrp 10.0.0.96 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 196, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 +IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::d6ca:6dff:fe72:b1e4 > ff02::12: ip-proto-112 88 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) + 10.0.0.96 > 224.0.0.18: vrrp 10.0.0.96 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 196, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) + 10.0.0.96 > 224.0.0.18: vrrp 10.0.0.96 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 196, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" +IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::d6ca:6dff:fe72:b1e4 > ff02::12: ip-proto-112 40 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) + 10.0.0.96 > 224.0.0.18: vrrp 10.0.0.96 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 196, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 +IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::d6ca:6dff:fe72:b1e4 > ff02::12: ip-proto-112 88 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) + 10.0.0.96 > 224.0.0.18: vrrp 10.0.0.96 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 196, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) + 10.0.0.96 > 224.0.0.18: vrrp 10.0.0.96 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 196, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 +IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::d6ca:6dff:fe72:b1e4 > ff02::12: ip-proto-112 40 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) + 10.0.0.96 > 224.0.0.18: vrrp 10.0.0.96 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 196, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 +IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::d6ca:6dff:fe72:b1e4 > ff02::12: ip-proto-112 88 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) + 10.0.0.97 > 224.0.0.18: vrrp 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 197, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) + 10.0.0.97 > 224.0.0.18: vrrp 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 197, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) + 10.0.0.97 > 224.0.0.18: vrrp 10.0.0.97 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 197, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 +IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::d6ca:6dff:fe72:b1e4 > ff02::12: ip-proto-112 40 +IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::d6ca:6dff:fe72:b1e4 > ff02::12: ip-proto-112 88 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) + 10.0.0.97 > 224.0.0.18: vrrp 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 197, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) + 10.0.0.97 > 224.0.0.18: vrrp 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 197, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 +IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 40 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) + 10.0.0.97 > 224.0.0.18: vrrp 10.0.0.97 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 197, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 +IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 88 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) + 10.0.0.97 > 224.0.0.18: vrrp 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 197, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) + 10.0.0.97 > 224.0.0.18: vrrp 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 197, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" +IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 40 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) + 10.0.0.97 > 224.0.0.18: vrrp 10.0.0.97 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 197, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 +IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 88 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) + 10.0.0.97 > 224.0.0.18: vrrp 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 197, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) + 10.0.0.97 > 224.0.0.18: vrrp 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 197, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 +IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 40 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) + 10.0.0.97 > 224.0.0.18: vrrp 10.0.0.97 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 197, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 +IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 88 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) + 10.0.0.97 > 224.0.0.18: vrrp 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 197, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) + 10.0.0.97 > 224.0.0.18: vrrp 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 197, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" +IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 40 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) + 10.0.0.97 > 224.0.0.18: vrrp 10.0.0.97 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 197, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 +IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 88 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) + 10.0.0.97 > 224.0.0.18: vrrp 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 197, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) + 10.0.0.97 > 224.0.0.18: vrrp 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 197, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 +IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 40 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) + 10.0.0.97 > 224.0.0.18: vrrp 10.0.0.97 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 197, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 +IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 88 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) + 10.0.0.97 > 224.0.0.18: vrrp 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 197, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) + 10.0.0.97 > 224.0.0.18: vrrp 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 197, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" +IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 40 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) + 10.0.0.97 > 224.0.0.18: vrrp 10.0.0.97 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 197, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 +IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 88 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) + 10.0.0.97 > 224.0.0.18: vrrp 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 197, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) + 10.0.0.97 > 224.0.0.18: vrrp 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 197, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 +IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 40 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) + 10.0.0.97 > 224.0.0.18: vrrp 10.0.0.97 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 197, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 +IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 88 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) + 10.0.0.97 > 224.0.0.18: vrrp 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 197, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) + 10.0.0.97 > 224.0.0.18: vrrp 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 197, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" +IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 40 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) + 10.0.0.97 > 224.0.0.18: vrrp 10.0.0.97 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 197, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 +IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 88 +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) + 10.0.0.97 > 224.0.0.18: vrrp 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 197, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" +IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) + 10.0.0.97 > 224.0.0.18: vrrp 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 197, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 diff --git a/src/tests/vrrp.out b/src/tests/vrrp.out new file mode 100644 index 0000000..c9b1664 --- /dev/null +++ b/src/tests/vrrp.out @@ -0,0 +1,165 @@ +IP 10.0.0.91 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 191, authtype simple, intvl 10s, length 28 +IP 10.0.0.91 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 191, authtype none, intvl 10s, length 20 +IP 10.0.0.91 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 191, intvl 1000cs, length 16 +IP 10.0.0.91 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 191, authtype simple, intvl 10s, length 28 +IP 10.0.0.91 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 191, authtype none, intvl 10s, length 20 +IP6 fe80::d6ca:6dff:fe66:cf60 > ff02::12: ip-proto-112 40 +IP6 fe80::d6ca:6dff:fe66:cf60 > ff02::12: ip-proto-112 88 +IP 10.0.0.91 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 191, intvl 1000cs, length 16 +IP 10.0.0.91 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 191, authtype simple, intvl 10s, length 28 +IP 10.0.0.91 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 191, authtype none, intvl 10s, length 20 +IP6 fe80::d6ca:6dff:fe66:cf60 > ff02::12: ip-proto-112 88 +IP6 fe80::d6ca:6dff:fe66:cf60 > ff02::12: ip-proto-112 40 +IP 10.0.0.91 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 191, intvl 1000cs, length 16 +IP 10.0.0.92 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 192, authtype simple, intvl 10s, length 28 +IP 10.0.0.92 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 192, authtype none, intvl 10s, length 20 +IP 10.0.0.92 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 192, intvl 1000cs, length 16 +IP6 fe80::d6ca:6dff:fe66:cf60 > ff02::12: ip-proto-112 40 +IP6 fe80::d6ca:6dff:fe66:cf60 > ff02::12: ip-proto-112 88 +IP 10.0.0.92 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 192, authtype simple, intvl 10s, length 28 +IP 10.0.0.92 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 192, authtype none, intvl 10s, length 20 +IP 10.0.0.92 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 192, intvl 1000cs, length 16 +IP6 fe80::d6ca:6dff:fe72:b1da > ff02::12: ip-proto-112 88 +IP6 fe80::d6ca:6dff:fe72:b1da > ff02::12: ip-proto-112 40 +IP 10.0.0.92 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 192, authtype simple, intvl 10s, length 28 +IP 10.0.0.92 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 192, authtype none, intvl 10s, length 20 +IP 10.0.0.92 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 192, intvl 1000cs, length 16 +IP6 fe80::d6ca:6dff:fe72:b1da > ff02::12: ip-proto-112 40 +IP6 fe80::d6ca:6dff:fe72:b1da > ff02::12: ip-proto-112 88 +IP 10.0.0.93 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 193, authtype simple, intvl 10s, length 28 +IP 10.0.0.93 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 193, authtype none, intvl 10s, length 20 +IP 10.0.0.93 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 193, intvl 1000cs, length 16 +IP6 fe80::d6ca:6dff:fe72:b1da > ff02::12: ip-proto-112 88 +IP6 fe80::d6ca:6dff:fe72:b1da > ff02::12: ip-proto-112 40 +IP 10.0.0.93 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 193, authtype simple, intvl 10s, length 28 +IP 10.0.0.93 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 193, authtype none, intvl 10s, length 20 +IP6 fe80::d6ca:6dff:fe66:cf65 > ff02::12: ip-proto-112 88 +IP6 fe80::d6ca:6dff:fe66:cf65 > ff02::12: ip-proto-112 40 +IP 10.0.0.93 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 193, intvl 1000cs, length 16 +IP 10.0.0.93 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 193, authtype simple, intvl 10s, length 28 +IP 10.0.0.93 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 193, authtype none, intvl 10s, length 20 +IP6 fe80::d6ca:6dff:fe66:cf65 > ff02::12: ip-proto-112 88 +IP6 fe80::d6ca:6dff:fe66:cf65 > ff02::12: ip-proto-112 40 +IP 10.0.0.93 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 193, intvl 1000cs, length 16 +IP 10.0.0.93 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 193, authtype none, intvl 10s, length 20 +IP 10.0.0.93 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 193, authtype simple, intvl 10s, length 28 +IP6 fe80::d6ca:6dff:fe66:cf65 > ff02::12: ip-proto-112 88 +IP6 fe80::d6ca:6dff:fe66:cf65 > ff02::12: ip-proto-112 40 +IP 10.0.0.93 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 193, intvl 1000cs, length 16 +IP 10.0.0.94 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 194, authtype simple, intvl 10s, length 28 +IP 10.0.0.94 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 194, authtype none, intvl 10s, length 20 +IP 10.0.0.94 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 194, intvl 1000cs, length 16 +IP6 fe80::d6ca:6dff:fe66:cf65 > ff02::12: ip-proto-112 88 +IP6 fe80::d6ca:6dff:fe66:cf65 > ff02::12: ip-proto-112 40 +IP 10.0.0.94 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 194, authtype simple, intvl 10s, length 28 +IP 10.0.0.94 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 194, authtype none, intvl 10s, length 20 +IP6 fe80::d6ca:6dff:fe65:d45c > ff02::12: ip-proto-112 40 +IP 10.0.0.94 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 194, intvl 1000cs, length 16 +IP6 fe80::d6ca:6dff:fe65:d45c > ff02::12: ip-proto-112 88 +IP 10.0.0.94 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 194, authtype simple, intvl 10s, length 28 +IP 10.0.0.94 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 194, authtype none, intvl 10s, length 20 +IP 10.0.0.94 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 194, intvl 1000cs, length 16 +IP6 fe80::d6ca:6dff:fe65:d45c > ff02::12: ip-proto-112 40 +IP6 fe80::d6ca:6dff:fe65:d45c > ff02::12: ip-proto-112 88 +IP 10.0.0.94 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 194, authtype simple, intvl 10s, length 28 +IP 10.0.0.94 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 194, authtype none, intvl 10s, length 20 +IP6 fe80::d6ca:6dff:fe65:d45c > ff02::12: ip-proto-112 40 +IP 10.0.0.94 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 194, intvl 1000cs, length 16 +IP6 fe80::d6ca:6dff:fe65:d45c > ff02::12: ip-proto-112 88 +IP 10.0.0.94 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 194, authtype simple, intvl 10s, length 28 +IP 10.0.0.94 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 194, authtype none, intvl 10s, length 20 +IP 10.0.0.94 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 194, intvl 1000cs, length 16 +IP6 fe80::d6ca:6dff:fe65:d45c > ff02::12: ip-proto-112 40 +IP6 fe80::d6ca:6dff:fe65:d45c > ff02::12: ip-proto-112 88 +IP 10.0.0.95 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 195, authtype simple, intvl 10s, length 28 +IP 10.0.0.95 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 195, authtype none, intvl 10s, length 20 +IP 10.0.0.95 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 195, intvl 1000cs, length 16 +IP6 fe80::d6ca:6dff:fe65:d45c > ff02::12: ip-proto-112 40 +IP6 fe80::d6ca:6dff:fe65:d45c > ff02::12: ip-proto-112 88 +IP 10.0.0.95 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 195, authtype simple, intvl 10s, length 28 +IP 10.0.0.95 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 195, authtype none, intvl 10s, length 20 +IP 10.0.0.95 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 195, intvl 1000cs, length 16 +IP6 fe80::d6ca:6dff:fe65:d46b > ff02::12: ip-proto-112 40 +IP6 fe80::d6ca:6dff:fe65:d46b > ff02::12: ip-proto-112 88 +IP 10.0.0.95 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 195, authtype simple, intvl 10s, length 28 +IP 10.0.0.95 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 195, authtype none, intvl 10s, length 20 +IP6 fe80::d6ca:6dff:fe65:d46b > ff02::12: ip-proto-112 40 +IP 10.0.0.95 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 195, intvl 1000cs, length 16 +IP6 fe80::d6ca:6dff:fe65:d46b > ff02::12: ip-proto-112 88 +IP 10.0.0.95 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 195, authtype simple, intvl 10s, length 28 +IP 10.0.0.95 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 195, authtype none, intvl 10s, length 20 +IP 10.0.0.95 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 195, intvl 1000cs, length 16 +IP6 fe80::d6ca:6dff:fe65:d46b > ff02::12: ip-proto-112 40 +IP6 fe80::d6ca:6dff:fe65:d46b > ff02::12: ip-proto-112 88 +IP 10.0.0.96 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 196, authtype simple, intvl 10s, length 28 +IP 10.0.0.96 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 196, authtype none, intvl 10s, length 20 +IP 10.0.0.96 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 196, intvl 1000cs, length 16 +IP6 fe80::d6ca:6dff:fe65:d46b > ff02::12: ip-proto-112 40 +IP6 fe80::d6ca:6dff:fe65:d46b > ff02::12: ip-proto-112 88 +IP 10.0.0.96 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 196, authtype simple, intvl 10s, length 28 +IP 10.0.0.96 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 196, authtype none, intvl 10s, length 20 +IP6 fe80::d6ca:6dff:fe72:b1e4 > ff02::12: ip-proto-112 40 +IP 10.0.0.96 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 196, intvl 1000cs, length 16 +IP6 fe80::d6ca:6dff:fe72:b1e4 > ff02::12: ip-proto-112 88 +IP 10.0.0.96 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 196, authtype simple, intvl 10s, length 28 +IP 10.0.0.96 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 196, authtype none, intvl 10s, length 20 +IP6 fe80::d6ca:6dff:fe72:b1e4 > ff02::12: ip-proto-112 40 +IP 10.0.0.96 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 196, intvl 1000cs, length 16 +IP6 fe80::d6ca:6dff:fe72:b1e4 > ff02::12: ip-proto-112 88 +IP 10.0.0.96 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 196, authtype none, intvl 10s, length 20 +IP 10.0.0.96 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 196, authtype simple, intvl 10s, length 28 +IP6 fe80::d6ca:6dff:fe72:b1e4 > ff02::12: ip-proto-112 40 +IP 10.0.0.96 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 196, intvl 1000cs, length 16 +IP6 fe80::d6ca:6dff:fe72:b1e4 > ff02::12: ip-proto-112 88 +IP 10.0.0.96 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 196, authtype simple, intvl 10s, length 28 +IP 10.0.0.96 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 196, authtype none, intvl 10s, length 20 +IP6 fe80::d6ca:6dff:fe72:b1e4 > ff02::12: ip-proto-112 40 +IP 10.0.0.96 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 196, intvl 1000cs, length 16 +IP6 fe80::d6ca:6dff:fe72:b1e4 > ff02::12: ip-proto-112 88 +IP 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 197, authtype simple, intvl 10s, length 28 +IP 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 197, authtype none, intvl 10s, length 20 +IP 10.0.0.97 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 197, intvl 1000cs, length 16 +IP6 fe80::d6ca:6dff:fe72:b1e4 > ff02::12: ip-proto-112 40 +IP6 fe80::d6ca:6dff:fe72:b1e4 > ff02::12: ip-proto-112 88 +IP 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 197, authtype simple, intvl 10s, length 28 +IP 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 197, authtype none, intvl 10s, length 20 +IP6 fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 40 +IP 10.0.0.97 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 197, intvl 1000cs, length 16 +IP6 fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 88 +IP 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 197, authtype none, intvl 10s, length 20 +IP 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 197, authtype simple, intvl 10s, length 28 +IP6 fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 40 +IP 10.0.0.97 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 197, intvl 1000cs, length 16 +IP6 fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 88 +IP 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 197, authtype simple, intvl 10s, length 28 +IP 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 197, authtype none, intvl 10s, length 20 +IP6 fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 40 +IP 10.0.0.97 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 197, intvl 1000cs, length 16 +IP6 fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 88 +IP 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 197, authtype none, intvl 10s, length 20 +IP 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 197, authtype simple, intvl 10s, length 28 +IP6 fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 40 +IP 10.0.0.97 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 197, intvl 1000cs, length 16 +IP6 fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 88 +IP 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 197, authtype simple, intvl 10s, length 28 +IP 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 197, authtype none, intvl 10s, length 20 +IP6 fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 40 +IP 10.0.0.97 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 197, intvl 1000cs, length 16 +IP6 fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 88 +IP 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 197, authtype none, intvl 10s, length 20 +IP 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 197, authtype simple, intvl 10s, length 28 +IP6 fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 40 +IP 10.0.0.97 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 197, intvl 1000cs, length 16 +IP6 fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 88 +IP 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 197, authtype simple, intvl 10s, length 28 +IP 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 197, authtype none, intvl 10s, length 20 +IP6 fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 40 +IP 10.0.0.97 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 197, intvl 1000cs, length 16 +IP6 fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 88 +IP 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 197, authtype none, intvl 10s, length 20 +IP 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 197, authtype simple, intvl 10s, length 28 +IP6 fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 40 +IP 10.0.0.97 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 197, intvl 1000cs, length 16 +IP6 fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 88 +IP 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 197, authtype simple, intvl 10s, length 28 +IP 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 197, authtype none, intvl 10s, length 20 diff --git a/src/tests/vrrp.pcap b/src/tests/vrrp.pcap new file mode 100644 index 0000000..8db1e20 Binary files /dev/null and b/src/tests/vrrp.pcap differ diff --git a/src/tests/vxlan.out b/src/tests/vxlan.out new file mode 100644 index 0000000..b422586 --- /dev/null +++ b/src/tests/vxlan.out @@ -0,0 +1,20 @@ + 1 36:dc:85:1e:b3:40 > 00:16:3e:08:71:cf, ethertype IPv4 (0x0800), length 148: 192.168.203.1.45149 > 192.168.202.1.4789: VXLAN, flags [I] (0x08), vni 100 +00:16:3e:37:f6:04 > 00:30:88:01:00:02, ethertype IPv4 (0x0800), length 98: 192.168.203.3 > 192.168.203.5: ICMP echo request, id 1292, seq 1, length 64 + 2 00:16:3e:08:71:cf > 36:dc:85:1e:b3:40, ethertype IPv4 (0x0800), length 92: 192.168.202.1.42710 > 192.168.203.1.4789: VXLAN, flags [I] (0x08), vni 100 +00:30:88:01:00:02 > ff:ff:ff:ff:ff:ff, ethertype ARP (0x0806), length 42: Request who-has 192.168.203.3 tell 192.168.203.5, length 28 + 3 36:dc:85:1e:b3:40 > 00:16:3e:08:71:cf, ethertype IPv4 (0x0800), length 92: 192.168.203.1.52102 > 192.168.202.1.4789: VXLAN, flags [I] (0x08), vni 100 +00:16:3e:37:f6:04 > 00:30:88:01:00:02, ethertype ARP (0x0806), length 42: Reply 192.168.203.3 is-at 00:16:3e:37:f6:04, length 28 + 4 00:16:3e:08:71:cf > 36:dc:85:1e:b3:40, ethertype IPv4 (0x0800), length 148: 192.168.202.1.32894 > 192.168.203.1.4789: VXLAN, flags [I] (0x08), vni 100 +00:30:88:01:00:02 > 00:16:3e:37:f6:04, ethertype IPv4 (0x0800), length 98: 192.168.203.5 > 192.168.203.3: ICMP echo reply, id 1292, seq 1, length 64 + 5 36:dc:85:1e:b3:40 > 00:16:3e:08:71:cf, ethertype IPv4 (0x0800), length 148: 192.168.203.1.45149 > 192.168.202.1.4789: VXLAN, flags [I] (0x08), vni 100 +00:16:3e:37:f6:04 > 00:30:88:01:00:02, ethertype IPv4 (0x0800), length 98: 192.168.203.3 > 192.168.203.5: ICMP echo request, id 1292, seq 2, length 64 + 6 00:16:3e:08:71:cf > 36:dc:85:1e:b3:40, ethertype IPv4 (0x0800), length 148: 192.168.202.1.32894 > 192.168.203.1.4789: VXLAN, flags [I] (0x08), vni 100 +00:30:88:01:00:02 > 00:16:3e:37:f6:04, ethertype IPv4 (0x0800), length 98: 192.168.203.5 > 192.168.203.3: ICMP echo reply, id 1292, seq 2, length 64 + 7 36:dc:85:1e:b3:40 > 00:16:3e:08:71:cf, ethertype IPv4 (0x0800), length 148: 192.168.203.1.45149 > 192.168.202.1.4789: VXLAN, flags [I] (0x08), vni 100 +00:16:3e:37:f6:04 > 00:30:88:01:00:02, ethertype IPv4 (0x0800), length 98: 192.168.203.3 > 192.168.203.5: ICMP echo request, id 1292, seq 3, length 64 + 8 00:16:3e:08:71:cf > 36:dc:85:1e:b3:40, ethertype IPv4 (0x0800), length 148: 192.168.202.1.32894 > 192.168.203.1.4789: VXLAN, flags [I] (0x08), vni 100 +00:30:88:01:00:02 > 00:16:3e:37:f6:04, ethertype IPv4 (0x0800), length 98: 192.168.203.5 > 192.168.203.3: ICMP echo reply, id 1292, seq 3, length 64 + 9 36:dc:85:1e:b3:40 > 00:16:3e:08:71:cf, ethertype IPv4 (0x0800), length 148: 192.168.203.1.45149 > 192.168.202.1.4789: VXLAN, flags [I] (0x08), vni 100 +00:16:3e:37:f6:04 > 00:30:88:01:00:02, ethertype IPv4 (0x0800), length 98: 192.168.203.3 > 192.168.203.5: ICMP echo request, id 1292, seq 4, length 64 + 10 00:16:3e:08:71:cf > 36:dc:85:1e:b3:40, ethertype IPv4 (0x0800), length 148: 192.168.202.1.32894 > 192.168.203.1.4789: VXLAN, flags [I] (0x08), vni 100 +00:30:88:01:00:02 > 00:16:3e:37:f6:04, ethertype IPv4 (0x0800), length 98: 192.168.203.5 > 192.168.203.3: ICMP echo reply, id 1292, seq 4, length 64 diff --git a/src/tests/vxlan.pcap b/src/tests/vxlan.pcap new file mode 100644 index 0000000..04f0c2f Binary files /dev/null and b/src/tests/vxlan.pcap differ diff --git a/src/tests/zmtp1.out b/src/tests/zmtp1.out new file mode 100644 index 0000000..5b52877 --- /dev/null +++ b/src/tests/zmtp1.out @@ -0,0 +1,73 @@ +IP (tos 0x0, ttl 64, id 17993, offset 0, flags [DF], proto TCP (6), length 60) + 127.0.0.1.55358 > 127.0.0.1.33000: Flags [S], cksum 0xfe30 (incorrect -> 0x1a9d), seq 2523978814, win 32792, options [mss 16396,sackOK,TS val 245537399 ecr 0,nop,wscale 7], length 0 +IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto TCP (6), length 60) + 127.0.0.1.33000 > 127.0.0.1.55358: Flags [S.], cksum 0xfe30 (incorrect -> 0x31b6), seq 3988083230, ack 2523978815, win 32768, options [mss 16396,sackOK,TS val 245537399 ecr 245537399,nop,wscale 7], length 0 +IP (tos 0x0, ttl 64, id 17994, offset 0, flags [DF], proto TCP (6), length 52) + 127.0.0.1.55358 > 127.0.0.1.33000: Flags [.], cksum 0xfe28 (incorrect -> 0x19da), ack 1, win 257, options [nop,nop,TS val 245537399 ecr 245537399], length 0 +IP (tos 0x0, ttl 64, id 17995, offset 0, flags [DF], proto TCP (6), length 54) + 127.0.0.1.55358 > 127.0.0.1.33000: Flags [P.], cksum 0xfe2a (incorrect -> 0x18d0), seq 1:3, ack 1, win 257, options [nop,nop,TS val 245537399 ecr 245537399], length 2: ZMTP/1.0 + frame flags+body (8-bit) length 1, flags 0x00 (-|-|-|-|-|-|-|-) +IP (tos 0x0, ttl 64, id 51304, offset 0, flags [DF], proto TCP (6), length 52) + 127.0.0.1.33000 > 127.0.0.1.55358: Flags [.], cksum 0xfe28 (incorrect -> 0x19d9), ack 3, win 256, options [nop,nop,TS val 245537399 ecr 245537399], length 0 +IP (tos 0x0, ttl 64, id 51305, offset 0, flags [DF], proto TCP (6), length 54) + 127.0.0.1.33000 > 127.0.0.1.55358: Flags [P.], cksum 0xfe2a (incorrect -> 0x18cf), seq 1:3, ack 3, win 256, options [nop,nop,TS val 245537399 ecr 245537399], length 2: ZMTP/1.0 + frame flags+body (8-bit) length 1, flags 0x00 (-|-|-|-|-|-|-|-) +IP (tos 0x0, ttl 64, id 17996, offset 0, flags [DF], proto TCP (6), length 52) + 127.0.0.1.55358 > 127.0.0.1.33000: Flags [.], cksum 0xfe28 (incorrect -> 0x19d6), ack 3, win 257, options [nop,nop,TS val 245537399 ecr 245537399], length 0 +IP (tos 0x0, ttl 64, id 17997, offset 0, flags [DF], proto TCP (6), length 148) + 127.0.0.1.55358 > 127.0.0.1.33000: Flags [P.], cksum 0xfe88 (incorrect -> 0x11da), seq 3:99, ack 3, win 257, options [nop,nop,TS val 245537399 ecr 245537399], length 96: ZMTP/1.0 + frame flags+body (8-bit) length 1, flags 0x01 (-|-|-|-|-|-|-|MORE) + frame flags+body (8-bit) length 93, flags 0x00 (-|-|-|-|-|-|-|-), first 92 byte(s) of body: + 0x0000: 5468 6973 2069 7320 6120 7368 6f72 7420 This.is.a.short. + 0x0010: 4153 4349 4920 6d65 7373 6167 6520 666f ASCII.message.fo + 0x0020: 6c6c 6f77 6564 2062 7920 6120 7368 6f72 llowed.by.a.shor + 0x0030: 7420 6269 6e61 7279 206d 6573 7361 6765 t.binary.message + 0x0040: 2061 6e64 2061 206c 6f6e 6765 7220 4153 .and.a.longer.AS + 0x0050: 4349 4920 6d65 7373 6167 652e CII.message. + +IP (tos 0x0, ttl 64, id 51306, offset 0, flags [DF], proto TCP (6), length 84) + 127.0.0.1.33000 > 127.0.0.1.55358: Flags [P.], cksum 0xfe48 (incorrect -> 0xc80f), seq 3:35, ack 99, win 256, options [nop,nop,TS val 245537399 ecr 245537399], length 32: ZMTP/1.0 + frame flags+body (8-bit) length 1, flags 0x01 (-|-|-|-|-|-|-|MORE) + frame flags+body (8-bit) length 29, flags 0x00 (-|-|-|-|-|-|-|-), first 28 byte(s) of body: + 0x0000: 5468 6973 2069 7320 6120 7368 6f72 7420 This.is.a.short. + 0x0010: 4153 4349 4920 7265 706c 792e ASCII.reply. + +IP (tos 0x0, ttl 64, id 17998, offset 0, flags [DF], proto TCP (6), length 72) + 127.0.0.1.55358 > 127.0.0.1.33000: Flags [P.], cksum 0xfe3c (incorrect -> 0xcef8), seq 99:119, ack 35, win 257, options [nop,nop,TS val 245537399 ecr 245537399], length 20: ZMTP/1.0 + frame flags+body (8-bit) length 1, flags 0x01 (-|-|-|-|-|-|-|MORE) + frame flags+body (8-bit) length 17, flags 0x00 (-|-|-|-|-|-|-|-), first 16 byte(s) of body: + 0x0000: 0001 0203 0405 0607 0809 0a0b 0c0d 0e0f ................ + +IP (tos 0x0, ttl 64, id 51307, offset 0, flags [DF], proto TCP (6), length 84) + 127.0.0.1.33000 > 127.0.0.1.55358: Flags [P.], cksum 0xfe48 (incorrect -> 0xc7da), seq 35:67, ack 119, win 256, options [nop,nop,TS val 245537400 ecr 245537399], length 32: ZMTP/1.0 + frame flags+body (8-bit) length 1, flags 0x01 (-|-|-|-|-|-|-|MORE) + frame flags+body (8-bit) length 29, flags 0x00 (-|-|-|-|-|-|-|-), first 28 byte(s) of body: + 0x0000: 5468 6973 2069 7320 6120 7368 6f72 7420 This.is.a.short. + 0x0010: 4153 4349 4920 7265 706c 792e ASCII.reply. + +IP (tos 0x0, ttl 64, id 17999, offset 0, flags [DF], proto TCP (6), length 603) + 127.0.0.1.55358 > 127.0.0.1.33000: Flags [P.], cksum 0x0050 (incorrect -> 0xafc1), seq 119:670, ack 67, win 257, options [nop,nop,TS val 245537400 ecr 245537400], length 551: ZMTP/1.0 + frame flags+body (8-bit) length 1, flags 0x01 (-|-|-|-|-|-|-|MORE) + frame flags+body (64-bit) length 540, flags 0x00 (-|-|-|-|-|-|-|-), first 128 byte(s) of body: + 0x0000: 5468 6520 7175 6963 6b20 6272 6f77 6e20 The.quick.brown. + 0x0010: 666f 7820 6a75 6d70 7320 6f76 6572 2074 fox.jumps.over.t + 0x0020: 6865 206c 617a 7920 646f 672e 2054 6865 he.lazy.dog..The + 0x0030: 2071 7569 636b 2062 726f 776e 2066 6f78 .quick.brown.fox + 0x0040: 206a 756d 7073 206f 7665 7220 7468 6520 .jumps.over.the. + 0x0050: 6c61 7a79 2064 6f67 2e20 5468 6520 7175 lazy.dog..The.qu + 0x0060: 6963 6b20 6272 6f77 6e20 666f 7820 6a75 ick.brown.fox.ju + 0x0070: 6d70 7320 6f76 6572 2074 6865 206c 617a mps.over.the.laz + +IP (tos 0x0, ttl 64, id 51308, offset 0, flags [DF], proto TCP (6), length 84) + 127.0.0.1.33000 > 127.0.0.1.55358: Flags [P.], cksum 0xfe48 (incorrect -> 0xc592), seq 67:99, ack 670, win 256, options [nop,nop,TS val 245537400 ecr 245537400], length 32: ZMTP/1.0 + frame flags+body (8-bit) length 1, flags 0x01 (-|-|-|-|-|-|-|MORE) + frame flags+body (8-bit) length 29, flags 0x00 (-|-|-|-|-|-|-|-), first 28 byte(s) of body: + 0x0000: 5468 6973 2069 7320 6120 7368 6f72 7420 This.is.a.short. + 0x0010: 4153 4349 4920 7265 706c 792e ASCII.reply. + +IP (tos 0x0, ttl 64, id 18000, offset 0, flags [DF], proto TCP (6), length 52) + 127.0.0.1.55358 > 127.0.0.1.33000: Flags [F.], cksum 0xfe28 (incorrect -> 0x16d8), seq 670, ack 99, win 257, options [nop,nop,TS val 245537400 ecr 245537400], length 0 +IP (tos 0x0, ttl 64, id 51309, offset 0, flags [DF], proto TCP (6), length 52) + 127.0.0.1.33000 > 127.0.0.1.55358: Flags [F.], cksum 0xfe28 (incorrect -> 0x16d8), seq 99, ack 671, win 256, options [nop,nop,TS val 245537400 ecr 245537400], length 0 +IP (tos 0x0, ttl 64, id 18001, offset 0, flags [DF], proto TCP (6), length 52) + 127.0.0.1.55358 > 127.0.0.1.33000: Flags [.], cksum 0xfe28 (incorrect -> 0x16d7), ack 100, win 257, options [nop,nop,TS val 245537400 ecr 245537400], length 0 diff --git a/src/tests/zmtp1.pcap b/src/tests/zmtp1.pcap new file mode 100644 index 0000000..55aebea Binary files /dev/null and b/src/tests/zmtp1.pcap differ diff --git a/src/timeval-operations.h b/src/timeval-operations.h new file mode 100644 index 0000000..4f4e85c --- /dev/null +++ b/src/timeval-operations.h @@ -0,0 +1,78 @@ +/* + * Copyright (c) 2015 The TCPDUMP project + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ + +#ifndef netdissect_timeval_operations_h +#define netdissect_timeval_operations_h + +/* Operations on timevals. */ + +#ifndef _MICRO_PER_SEC +#define _MICRO_PER_SEC 1000000 +#endif + +#ifndef _NANO_PER_SEC +#define _NANO_PER_SEC 1000000000 +#endif + +#define netdissect_timevalclear(tvp) ((tvp)->tv_sec = (tvp)->tv_usec = 0) + +#define netdissect_timevalisset(tvp) ((tvp)->tv_sec || (tvp)->tv_usec) + +#define netdissect_timevalcmp(tvp, uvp, cmp) \ + (((tvp)->tv_sec == (uvp)->tv_sec) ? \ + ((tvp)->tv_usec cmp (uvp)->tv_usec) : \ + ((tvp)->tv_sec cmp (uvp)->tv_sec)) + +#define netdissect_timevaladd(tvp, uvp, vvp, nano_prec) \ + do { \ + (vvp)->tv_sec = (tvp)->tv_sec + (uvp)->tv_sec; \ + (vvp)->tv_usec = (tvp)->tv_usec + (uvp)->tv_usec; \ + if (nano_prec) { \ + if ((vvp)->tv_usec >= _NANO_PER_SEC) { \ + (vvp)->tv_sec++; \ + (vvp)->tv_usec -= _NANO_PER_SEC; \ + } \ + } else { \ + if ((vvp)->tv_usec >= _MICRO_PER_SEC) { \ + (vvp)->tv_sec++; \ + (vvp)->tv_usec -= _MICRO_PER_SEC; \ + } \ + } \ + } while (0) + +#define netdissect_timevalsub(tvp, uvp, vvp, nano_prec) \ + do { \ + (vvp)->tv_sec = (tvp)->tv_sec - (uvp)->tv_sec; \ + (vvp)->tv_usec = (tvp)->tv_usec - (uvp)->tv_usec; \ + if ((vvp)->tv_usec < 0) { \ + (vvp)->tv_sec--; \ + (vvp)->tv_usec += (nano_prec ? _NANO_PER_SEC : \ + _MICRO_PER_SEC); \ + } \ + } while (0) + +#endif /* netdissect_timeval_operations_h */ diff --git a/src/udp.h b/src/udp.h new file mode 100644 index 0000000..abed3c6 --- /dev/null +++ b/src/udp.h @@ -0,0 +1,321 @@ +/* + * Copyright (c) 1982, 1986, 1993 + * The Regents of the University of California. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. All advertising materials mentioning features or use of this software + * must display the following acknowledgement: + * This product includes software developed by the University of + * California, Berkeley and its contributors. + * 4. Neither the name of the University nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + * + * @(#)udp.h 8.1 (Berkeley) 6/10/93 + */ +#ifndef _tcpdump_udp_h +#define _tcpdump_udp_h 1 + +/* + * Udp protocol header. + * Per RFC 768, September, 1981. + */ +struct udphdr { + uint16_t uh_sport; /* source port */ + uint16_t uh_dport; /* destination port */ + uint16_t uh_ulen; /* udp length */ + uint16_t uh_sum; /* udp checksum */ +}; + +#ifndef NAMESERVER_PORT +#define NAMESERVER_PORT 53 +#endif +#ifndef TACACS_DB_PORT +#define TACACS_DB_PORT 65 /*XXX*/ +#endif +#ifndef ORACLE_SQLNET_PORT +#define ORACLE_SQLNET_PORT 66 /*XXX*/ +#endif +#ifndef BOOTPS_PORT +#define BOOTPS_PORT 67 /* RFC951 */ +#endif +#ifndef BOOTPC_PORT +#define BOOTPC_PORT 68 /* RFC951 */ +#endif +#ifndef TFTP_PORT +#define TFTP_PORT 69 /*XXX*/ +#endif +#ifndef KERBEROS_PORT +#define KERBEROS_PORT 88 /*XXX*/ +#endif +#ifndef SUNRPC_PORT +#define SUNRPC_PORT 111 /*XXX*/ +#endif +#ifndef NTP_PORT +#define NTP_PORT 123 /*XXX*/ +#endif +#ifndef NETBIOS_NS_PORT +#define NETBIOS_NS_PORT 137 /* RFC 1001, RFC 1002 */ +#endif +#ifndef NETBIOS_DGRAM_PORT +#define NETBIOS_DGRAM_PORT 138 /* RFC 1001, RFC 1002 */ +#endif +#ifndef NETBIOS_SSN_PORT +#define NETBIOS_SSN_PORT 139 /* RFC 1001, RFC 1002 */ +#endif +#ifndef SNMP_PORT +#define SNMP_PORT 161 /*XXX*/ +#endif +#ifndef SNMPTRAP_PORT +#define SNMPTRAP_PORT 162 /*XXX*/ +#endif +#ifndef BGP_PORT +#define BGP_PORT 179 /*XXX*/ +#endif +#ifndef APPLETALK_RTMP_PORT +#define APPLETALK_RTMP_PORT 201 /*XXX*/ +#endif +#ifndef APPLETALK_NB_PORT +#define APPLETALK_NB_PORT 202 /*XXX*/ +#endif +#ifndef APPLETALK_ECHO +#define APPLETALK_ECHO 204 /*XXX*/ +#endif +#ifndef APPLETALK_ZONE_INFO_PORT +#define APPLETALK_ZONE_INFO_PORT 206 /*XXX*/ +#endif +#ifndef LDAP_PORT +#define LDAP_PORT 389 /*XXX*/ +#endif +#ifndef HTTPS_PORT +#define HTTPS_PORT 443 /*XXX*/ +#endif +#ifndef MICROSOFT_DS_PORT +#define MICROSOFT_DS_PORT 445 /*XXX*/ +#endif +#ifndef KERBEROS5_PASSWD_PORT +#define KERBEROS5_PASSWD_PORT 464 /* PER IANA */ +#endif +#ifndef CISCO_AUTORP_PORT +#define CISCO_AUTORP_PORT 496 /*XXX*/ +#endif +#ifndef ISAKMP_PORT +#define ISAKMP_PORT 500 /*XXX*/ +#endif +#ifndef SYSLOG_PORT +#define SYSLOG_PORT 514 /* rfc3164 */ +#endif +#ifndef RIP_PORT +#define RIP_PORT 520 /*XXX*/ +#endif +#ifndef RIPNG_PORT +#define RIPNG_PORT 521 /* RFC 2080 */ +#endif +#ifndef TIMED_PORT +#define TIMED_PORT 525 /*XXX*/ +#endif +#ifndef KERBEROS_LOGIN_PORT +#define KERBEROS_LOGIN_PORT 543 /*XXX*/ +#endif +#ifndef KERBEROS_SHELL_PORT +#define KERBEROS_SHELL_PORT 544 /*XXX*/ +#endif +#ifndef DHCP6_SERV_PORT +#define DHCP6_SERV_PORT 546 /*XXX*/ +#endif +#ifndef DHCP6_CLI_PORT +#define DHCP6_CLI_PORT 547 /*XXX*/ +#endif +#ifndef LDAPS_PORT +#define LDAPS_PORT 636 /*XXX - LDAP over TLS/SSL */ +#endif +#ifndef LDP_PORT +#define LDP_PORT 646 +#endif +#ifndef DHCP_FAILOVER_PORT +#define DHCP_FAILOVER_PORT 647 /*XXX*/ +#endif +#ifndef AQDV_PORT +#define AODV_PORT 654 /*XXX*/ +#endif +#ifndef OLSR_PORT +#define OLSR_PORT 698 /* rfc3626 */ +#endif +#ifndef LMP_PORT +#define LMP_PORT 701 /* rfc4204 */ +#endif +#ifndef CISCO_TDP_PORT +#define CISCO_TDP_PORT 711 /*XXX*/ +#endif +#ifndef KERBEROS_ADM_PORT +#define KERBEROS_ADM_PORT 749 /*XXX - Kerberos v5 */ +#endif +#ifndef KERBEROS_SEC_PORT +#define KERBEROS_SEC_PORT 750 /*XXX - Kerberos v4 */ +#endif +#ifndef RSYNC_PORT +#define RSYNC_PORT 873 /*XXX*/ +#endif +#ifndef LWRES_PORT +#define LWRES_PORT 921 /*XXX*/ +#endif +#ifndef OPENSSL_PORT +#define OPENSSL_PORT 1194 /*XXX*/ +#endif +#ifndef LOTUS_NOTES_PORT +#define LOTUS_NOTES_PORT 1352 /*XXX*/ +#endif +#ifndef MS_SQL_SERVER_PORT +#define MS_SQL_SERVER_PORT 1433 /*XXX*/ +#endif +#ifndef MS_SQL_SERVER_MONITOR +#define MS_SQL_SERVER_MONITOR 1434 /*XXX*/ +#endif +#ifndef INGRESLOCK_PORT +#define INGRESLOCK_PORT 1524 /*XXX*/ +#endif +#ifndef VQP_PORT +#define VQP_PORT 1589 /*XXX*/ +#endif +#ifndef RADIUS_PORT +#define RADIUS_PORT 1645 /*XXX*/ +#endif +#ifndef RADIUS_ACCOUNTING_PORT +#define RADIUS_ACCOUNTING_PORT 1646 +#endif +#ifndef RADIUS_CISCO_COA_PORT +#define RADIUS_CISCO_COA_PORT 1700 +#endif +#ifndef L2TP_PORT +#define L2TP_PORT 1701 /*XXX*/ +#endif +#ifndef RADIUS_NEW_PORT +#define RADIUS_NEW_PORT 1812 /*XXX*/ +#endif +#ifndef RADIUS_NEW_ACCOUNTING_PORT +#define RADIUS_NEW_ACCOUNTING_PORT 1813 +#endif +#ifndef HSRP_PORT +#define HSRP_PORT 1985 /*XXX*/ +#endif +#ifndef NFS_DAEMON_PORT +#define NFS_DAEMON_PORT 2049 /*XXX*/ +#endif +#ifndef ZEPHYR_SRV_PORT +#define ZEPHYR_SRV_PORT 2103 /*XXX*/ +#endif +#ifndef ZEPHYR_CLI_PORT +#define ZEPHYR_CLT_PORT 2104 /*XXX*/ +#endif +#ifndef MYSQL_PORT +#define MYSQL_PORT 3306 /*XXX*/ +#endif +#ifndef MS_RDP_PORT +#define MS_RDP_PORT 3389 /*XXX*/ +#endif +#ifndef VAT_PORT +#define VAT_PORT 3456 /*XXX*/ +#endif +#ifndef MPLS_LSP_PING_PORT +#define MPLS_LSP_PING_PORT 3503 /* draft-ietf-mpls-lsp-ping-02.txt */ +#endif +#ifndef SUBVERSION_PORT +#define SUBVERSION_PORT 3690 /*XXX*/ +#endif +#ifndef BFD_CONTROL_PORT +#define BFD_CONTROL_PORT 3784 /* draft-katz-ward-bfd-v4v6-1hop-00.txt */ +#endif +#ifndef BFD_ECHO_PORT +#define BFD_ECHO_PORT 3785 /* draft-katz-ward-bfd-v4v6-1hop-00.txt */ +#endif +#ifndef RADIUS_COA_PORT +#define RADIUS_COA_PORT 3799 /* RFC 5176 */ +#endif +#ifndef NFS_LOCK_DAEMON_PORT +#define NFS_LOCK_DAEMON_PORT 4045 /*XXX*/ +#endif +#ifndef LISP_CONTROL_PORT +#define LISP_CONTROL_PORT 4342 /* RFC 6830 */ +#endif +#ifndef ISAKMP_PORT_NATT +#define ISAKMP_PORT_NATT 4500 /* rfc3948 */ +#endif +#ifndef WB_PORT +#define WB_PORT 4567 +#endif +#ifndef VXLAN_PORT +#define VXLAN_PORT 4789 /* RFC 7348 */ +#endif +#ifndef VXLAN_GPE_PORT +#define VXLAN_GPE_PORT 4790 /* draft-ietf-nvo3-vxlan-gpe-01 */ +#endif +#ifndef SIP_DS_PORT +#define SIP_DS_PORT 5059 /*XXX*/ +#endif +#ifndef SIP_PORT +#define SIP_PORT 5060 +#endif +#ifndef MULTICASTDNS_PORT +#define MULTICASTDNS_PORT 5353 /* RFC 6762 */ +#endif +#ifndef AHCP_PORT +#define AHCP_PORT 5359 /* draft-chroboczek-ahcp-00 */ +#endif +#ifndef GENEVE_PORT +#define GENEVE_PORT 6081 /* draft-gross-geneve-02 */ +#endif +#ifndef SFLOW_PORT +#define SFLOW_PORT 6343 /* http://www.sflow.org/developers/specifications.php */ +#endif +#ifndef BABEL_PORT +#define BABEL_PORT 6696 /* RFC 6126 errata */ +#endif +#ifndef BABEL_PORT_OLD +#define BABEL_PORT_OLD 6697 /* RFC 6126 */ +#endif +#ifndef RX_PORT_LOW +#define RX_PORT_LOW 7000 /*XXX*/ +#endif +#ifndef RX_PORT_HIGH +#define RX_PORT_HIGH 7009 /*XXX*/ +#endif +#ifndef ISAKMP_PORT_USER1 +#define ISAKMP_PORT_USER1 7500 /*XXX - nonstandard*/ +#endif +#ifndef HNCP_PORT +#define HNCP_PORT 8231 /* RFC 7788 */ +#endif +#ifndef OTV_PORT +#define OTV_PORT 8472 /* draft-hasmit-otv-04 */ +#endif +#ifndef ISAKMP_PORT_USER2 +#define ISAKMP_PORT_USER2 8500 /*XXX - nonstandard*/ +#endif +#ifndef LWAPP_DATA_PORT +#define LWAPP_DATA_PORT 12222 /* RFC 5412 */ +#endif +#ifndef LWAPP_CONTROL_PORT +#define LWAPP_CONTROL_PORT 12223 /* RFC 5412 */ +#endif + +#endif + diff --git a/src/util-print.c b/src/util-print.c new file mode 100644 index 0000000..6858ce3 --- /dev/null +++ b/src/util-print.c @@ -0,0 +1,856 @@ +/* + * Copyright (c) 1990, 1991, 1993, 1994, 1995, 1996, 1997 + * The Regents of the University of California. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that: (1) source code distributions + * retain the above copyright notice and this paragraph in its entirety, (2) + * distributions including binary code include the above copyright notice and + * this paragraph in its entirety in the documentation or other materials + * provided with the distribution, and (3) all advertising materials mentioning + * features or use of this software display the following acknowledgement: + * ``This product includes software developed by the University of California, + * Lawrence Berkeley Laboratory and its contributors.'' Neither the name of + * the University nor the names of its contributors may be used to endorse + * or promote products derived from this software without specific prior + * written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED + * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ + +/* + * txtproto_print() derived from original code by Hannes Gredler + * (hannes@juniper.net): + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that: (1) source code + * distributions retain the above copyright notice and this paragraph + * in its entirety, and (2) distributions including binary code include + * the above copyright notice and this paragraph in its entirety in + * the documentation or other materials provided with the distribution. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND + * WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT + * LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE. + */ + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +#include + +#include + +#ifdef HAVE_FCNTL_H +#include +#endif +#include +#include +#include +#include +#include + +#include "netdissect.h" +#include "ascii_strcasecmp.h" +#include "timeval-operations.h" + +int32_t thiszone; /* seconds offset from gmt to local time */ +/* invalid string to print '(invalid)' for malformed or corrupted packets */ +const char istr[] = " (invalid)"; + +/* + * timestamp display buffer size, the biggest size of both formats is needed + * sizeof("0000000000.000000000") > sizeof("00:00:00.000000000") + */ +#define TS_BUF_SIZE sizeof("0000000000.000000000") + +#define TOKBUFSIZE 128 + +/* + * Print out a character, filtering out the non-printable ones + */ +void +fn_print_char(netdissect_options *ndo, u_char c) +{ + if (!ND_ISASCII(c)) { + c = ND_TOASCII(c); + ND_PRINT((ndo, "M-")); + } + if (!ND_ISPRINT(c)) { + c ^= 0x40; /* DEL to ?, others to alpha */ + ND_PRINT((ndo, "^")); + } + ND_PRINT((ndo, "%c", c)); +} + +/* + * Print out a null-terminated filename (or other ascii string). + * If ep is NULL, assume no truncation check is needed. + * Return true if truncated. + * Stop at ep (if given) or before the null char, whichever is first. + */ +int +fn_print(netdissect_options *ndo, + register const u_char *s, register const u_char *ep) +{ + register int ret; + register u_char c; + + ret = 1; /* assume truncated */ + while (ep == NULL || s < ep) { + c = *s++; + if (c == '\0') { + ret = 0; + break; + } + if (!ND_ISASCII(c)) { + c = ND_TOASCII(c); + ND_PRINT((ndo, "M-")); + } + if (!ND_ISPRINT(c)) { + c ^= 0x40; /* DEL to ?, others to alpha */ + ND_PRINT((ndo, "^")); + } + ND_PRINT((ndo, "%c", c)); + } + return(ret); +} + +/* + * Print out a counted filename (or other ascii string). + * If ep is NULL, assume no truncation check is needed. + * Return true if truncated. + * Stop at ep (if given) or after n bytes, whichever is first. + */ +int +fn_printn(netdissect_options *ndo, + register const u_char *s, register u_int n, register const u_char *ep) +{ + register u_char c; + + while (n > 0 && (ep == NULL || s < ep)) { + n--; + c = *s++; + if (!ND_ISASCII(c)) { + c = ND_TOASCII(c); + ND_PRINT((ndo, "M-")); + } + if (!ND_ISPRINT(c)) { + c ^= 0x40; /* DEL to ?, others to alpha */ + ND_PRINT((ndo, "^")); + } + ND_PRINT((ndo, "%c", c)); + } + return (n == 0) ? 0 : 1; +} + +/* + * Print out a null-padded filename (or other ascii string). + * If ep is NULL, assume no truncation check is needed. + * Return true if truncated. + * Stop at ep (if given) or after n bytes or before the null char, + * whichever is first. + */ +int +fn_printzp(netdissect_options *ndo, + register const u_char *s, register u_int n, + register const u_char *ep) +{ + register int ret; + register u_char c; + + ret = 1; /* assume truncated */ + while (n > 0 && (ep == NULL || s < ep)) { + n--; + c = *s++; + if (c == '\0') { + ret = 0; + break; + } + if (!ND_ISASCII(c)) { + c = ND_TOASCII(c); + ND_PRINT((ndo, "M-")); + } + if (!ND_ISPRINT(c)) { + c ^= 0x40; /* DEL to ?, others to alpha */ + ND_PRINT((ndo, "^")); + } + ND_PRINT((ndo, "%c", c)); + } + return (n == 0) ? 0 : ret; +} + +/* + * Format the timestamp + */ +static char * +ts_format(netdissect_options *ndo +#ifndef HAVE_PCAP_SET_TSTAMP_PRECISION +_U_ +#endif +, int sec, int usec, char *buf) +{ + const char *format; + +#ifdef HAVE_PCAP_SET_TSTAMP_PRECISION + switch (ndo->ndo_tstamp_precision) { + + case PCAP_TSTAMP_PRECISION_MICRO: + format = "%02d:%02d:%02d.%06u"; + break; + + case PCAP_TSTAMP_PRECISION_NANO: + format = "%02d:%02d:%02d.%09u"; + break; + + default: + format = "%02d:%02d:%02d.{unknown}"; + break; + } +#else + format = "%02d:%02d:%02d.%06u"; +#endif + + snprintf(buf, TS_BUF_SIZE, format, + sec / 3600, (sec % 3600) / 60, sec % 60, usec); + + return buf; +} + +/* + * Format the timestamp - Unix timeval style + */ +static char * +ts_unix_format(netdissect_options *ndo +#ifndef HAVE_PCAP_SET_TSTAMP_PRECISION +_U_ +#endif +, int sec, int usec, char *buf) +{ + const char *format; + +#ifdef HAVE_PCAP_SET_TSTAMP_PRECISION + switch (ndo->ndo_tstamp_precision) { + + case PCAP_TSTAMP_PRECISION_MICRO: + format = "%u.%06u"; + break; + + case PCAP_TSTAMP_PRECISION_NANO: + format = "%u.%09u"; + break; + + default: + format = "%u.{unknown}"; + break; + } +#else + format = "%u.%06u"; +#endif + + snprintf(buf, TS_BUF_SIZE, format, + (unsigned)sec, (unsigned)usec); + + return buf; +} + +/* + * Print the timestamp + */ +void +ts_print(netdissect_options *ndo, + register const struct timeval *tvp) +{ + register int s; + struct tm *tm; + time_t Time; + char buf[TS_BUF_SIZE]; + static struct timeval tv_ref; + struct timeval tv_result; + int negative_offset; + int nano_prec; + + switch (ndo->ndo_tflag) { + + case 0: /* Default */ + s = (tvp->tv_sec + thiszone) % 86400; + ND_PRINT((ndo, "%s ", ts_format(ndo, s, tvp->tv_usec, buf))); + break; + + case 1: /* No time stamp */ + break; + + case 2: /* Unix timeval style */ + ND_PRINT((ndo, "%s ", ts_unix_format(ndo, + tvp->tv_sec, tvp->tv_usec, buf))); + break; + + case 3: /* Microseconds/nanoseconds since previous packet */ + case 5: /* Microseconds/nanoseconds since first packet */ +#ifdef HAVE_PCAP_SET_TSTAMP_PRECISION + switch (ndo->ndo_tstamp_precision) { + case PCAP_TSTAMP_PRECISION_MICRO: + nano_prec = 0; + break; + case PCAP_TSTAMP_PRECISION_NANO: + nano_prec = 1; + break; + default: + nano_prec = 0; + break; + } +#else + nano_prec = 0; +#endif + if (!(netdissect_timevalisset(&tv_ref))) + tv_ref = *tvp; /* set timestamp for first packet */ + + negative_offset = netdissect_timevalcmp(tvp, &tv_ref, <); + if (negative_offset) + netdissect_timevalsub(&tv_ref, tvp, &tv_result, nano_prec); + else + netdissect_timevalsub(tvp, &tv_ref, &tv_result, nano_prec); + + ND_PRINT((ndo, (negative_offset ? "-" : " "))); + + ND_PRINT((ndo, "%s ", ts_format(ndo, + tv_result.tv_sec, tv_result.tv_usec, buf))); + + if (ndo->ndo_tflag == 3) + tv_ref = *tvp; /* set timestamp for previous packet */ + break; + + case 4: /* Default + Date */ + s = (tvp->tv_sec + thiszone) % 86400; + Time = (tvp->tv_sec + thiszone) - s; + tm = gmtime (&Time); + if (!tm) + ND_PRINT((ndo, "Date fail ")); + else + ND_PRINT((ndo, "%04d-%02d-%02d %s ", + tm->tm_year+1900, tm->tm_mon+1, tm->tm_mday, + ts_format(ndo, s, tvp->tv_usec, buf))); + break; + } +} + +/* + * Print a relative number of seconds (e.g. hold time, prune timer) + * in the form 5m1s. This does no truncation, so 32230861 seconds + * is represented as 1y1w1d1h1m1s. + */ +void +relts_print(netdissect_options *ndo, + int secs) +{ + static const char *lengths[] = {"y", "w", "d", "h", "m", "s"}; + static const int seconds[] = {31536000, 604800, 86400, 3600, 60, 1}; + const char **l = lengths; + const int *s = seconds; + + if (secs == 0) { + ND_PRINT((ndo, "0s")); + return; + } + if (secs < 0) { + ND_PRINT((ndo, "-")); + secs = -secs; + } + while (secs > 0) { + if (secs >= *s) { + ND_PRINT((ndo, "%d%s", secs / *s, *l)); + secs -= (secs / *s) * *s; + } + s++; + l++; + } +} + +/* + * this is a generic routine for printing unknown data; + * we pass on the linefeed plus indentation string to + * get a proper output - returns 0 on error + */ + +int +print_unknown_data(netdissect_options *ndo, const u_char *cp,const char *ident,int len) +{ + if (len < 0) { + ND_PRINT((ndo,"%sDissector error: print_unknown_data called with negative length", + ident)); + return(0); + } + if (ndo->ndo_snapend - cp < len) + len = ndo->ndo_snapend - cp; + if (len < 0) { + ND_PRINT((ndo,"%sDissector error: print_unknown_data called with pointer past end of packet", + ident)); + return(0); + } + hex_print(ndo, ident,cp,len); + return(1); /* everything is ok */ +} + +/* + * Convert a token value to a string; use "fmt" if not found. + */ +const char * +tok2strbuf(register const struct tok *lp, register const char *fmt, + register u_int v, char *buf, size_t bufsize) +{ + if (lp != NULL) { + while (lp->s != NULL) { + if (lp->v == v) + return (lp->s); + ++lp; + } + } + if (fmt == NULL) + fmt = "#%d"; + + (void)snprintf(buf, bufsize, fmt, v); + return (const char *)buf; +} + +/* + * Convert a token value to a string; use "fmt" if not found. + */ +const char * +tok2str(register const struct tok *lp, register const char *fmt, + register u_int v) +{ + static char buf[4][TOKBUFSIZE]; + static int idx = 0; + char *ret; + + ret = buf[idx]; + idx = (idx+1) & 3; + return tok2strbuf(lp, fmt, v, ret, sizeof(buf[0])); +} + +/* + * Convert a bit token value to a string; use "fmt" if not found. + * this is useful for parsing bitfields, the output strings are seperated + * if the s field is positive. + */ +static char * +bittok2str_internal(register const struct tok *lp, register const char *fmt, + register u_int v, const char *sep) +{ + static char buf[256]; /* our stringbuffer */ + int buflen=0; + register u_int rotbit; /* this is the bit we rotate through all bitpositions */ + register u_int tokval; + const char * sepstr = ""; + + while (lp != NULL && lp->s != NULL) { + tokval=lp->v; /* load our first value */ + rotbit=1; + while (rotbit != 0) { + /* + * lets AND the rotating bit with our token value + * and see if we have got a match + */ + if (tokval == (v&rotbit)) { + /* ok we have found something */ + buflen+=snprintf(buf+buflen, sizeof(buf)-buflen, "%s%s", + sepstr, lp->s); + sepstr = sep; + break; + } + rotbit=rotbit<<1; /* no match - lets shift and try again */ + } + lp++; + } + + if (buflen == 0) + /* bummer - lets print the "unknown" message as advised in the fmt string if we got one */ + (void)snprintf(buf, sizeof(buf), fmt == NULL ? "#%08x" : fmt, v); + return (buf); +} + +/* + * Convert a bit token value to a string; use "fmt" if not found. + * this is useful for parsing bitfields, the output strings are not seperated. + */ +char * +bittok2str_nosep(register const struct tok *lp, register const char *fmt, + register u_int v) +{ + return (bittok2str_internal(lp, fmt, v, "")); +} + +/* + * Convert a bit token value to a string; use "fmt" if not found. + * this is useful for parsing bitfields, the output strings are comma seperated. + */ +char * +bittok2str(register const struct tok *lp, register const char *fmt, + register u_int v) +{ + return (bittok2str_internal(lp, fmt, v, ", ")); +} + +/* + * Convert a value to a string using an array; the macro + * tok2strary() in is the public interface to + * this function and ensures that the second argument is + * correct for bounds-checking. + */ +const char * +tok2strary_internal(register const char **lp, int n, register const char *fmt, + register int v) +{ + static char buf[TOKBUFSIZE]; + + if (v >= 0 && v < n && lp[v] != NULL) + return lp[v]; + if (fmt == NULL) + fmt = "#%d"; + (void)snprintf(buf, sizeof(buf), fmt, v); + return (buf); +} + +/* + * Convert a 32-bit netmask to prefixlen if possible + * the function returns the prefix-len; if plen == -1 + * then conversion was not possible; + */ + +int +mask2plen(uint32_t mask) +{ + uint32_t bitmasks[33] = { + 0x00000000, + 0x80000000, 0xc0000000, 0xe0000000, 0xf0000000, + 0xf8000000, 0xfc000000, 0xfe000000, 0xff000000, + 0xff800000, 0xffc00000, 0xffe00000, 0xfff00000, + 0xfff80000, 0xfffc0000, 0xfffe0000, 0xffff0000, + 0xffff8000, 0xffffc000, 0xffffe000, 0xfffff000, + 0xfffff800, 0xfffffc00, 0xfffffe00, 0xffffff00, + 0xffffff80, 0xffffffc0, 0xffffffe0, 0xfffffff0, + 0xfffffff8, 0xfffffffc, 0xfffffffe, 0xffffffff + }; + int prefix_len = 32; + + /* let's see if we can transform the mask into a prefixlen */ + while (prefix_len >= 0) { + if (bitmasks[prefix_len] == mask) + break; + prefix_len--; + } + return (prefix_len); +} + +int +mask62plen(const u_char *mask) +{ + u_char bitmasks[9] = { + 0x00, + 0x80, 0xc0, 0xe0, 0xf0, + 0xf8, 0xfc, 0xfe, 0xff + }; + int byte; + int cidr_len = 0; + + for (byte = 0; byte < 16; byte++) { + u_int bits; + + for (bits = 0; bits < (sizeof (bitmasks) / sizeof (bitmasks[0])); bits++) { + if (mask[byte] == bitmasks[bits]) { + cidr_len += bits; + break; + } + } + + if (mask[byte] != 0xff) + break; + } + return (cidr_len); +} + +/* + * Routine to print out information for text-based protocols such as FTP, + * HTTP, SMTP, RTSP, SIP, .... + */ +#define MAX_TOKEN 128 + +/* + * Fetch a token from a packet, starting at the specified index, + * and return the length of the token. + * + * Returns 0 on error; yes, this is indistinguishable from an empty + * token, but an "empty token" isn't a valid token - it just means + * either a space character at the beginning of the line (this + * includes a blank line) or no more tokens remaining on the line. + */ +static int +fetch_token(netdissect_options *ndo, const u_char *pptr, u_int idx, u_int len, + u_char *tbuf, size_t tbuflen) +{ + size_t toklen = 0; + + for (; idx < len; idx++) { + if (!ND_TTEST(*(pptr + idx))) { + /* ran past end of captured data */ + return (0); + } + if (!isascii(*(pptr + idx))) { + /* not an ASCII character */ + return (0); + } + if (isspace(*(pptr + idx))) { + /* end of token */ + break; + } + if (!isprint(*(pptr + idx))) { + /* not part of a command token or response code */ + return (0); + } + if (toklen + 2 > tbuflen) { + /* no room for this character and terminating '\0' */ + return (0); + } + tbuf[toklen] = *(pptr + idx); + toklen++; + } + if (toklen == 0) { + /* no token */ + return (0); + } + tbuf[toklen] = '\0'; + + /* + * Skip past any white space after the token, until we see + * an end-of-line (CR or LF). + */ + for (; idx < len; idx++) { + if (!ND_TTEST(*(pptr + idx))) { + /* ran past end of captured data */ + break; + } + if (*(pptr + idx) == '\r' || *(pptr + idx) == '\n') { + /* end of line */ + break; + } + if (!isascii(*(pptr + idx)) || !isprint(*(pptr + idx))) { + /* not a printable ASCII character */ + break; + } + if (!isspace(*(pptr + idx))) { + /* beginning of next token */ + break; + } + } + return (idx); +} + +/* + * Scan a buffer looking for a line ending - LF or CR-LF. + * Return the index of the character after the line ending or 0 if + * we encounter a non-ASCII or non-printable character or don't find + * the line ending. + */ +static u_int +print_txt_line(netdissect_options *ndo, const char *protoname, + const char *prefix, const u_char *pptr, u_int idx, u_int len) +{ + u_int startidx; + u_int linelen; + + startidx = idx; + while (idx < len) { + ND_TCHECK(*(pptr+idx)); + if (*(pptr+idx) == '\n') { + /* + * LF without CR; end of line. + * Skip the LF and print the line, with the + * exception of the LF. + */ + linelen = idx - startidx; + idx++; + goto print; + } else if (*(pptr+idx) == '\r') { + /* CR - any LF? */ + if ((idx+1) >= len) { + /* not in this packet */ + return (0); + } + ND_TCHECK(*(pptr+idx+1)); + if (*(pptr+idx+1) == '\n') { + /* + * CR-LF; end of line. + * Skip the CR-LF and print the line, with + * the exception of the CR-LF. + */ + linelen = idx - startidx; + idx += 2; + goto print; + } + + /* + * CR followed by something else; treat this + * as if it were binary data, and don't print + * it. + */ + return (0); + } else if (!isascii(*(pptr+idx)) || + (!isprint(*(pptr+idx)) && *(pptr+idx) != '\t')) { + /* + * Not a printable ASCII character and not a tab; + * treat this as if it were binary data, and + * don't print it. + */ + return (0); + } + idx++; + } + + /* + * All printable ASCII, but no line ending after that point + * in the buffer; treat this as if it were truncated. + */ +trunc: + linelen = idx - startidx; + ND_PRINT((ndo, "%s%.*s[!%s]", prefix, (int)linelen, pptr + startidx, + protoname)); + return (0); + +print: + ND_PRINT((ndo, "%s%.*s", prefix, (int)linelen, pptr + startidx)); + return (idx); +} + +void +txtproto_print(netdissect_options *ndo, const u_char *pptr, u_int len, + const char *protoname, const char **cmds, u_int flags) +{ + u_int idx, eol; + u_char token[MAX_TOKEN+1]; + const char *cmd; + int is_reqresp = 0; + const char *pnp; + + if (cmds != NULL) { + /* + * This protocol has more than just request and + * response lines; see whether this looks like a + * request or response. + */ + idx = fetch_token(ndo, pptr, 0, len, token, sizeof(token)); + if (idx != 0) { + /* Is this a valid request name? */ + while ((cmd = *cmds++) != NULL) { + if (ascii_strcasecmp((const char *)token, cmd) == 0) { + /* Yes. */ + is_reqresp = 1; + break; + } + } + + /* + * No - is this a valid response code (3 digits)? + * + * Is this token the response code, or is the next + * token the response code? + */ + if (flags & RESP_CODE_SECOND_TOKEN) { + /* + * Next token - get it. + */ + idx = fetch_token(ndo, pptr, idx, len, token, + sizeof(token)); + } + if (idx != 0) { + if (isdigit(token[0]) && isdigit(token[1]) && + isdigit(token[2]) && token[3] == '\0') { + /* Yes. */ + is_reqresp = 1; + } + } + } + } else { + /* + * This protocol has only request and response lines + * (e.g., FTP, where all the data goes over a + * different connection); assume the payload is + * a request or response. + */ + is_reqresp = 1; + } + + /* Capitalize the protocol name */ + for (pnp = protoname; *pnp != '\0'; pnp++) + ND_PRINT((ndo, "%c", toupper(*pnp))); + + if (is_reqresp) { + /* + * In non-verbose mode, just print the protocol, followed + * by the first line as the request or response info. + * + * In verbose mode, print lines as text until we run out + * of characters or see something that's not a + * printable-ASCII line. + */ + if (ndo->ndo_vflag) { + /* + * We're going to print all the text lines in the + * request or response; just print the length + * on the first line of the output. + */ + ND_PRINT((ndo, ", length: %u", len)); + for (idx = 0; + idx < len && (eol = print_txt_line(ndo, protoname, "\n\t", pptr, idx, len)) != 0; + idx = eol) + ; + } else { + /* + * Just print the first text line. + */ + print_txt_line(ndo, protoname, ": ", pptr, 0, len); + } + } +} + +void +safeputs(netdissect_options *ndo, + const u_char *s, const u_int maxlen) +{ + u_int idx = 0; + + while (*s && idx < maxlen) { + safeputchar(ndo, *s); + idx++; + s++; + } +} + +void +safeputchar(netdissect_options *ndo, + const u_char c) +{ + ND_PRINT((ndo, (c < 0x80 && ND_ISPRINT(c)) ? "%c" : "\\0x%02x", c)); +} + +#ifdef LBL_ALIGN +/* + * Some compilers try to optimize memcpy(), using the alignment constraint + * on the argument pointer type. by using this function, we try to avoid the + * optimization. + */ +void +unaligned_memcpy(void *p, const void *q, size_t l) +{ + memcpy(p, q, l); +} + +/* As with memcpy(), so with memcmp(). */ +int +unaligned_memcmp(const void *p, const void *q, size_t l) +{ + return (memcmp(p, q, l)); +} +#endif + diff --git a/src/util.c b/src/util.c new file mode 100644 index 0000000..a6f520e --- /dev/null +++ b/src/util.c @@ -0,0 +1,169 @@ +/* + * Copyright (c) 1990, 1991, 1993, 1994, 1995, 1996, 1997 + * The Regents of the University of California. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that: (1) source code distributions + * retain the above copyright notice and this paragraph in its entirety, (2) + * distributions including binary code include the above copyright notice and + * this paragraph in its entirety in the documentation or other materials + * provided with the distribution, and (3) all advertising materials mentioning + * features or use of this software display the following acknowledgement: + * ``This product includes software developed by the University of California, + * Lawrence Berkeley Laboratory and its contributors.'' Neither the name of + * the University nor the names of its contributors may be used to endorse + * or promote products derived from this software without specific prior + * written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED + * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ + +/* + * txtproto_print() derived from original code by Hannes Gredler + * (hannes@juniper.net): + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that: (1) source code + * distributions retain the above copyright notice and this paragraph + * in its entirety, and (2) distributions including binary code include + * the above copyright notice and this paragraph in its entirety in + * the documentation or other materials provided with the distribution. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND + * WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT + * LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE. + */ + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +#include + +#include + +#ifdef HAVE_FCNTL_H +#include +#endif +#include +#include +#include +#include + +#include "interface.h" + +/* VARARGS */ +void +error(const char *fmt, ...) +{ + va_list ap; + + (void)fprintf(stderr, "%s: ", program_name); + va_start(ap, fmt); + (void)vfprintf(stderr, fmt, ap); + va_end(ap); + if (*fmt) { + fmt += strlen(fmt); + if (fmt[-1] != '\n') + (void)fputc('\n', stderr); + } + exit(1); + /* NOTREACHED */ +} + +/* VARARGS */ +void +warning(const char *fmt, ...) +{ + va_list ap; + + (void)fprintf(stderr, "%s: WARNING: ", program_name); + va_start(ap, fmt); + (void)vfprintf(stderr, fmt, ap); + va_end(ap); + if (*fmt) { + fmt += strlen(fmt); + if (fmt[-1] != '\n') + (void)fputc('\n', stderr); + } +} + +/* + * Copy arg vector into a new buffer, concatenating arguments with spaces. + */ +char * +copy_argv(register char **argv) +{ + register char **p; + register u_int len = 0; + char *buf; + char *src, *dst; + + p = argv; + if (*p == 0) + return 0; + + while (*p) + len += strlen(*p++) + 1; + + buf = (char *)malloc(len); + if (buf == NULL) + error("copy_argv: malloc"); + + p = argv; + dst = buf; + while ((src = *p++) != NULL) { + while ((*dst++ = *src++) != '\0') + ; + dst[-1] = ' '; + } + dst[-1] = '\0'; + + return buf; +} + +/* + * On Windows, we need to open the file in binary mode, so that + * we get all the bytes specified by the size we get from "fstat()". + * On UNIX, that's not necessary. O_BINARY is defined on Windows; + * we define it as 0 if it's not defined, so it does nothing. + */ +#ifndef O_BINARY +#define O_BINARY 0 +#endif + +char * +read_infile(char *fname) +{ + register int i, fd, cc; + register char *cp; + struct stat buf; + + fd = open(fname, O_RDONLY|O_BINARY); + if (fd < 0) + error("can't open %s: %s", fname, pcap_strerror(errno)); + + if (fstat(fd, &buf) < 0) + error("can't stat %s: %s", fname, pcap_strerror(errno)); + + cp = malloc((u_int)buf.st_size + 1); + if (cp == NULL) + error("malloc(%d) for %s: %s", (u_int)buf.st_size + 1, + fname, pcap_strerror(errno)); + cc = read(fd, cp, (u_int)buf.st_size); + if (cc < 0) + error("read %s: %s", fname, pcap_strerror(errno)); + if (cc != buf.st_size) + error("short read %s (%d != %d)", fname, cc, (int)buf.st_size); + + close(fd); + /* replace "# comment" with spaces */ + for (i = 0; i < cc; i++) { + if (cp[i] == '#') + while (i < cc && cp[i] != '\n') + cp[i++] = ' '; + } + cp[cc] = '\0'; + return (cp); +} diff --git a/src/vfprintf.c b/src/vfprintf.c new file mode 100644 index 0000000..ae28bcf --- /dev/null +++ b/src/vfprintf.c @@ -0,0 +1,54 @@ +/* + * Copyright (c) 1995 + * The Regents of the University of California. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that: (1) source code distributions + * retain the above copyright notice and this paragraph in its entirety, (2) + * distributions including binary code include the above copyright notice and + * this paragraph in its entirety in the documentation or other materials + * provided with the distribution, and (3) all advertising materials mentioning + * features or use of this software display the following acknowledgement: + * ``This product includes software developed by the University of California, + * Lawrence Berkeley Laboratory and its contributors.'' Neither the name of + * the University nor the names of its contributors may be used to endorse + * or promote products derived from this software without specific prior + * written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED + * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +#include + +#include +#include +#include +#include + +#include "netdissect.h" + +/* + * Stock 4.3 doesn't have vfprintf. + * This routine is due to Chris Torek. + */ +vfprintf(f, fmt, args) + FILE *f; + char *fmt; + va_list args; +{ + int ret; + + if ((f->_flag & _IOWRT) == 0) { + if (f->_flag & _IORW) + f->_flag |= _IOWRT; + else + return EOF; + } + ret = _doprnt(fmt, args, f); + return ferror(f) ? EOF : ret; +} diff --git a/src/win32/prj/GNUmakefile b/src/win32/prj/GNUmakefile new file mode 100644 index 0000000..d0504e3 --- /dev/null +++ b/src/win32/prj/GNUmakefile @@ -0,0 +1,175 @@ +# Makefile for cygwin gcc +# Nate Lawson + +# Location of your pcap src tree, build it first +PCAP_DIR = ../../../winpcap + +# OPTFLAGS = -g +OPTFLAGS = -O +# -O2 may break things. Use at your own risk. + +CFLAGS = -I ${PCAP_DIR}/wpcap/libpcap/bpf \ + -I ${PCAP_DIR}/wpcap/libpcap \ + -I ${PCAP_DIR}/wpcap/libpcap/Win32/Include \ + -I ${PCAP_DIR}/wpcap/libpcap/Win32/Include/net \ + -I ../../Win32/Include -I ../../linux-Include \ + -I ../../lbl -I../.. \ + -DWIN32 -DINET6 -DHAVE_ADDRINFO=1 -DHAVE_SOCKADDR_STORAGE=1 \ + -DHAVE_PCAP_LIST_DATALINKS=1 -DHAVE_PCAP_SET_DATALINK=1 \ + -DHAVE_PCAP_DATALINK_NAME_TO_VAL=1 \ + -DHAVE_PCAP_DATALINK_VAL_TO_DESCRIPTION=1 \ + -DHAVE_PCAP_DUMP_FTELL=1 -DHAVE_BPF_DUMP=1 \ + -DHAVE_PCAP_DUMP_FLUSH=1 -DHAVE_PCAP_FINDALLDEVS=1 \ + -DHAVE_PCAP_IF_T=1 -DHAVE_PCAP_LIB_VERSION=1 \ + -D_U_="__attribute__((unused))" \ + -D_WIN32_WINNT=0x0501 \ + -mno-cygwin ${OPTFLAGS} +LDFLAGS = +LIBS = -L ${PCAP_DIR}/WPCAP/LIB -lwpcap -lws2_32 +OBJS = \ + ../../addrtoname.o \ + ../../af.o \ + ../../checksum.o \ + ../../gmpls.o \ + ../../gmt2local.o \ + ../../missing/inet_aton.o \ + ../../missing/inet_ntop.o \ + ../../missing/strlcpy.o \ + ../../missing/dlnames.o \ + ../../missing/datalinks.o \ + ../../missing/strsep.o \ + ../../missing/inet_pton.o \ + ../../missing/getopt_long.o \ + ../../machdep.o \ + ../../oui.o \ + ../../parsenfsfh.o \ + ../../print-802_11.o \ + ../../print-ah.o \ + ../../print-aodv.o \ + ../../print-ap1394.o \ + ../../print-arcnet.o \ + ../../print-arp.o \ + ../../print-ascii.o \ + ../../print-atalk.o \ + ../../print-atm.o \ + ../../print-beep.o \ + ../../print-bfd.o \ + ../../print-bgp.o \ + ../../print-bootp.o \ + ../../print-cdp.o \ + ../../print-cfm.o \ + ../../print-chdlc.o \ + ../../print-cip.o \ + ../../print-cnfp.o \ + ../../print-decnet.o \ + ../../print-dhcp6.o \ + ../../print-domain.o \ + ../../print-dtp.o \ + ../../print-dvmrp.o \ + ../../print-egp.o \ + ../../print-enc.o \ + ../../print-esp.o \ + ../../print-ether.o \ + ../../print-fddi.o \ + ../../print-fr.o \ + ../../print-frag6.o \ + ../../print-gre.o \ + ../../print-hsrp.o \ + ../../print-icmp.o \ + ../../print-icmp6.o \ + ../../print-igmp.o \ + ../../print-igrp.o \ + ../../print-ip.o \ + ../../print-ip6.o \ + ../../print-ip6opts.o \ + ../../print-ipcomp.o \ + ../../print-ipfc.o \ + ../../print-ipx.o \ + ../../print-isakmp.o \ + ../../print-isoclns.o \ + ../../print-krb.o \ + ../../print-l2tp.o \ + ../../print-lane.o \ + ../../print-ldp.o \ + ../../print-lldp.o \ + ../../print-llc.o \ + ../../print-lwapp.o \ + ../../print-lwres.o \ + ../../print-mobile.o \ + ../../print-mobility.o \ + ../../print-mpcp.o \ + ../../print-mpls.o \ + ../../print-msdp.o \ + ../../print-nfs.o \ + ../../print-ntp.o \ + ../../print-null.o \ + ../../print-olsr.o \ + ../../print-ospf.o \ + ../../print-ospf6.o \ + ../../print-pim.o \ + ../../print-pgm.o \ + ../../print-ppp.o \ + ../../print-pppoe.o \ + ../../print-pptp.o \ + ../../print-radius.o \ + ../../print-raw.o \ + ../../print-rrcp.o \ + ../../print-rip.o \ + ../../print-ripng.o \ + ../../print-rsvp.o \ + ../../print-rt6.o \ + ../../print-rx.o \ + ../../print-sctp.o \ + ../../print-sflow.o \ + ../../print-sl.o \ + ../../print-sll.o \ + ../../print-slow.o \ + ../../print-smb.o \ + ../../print-snmp.o \ + ../../print-stp.o \ + ../../print-sunatm.o \ + ../../print-sunrpc.o \ + ../../print-symantec.o \ + ../../print-tcp.o \ + ../../print-telnet.o \ + ../../print-tftp.o \ + ../../print-timed.o \ + ../../print-token.o \ + ../../print-udld.o \ + ../../print-udp.o \ + ../../print-vjc.o \ + ../../print-vqp.o \ + ../../print-vrrp.o \ + ../../print-vtp.o \ + ../../print-wb.o \ + ../../print-zephyr.o \ + ../../setsignal.o \ + ../../smbutil.o \ + ../../tcpdump.o \ + ../../util.o \ + ../../cpack.o \ + ../../ipproto.o \ + ../../l2vpn.o \ + ../../nlpid.o \ + ../../print-eigrp.o \ + ../../print-juniper.o \ + ../../print-lspping.o \ + ../../print-sip.o \ + ../../print-eap.o \ + ../../print-lmp.o \ + ../../print-syslog.o \ + ../../print-dccp.o \ + ../../print-bt.o \ + ../../signature.o + +main: ${OBJS} + ${CC} ${CFLAGS} ${LDFLAGS} -o windump.exe ${OBJS} ${LIBS} + +install: windump.exe + cp windump.exe c:/windows + +clean: + rm -f ${OBJS} windump.exe + +.c.o: + ${CC} ${CFLAGS} -o $*.o -c $< diff --git a/src/win32/prj/WinDump.dsp b/src/win32/prj/WinDump.dsp new file mode 100644 index 0000000..ea05ba0 --- /dev/null +++ b/src/win32/prj/WinDump.dsp @@ -0,0 +1,771 @@ +# Microsoft Developer Studio Project File - Name="WinDump" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Console Application" 0x0103 + +CFG=WinDump - Win32 Debug +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "WinDump.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "WinDump.mak" CFG="WinDump - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "WinDump - Win32 Release" (based on "Win32 (x86) Console Application") +!MESSAGE "WinDump - Win32 Debug" (based on "Win32 (x86) Console Application") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 1 +# PROP Scc_ProjName "" +# PROP Scc_LocalPath "" +CPP=cl.exe +RSC=rc.exe + +!IF "$(CFG)" == "WinDump - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "../../" +# PROP Intermediate_Dir "Release" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /GX /O2 /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c +# ADD CPP /nologo /W3 /GX /O2 /I "../../../winpcap/wpcap/libpcap/bpf" /I "../../../winpcap/wpcap/libpcap" /I "../../../winpcap/wpcap/libpcap/Win32/Include" /I "../../../winpcap/wpcap/libpcap/Win32/Include/net" /I "../../lbl" /I "../../" /I "../../../winpcap/wpcap/win32-extensions" /D "NDEBUG" /D "_MBCS" /D "_CONSOLE" /D "__STDC__" /D "WPCAP" /D HAVE_PCAP_LIST_DATALINKS=1 /D HAVE_PCAP_SET_DATALINK=1 /D HAVE_PCAP_DATALINK_NAME_TO_VAL=1 /D HAVE_PCAP_DATALINK_VAL_TO_DESCRIPTION=1 /D HAVE_PCAP_DUMP_FTELL=1 /D HAVE_BPF_DUMP=1 /D HAVE_PCAP_DUMP_FLUSH=1 /D HAVE_PCAP_FINDALLDEVS=1 /D HAVE_PCAP_IF_T=1 /D HAVE_PCAP_LIB_VERSION=1 /D "HAVE_REMOTE" /D _U_= /DUSE_ETHER_NTOHOST /YX /FD /c +# ADD BASE RSC /l 0x410 /d "NDEBUG" +# ADD RSC /l 0x410 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib wsock32.lib wpcap.lib /nologo /subsystem:console /machine:I386 /out:"release/WinDump.exe" /libpath:"../../../winpcap/wpcap/lib" + +!ELSEIF "$(CFG)" == "WinDump - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "WinDump_" +# PROP BASE Intermediate_Dir "WinDump_" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "../../" +# PROP Intermediate_Dir "Debug" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c +# ADD CPP /nologo /W3 /Gm /Gi /GX /ZI /I "../../../winpcap/wpcap/libpcap/bpf" /I "../../../winpcap/wpcap/libpcap" /I "../../../winpcap/wpcap/libpcap/Win32/Include" /I "../../../winpcap/wpcap/libpcap/Win32/Include/net" /I "../../Win32/Include" /I "../../lbl" /I "../../" /I "../../../winpcap/wpcap/win32-extensions" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_CONSOLE" /D "__STDC__" /D "WPCAP" /D HAVE_PCAP_LIST_DATALINKS=1 /D HAVE_PCAP_SET_DATALINK=1 /D HAVE_PCAP_DATALINK_NAME_TO_VAL=1 /D HAVE_PCAP_DATALINK_VAL_TO_DESCRIPTION=1 /D HAVE_PCAP_DUMP_FTELL=1 /D HAVE_BPF_DUMP=1 /D HAVE_PCAP_DUMP_FLUSH=1 /D HAVE_PCAP_FINDALLDEVS=1 /D HAVE_PCAP_IF_T=1 /D HAVE_PCAP_LIB_VERSION=1 /D "HAVE_REMOTE" /D _U_= /DUSE_ETHER_NTOHOST /FR /YX /FD /c +# ADD BASE RSC /l 0x410 /d "_DEBUG" +# ADD RSC /l 0x410 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept +# ADD LINK32 wpcap.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib wsock32.lib /nologo /subsystem:console /map /debug /debugtype:both /machine:I386 /out:"debug/WinDump.exe" /pdbtype:sept /libpath:"../../../winpcap/wpcap/lib" +# SUBTRACT LINK32 /pdb:none + +!ENDIF + +# Begin Target + +# Name "WinDump - Win32 Release" +# Name "WinDump - Win32 Debug" +# Begin Source File + +SOURCE=..\..\addrtoname.c +# End Source File +# Begin Source File + +SOURCE=..\..\addrtostr.c +# End Source File +# Begin Source File + +SOURCE=..\..\af.c +# End Source File +# Begin Source File + +SOURCE=..\..\ascii_strcasecmp.c +# End Source File +# Begin Source File + +SOURCE=..\..\bpf_dump.c +# End Source File +# Begin Source File + +SOURCE=..\..\checksum.c +# End Source File +# Begin Source File + +SOURCE=..\..\cpack.c +# End Source File +# Begin Source File + +SOURCE=..\..\missing\datalinks.c +# End Source File +# Begin Source File + +SOURCE=..\..\missing\dlnames.c +# End Source File +# Begin Source File + +SOURCE=..\..\missing\getopt_long.c +# End Source File +# Begin Source File + +SOURCE=..\..\gmpls.c +# End Source File +# Begin Source File + +SOURCE=..\..\gmt2local.c +# End Source File +# Begin Source File + +SOURCE=..\..\in_cksum.c +# End Source File +# Begin Source File + +SOURCE=..\..\ipproto.c +# End Source File +# Begin Source File + +SOURCE=..\..\l2vpn.c +# End Source File +# Begin Source File + +SOURCE=..\..\machdep.c +# End Source File +# Begin Source File + +SOURCE=..\..\nlpid.c +# End Source File +# Begin Source File + +SOURCE=..\..\oui.c +# End Source File +# Begin Source File + +SOURCE=..\..\parsenfsfh.c +# End Source File +# Begin Source File + +SOURCE="..\..\print-802_11.c" +# End Source File +# Begin Source File + +SOURCE=..\..\print-802_15_4.c +# End Source File +# Begin Source File + +SOURCE="..\..\print-ah.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-ahcp.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-aodv.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-aoe.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-ap1394.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-arcnet.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-arp.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-ascii.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-atalk.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-atm.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-babel.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-beep.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-bfd.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-bgp.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-bootp.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-bt.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-calm-fast.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-carp.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-cdp.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-cfm.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-chdlc.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-cip.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-cnfp.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-dccp.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-decnet.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-dhcp6.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-domain.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-dtp.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-dvmrp.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-eap.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-egp.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-eigrp.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-enc.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-esp.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-ether.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-fddi.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-forces.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-fr.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-frag6.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-ftp.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-geneve.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-geonet.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-gre.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-hsrp.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-http.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-icmp.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-icmp6.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-igmp.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-igrp.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-ip.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-ip6.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-ip6opts.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-ipcomp.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-ipfc.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-ipnet.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-ipx.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-isakmp.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-isoclns.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-juniper.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-krb.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-l2tp.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-lane.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-ldp.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-llc.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-lldp.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-lmp.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-loopback.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-lspping.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-lwapp.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-lwres.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-m3ua.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-medsa.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-mobile.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-mobility.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-mpcp.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-mpls.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-mptcp.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-msdp.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-msnlb.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-nflog.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-nfs.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-ntp.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-null.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-olsr.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-openflow-1.0.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-openflow.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-ospf.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-ospf6.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-otv.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-pgm.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-pim.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-pktap.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-ppi.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-ppp.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-pppoe.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-pptp.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-radius.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-raw.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-rrcp.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-rip.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-ripng.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-rpki-rtr.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-rsvp.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-rt6.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-rtsp.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-rx.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-sctp.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-sflow.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-sip.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-sl.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-sll.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-slow.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-smb.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-smtp.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-snmp.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-stp.c" +# End Source File +# Begin Source File + +SOURCE="..\..\missing\strdup.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-sunatm.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-sunrpc.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-symantec.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-syslog.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-tcp.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-telnet.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-tftp.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-timed.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-tipc.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-token.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-udld.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-udp.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-usb.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-vjc.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-vqp.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-vrrp.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-vtp.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-vxlan.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-wb.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print-zephyr.c" +# End Source File +# Begin Source File + +SOURCE=..\..\setsignal.c +# End Source File +# Begin Source File + +SOURCE=..\..\smbutil.c +# End Source File +# Begin Source File + +SOURCE=..\..\missing\strlcat.c +# End Source File +# Begin Source File + +SOURCE=..\..\missing\strlcpy.c +# End Source File +# Begin Source File + +SOURCE=..\..\missing\strsep.c +# End Source File +# Begin Source File + +SOURCE=..\..\tcpdump.c +# End Source File +# Begin Source File + +SOURCE=..\Src\ether_ntohost.c +# End Source File +# Begin Source File + +SOURCE="..\..\print-zeromq.c" +# End Source File +# Begin Source File + +SOURCE="..\..\print.c" +# End Source File +# Begin Source File + +SOURCE="..\..\signature.c" +# End Source File +# Begin Source File + +SOURCE="..\..\strtoaddr.c" +# End Source File +# Begin Source File + +SOURCE="..\..\util-print.c" +# End Source File +# Begin Source File + +SOURCE=..\..\util.c +# End Source File +# End Target +# End Project diff --git a/src/win32/prj/WinDump.dsw b/src/win32/prj/WinDump.dsw new file mode 100644 index 0000000..6bf7408 --- /dev/null +++ b/src/win32/prj/WinDump.dsw @@ -0,0 +1,29 @@ +Microsoft Developer Studio Workspace File, Format Version 6.00 +# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! + +############################################################################### + +Project: "WinDump"=".\WinDump.dsp" - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ +}}} + +############################################################################### + +Global: + +Package=<5> +{{{ +}}} + +Package=<3> +{{{ +}}} + +############################################################################### + diff --git a/stime.awk b/stime.awk deleted file mode 100644 index 61891f2..0000000 --- a/stime.awk +++ /dev/null @@ -1,19 +0,0 @@ -$6 !~ /^ack/ && $5 !~ /[SFR]/ { - # given a tcpdump ftp trace, output one line for each send - # in the form - # - # where is the time packet was sent (in seconds with - # zero at time of first packet) and is the tcp sequence - # number of the packet divided by 1024 (i.e., Kbytes sent). - # - # convert time to seconds - n = split ($1,t,":") - tim = t[1]*3600 + t[2]*60 + t[3] - if (! tzero) { - tzero = tim - OFS = "\t" - } - # get packet sequence number - i = index($6,":") - printf "%7.2f\t%g\n", tim-tzero, substr($6,1,i-1)/1024 - } diff --git a/stream_base.h b/stream_base.h deleted file mode 100644 index 2311cee..0000000 --- a/stream_base.h +++ /dev/null @@ -1,520 +0,0 @@ -#ifndef _APP_STREAM_BASE_H_ -#define _APP_STREAM_BASE_H_ - -#define STREAM_BASE_H_VERSION (20170616) - -#include -#include -#include - -#ifndef UINT8 -typedef unsigned char UINT8; -#endif -#ifndef UCHAR -typedef unsigned char UCHAR; -#endif -#ifndef UINT16 -typedef unsigned short UINT16; -#endif - -#ifndef UINT32 -typedef unsigned int UINT32; -#endif -#ifndef UINT64 -typedef unsigned long long UINT64; -#endif - -/* CHN : ķ */ -/* ENG : stream direction definition*/ -#define DIR_C2S 0x01 -#define DIR_S2C 0x02 -#define DIR_DOUBLE 0x03 - -/* CHN : ײ㴫䷽,ģʽ */ -/* ENG : network topology route direction, is valid in serial mode */ -#define DIR_ROUTE_UP 0x00 -#define DIR_ROUTE_DOWN 0x01 - -/* CHN : Ͷ */ -/* ENG : single packet type definition */ -#define PKT_TYPE_NORMAL (0x0) /* normal, common */ -#define PKT_TYPE_IPREBUILD (1<<0) /* ip frag reassembled packet; ipƬ鱨 */ -#define PKT_TYPE_TCPUNORDER (1<<1) /* TCP out of order packet; TCP */ -#define PKT_TYPE_TCPREORDER (1<<2) /* TCP sequential packet; TCPõݰ */ -#define PKT_TYPE_TCPRETRANS (1<<3) /* TCP retransmit packet; TCPش */ -#define PKT_TYPE_IP_FRAG (1<<4) /* IP frag packet; IPƬ */ -#define PKT_TYPE_IP_FRAG_LAST (1<<5) /* last IP frag packet; ͬһԭʼIPһIPƬ */ - -/* CHN : ַͶ, ͨ addr_type_to_string() תַʽ. */ -/* ENG : address type, transform to string mode by call addr_type_to_string(). */ -enum addr_type_t{ - __ADDR_TYPE_INIT = 0, - ADDR_TYPE_IPV4, /* 1, struct stream_tuple4_v4 */ - ADDR_TYPE_IPV6, /* 2, struct stream_tuple4_v6 */ - ADDR_TYPE_VLAN, /* 3 */ - ADDR_TYPE_MAC, /* 4 */ - ADDR_TYPE_ARP = 5, /* 5 */ - ADDR_TYPE_GRE, /* 6 */ - ADDR_TYPE_MPLS, /* 7 */ - ADDR_TYPE_PPPOE_SES, /* 8 */ - ADDR_TYPE_TCP, /* 9 */ - ADDR_TYPE_UDP = 10, /* 10 */ - ADDR_TYPE_L2TP, /* 11 */ - __ADDR_TYPE_IP_PAIR_V4, /* 12, ipv4 layer in tunnel mode */ - __ADDR_TYPE_IP_PAIR_V6, /* 13, ipv6 layer in tunnel mode */ - ADDR_TYPE_PPP, /* 14 */ - ADDR_TYPE_PPTP, /* 15 */ - ADDR_TYPE_MAC_IN_MAC, /* 16 */ - ADDR_TYPE_GPRS_TUNNEL, /* 17 */ - __ADDR_TYPE_MAX, /* 18 */ -}; - -#define TCP_TAKEOVER_STATE_FLAG_OFF 0 -#define TCP_TAKEOVER_STATE_FLAG_ON 1 - - -/* CHN : Ӧò㿴״̬ */ -/* ENG : stream state for protocol or business plug*/ -#define OP_STATE_PENDING 0 -#define OP_STATE_REMOVE_ME 1 -#define OP_STATE_CLOSE 2 -#define OP_STATE_DATA 3 - -/* CHN : Ӧò㷵ؽ */ -/* ENG : return value of plug */ -#define APP_STATE_GIVEME 0x00 -#define APP_STATE_DROPME 0x01 -#define APP_STATE_FAWPKT 0x00 -#define APP_STATE_DROPPKT 0x10 - -/* CHN : Ͷ */ -/* ENG : stream type */ -enum stream_type_t{ - STREAM_TYPE_NON = 0, /* No stream concept indeed, such as vlan, IP, etc.; ĸ, VLAN, IP */ - STREAM_TYPE_TCP, - STREAM_TYPE_UDP, /* there is no stream of UDP in RFC, but in MESA platform, we build a UDP stream with same tuple4 packet */ - STREAM_TYPE_VLAN, - STREAM_TYPE_SOCKS4, - STREAM_TYPE_SOCKS5, - STREAM_TYPE_HTTP_PROXY, - STREAM_TYPE_PPPOE, - STREAM_TYPE_L2TP, - STREAM_TYPE_OPENVPN, - STREAM_TYPE_PPTP, - STREAM_TYPE_ISAKMP, -}; - -/* - CHN: ĵײ, - ͬstream_type_t, 統ǰΪSTREAM_TYPE_TCP, ײͿSTREAM_TUNNLE_PPTP. - ΪǶֲͬǶ, ֻ¼ײ(MAC). -*/ -enum stream_carry_tunnel_t{ - STREAM_TUNNLE_NON = 0, /* default is 0, not tunnel; ĬΪ0, ; */ - STREAM_TUNNLE_6OVER4 = 1 << 0, - STREAM_TUNNLE_4OVER6 = 1 << 1, - STREAM_TUNNLE_GRE = 1 << 2, - STREAM_TUNNLE_IP_IN_IP = 1 << 3, - STREAM_TUNNLE_PPTP = 1 << 4, - STREAM_TUNNLE_L2TP = 1 << 5, - STREAM_TUNNLE_TEREDO = 1 << 6, - STREAM_TUNNEL_GPRS_TUNNEL = 1 << 7, -}; - -typedef struct raw_ipfrag_list{ - void *frag_packet; - int pkt_len; - int type; /* IPv4 or IPv6 */ - struct raw_ipfrag_list *next; -}raw_ipfrag_list_t; - - -#ifndef STRUCT_TUPLE4_DEFINED -#define STRUCT_TUPLE4_DEFINED (1) -/* compat for start, papp; start, papp */ -struct tuple4 { - u_int saddr; - u_int daddr; - u_short source; - u_short dest; -}; -#endif - -struct tuple6 -{ - UCHAR saddr[16] ; - UCHAR daddr[16] ; - UINT16 source; - UINT16 dest; -}; - -/* network-order */ -struct stream_tuple4_v4{ - UINT32 saddr; /* network order */ - UINT32 daddr; /* network order */ - UINT16 source; /* network order */ - UINT16 dest; /* network order */ -}; - - -#ifndef IPV6_ADDR_LEN -#define IPV6_ADDR_LEN (sizeof(struct in6_addr)) -#endif - -struct stream_tuple4_v6 -{ - UCHAR saddr[IPV6_ADDR_LEN] ; - UCHAR daddr[IPV6_ADDR_LEN] ; - UINT16 source; /* network order */ - UINT16 dest; /* network order */ -}; - - -#define GRE_TAG_LEN (4) -struct layer_addr_gre -{ - UINT16 call_id; /* network order */ -}; - - -#define VLAN_ID_MASK (0x0FFF) -#define VLAN_TAG_LEN (4) -struct layer_addr_vlan -{ - UINT16 vlan_id; /* network order */ -}; - -#define VLAN_ID_LEN 4 -struct tuplevlan -{ - UCHAR vlan_id[VLAN_ID_LEN]; -}; - -struct layer_addr_pppoe_session -{ -#if __BYTE_ORDER == __LITTLE_ENDIAN - unsigned int ver:4; - unsigned int type:4; -#elif __BYTE_ORDER == __BIG_ENDIAN - unsigned int type:4; - unsigned int ver:4; -#endif - unsigned char code; - unsigned short session_id; -}; - -#ifndef MAC_ADDR_LEN -#define MAC_ADDR_LEN (6) -#endif - -struct layer_addr_mac -{ - UCHAR dst_mac[MAC_ADDR_LEN]; /* network order */ - UCHAR src_mac[MAC_ADDR_LEN]; /* network order */ -}; - -struct layer_addr_ipv4 -{ - UINT32 saddr; /* network order */ - UINT32 daddr; /* network order */ - /* 2014-04-21 lijia add, - Ϊ˽Լڴռ䡢ʹЧ, ǿưЭδ, - IPTCPΪһ, - IP, ˿ϢΪ0; - */ - UINT16 source; /* network order */ - UINT16 dest; /* network order */ -}; - -struct layer_addr_ipv6 -{ - UCHAR saddr[IPV6_ADDR_LEN] ; /* network order */ - UCHAR daddr[IPV6_ADDR_LEN] ; /* network order */ - /* 2014-04-21 lijia add, - Ϊ˽Լڴռ䡢ʹЧ, ǿưЭδ, - IPTCPΪһ, - IP, ˿ϢΪ0; - */ - UINT16 source;/* network order */ - UINT16 dest;/* network order */ -}; - -struct layer_addr_tcp -{ - UINT16 source; /* network order */ - UINT16 dest; /* network order */ -}; - -struct layer_addr_udp -{ - UINT16 source; /* network order */ - UINT16 dest; /* network order */ -}; - - -struct layer_addr_l2tp_v2_t{ - UINT16 tunnelid_C2S; /* network order, Դ㴴ķΪ׼ */ - UINT16 tunnelid_S2C; /* network order, Դ㴴ķΪ׼ */ - UINT16 sessionid_C2S; /* network order, Դ㴴ķΪ׼ */ - UINT16 sessionid_S2C; /* network order, Դ㴴ķΪ׼ */ -}; - -struct layer_addr_l2tp_v3_t{ - UINT32 sessionlid; /* network order */ -}; - -struct layer_addr_l2tp -{ - UCHAR version; /* v2 or v3 */ - union - { - struct layer_addr_l2tp_v2_t l2tp_addr_v2; - struct layer_addr_l2tp_v3_t l2tp_addr_v3; - }l2tpun; -}; - -#define MAX_MPLS_ADDR_LAYER 4 -struct layer_addr_mpls -{ - unsigned int mpls_pkt[MAX_MPLS_ADDR_LAYER]; - char mpls_layer_num; -}; - -struct layer_addr_pptp -{ - UINT16 C2S_call_id; /* C2SԴЭ鷽Ϊ׼, TCP SYNΪC2S, UDPԴ˿ڴΪC2S, callid, network order */ - UINT16 S2C_call_id; /* S2CkԴЭ鷽Ϊ׼, TCP SYN/ACKΪS2C, UDPĿĶ˿ڴΪS2C, callid, network order */ -}; - -struct layer_addr_gtp -{ - unsigned long long source; - unsigned int src_seq; - unsigned long long dest; - unsigned int dest_seq; -}__attribute__ ((aligned (1))); - -#define MAC_IN_MAC_HDR_LEN (sizeof(struct mesa_ethernet_hdr) + sizeof(struct mesa_ethernet_hdr)) -struct layer_addr_mac_in_mac -{ - UCHAR outer_dst_mac[MAC_ADDR_LEN]; /* macַ, network order */ - UCHAR outer_src_mac[MAC_ADDR_LEN]; /* macַ, network order */ - UCHAR inner_dst_mac[MAC_ADDR_LEN]; /* ڲmacַ, network order */ - UCHAR inner_src_mac[MAC_ADDR_LEN]; /* ڲmacַ, network order */ -}; - -struct layer_addr -{ - UCHAR addrtype; /* definition in enum addr_type_t */ - UCHAR addrlen; - UCHAR pkttype; /* packet special features, definition in MACRO PKT_TYPE_xxx */ - UCHAR pktipfragtype; /* ip frag packetfeatures, definition in MACRO PKT_TYPE_xxx */ - - UCHAR __pad[4]; /* pad for alignment */ - union - { - struct stream_tuple4_v4 *tuple4_v4; - struct stream_tuple4_v6 *tuple4_v6; - struct layer_addr_ipv4 *ipv4; - struct layer_addr_ipv6 *ipv6; - struct layer_addr_vlan *vlan; - struct layer_addr_mac *mac; - struct layer_addr_gre *gre; - struct layer_addr_tcp *tcp; - struct layer_addr_udp *udp; - struct layer_addr_pppoe_session *pppoe_ses; - struct layer_addr_l2tp *l2tp; - struct layer_addr_pptp *pptp; - struct layer_addr_mac_in_mac *mimac; - struct layer_addr_gtp *gtp; - void *paddr; - }; - -}; - -/* CHN : ˽ṹںpapp, ָʱ, struct layer_addrǿת */ -/* ENG : compat for papp, can be transform to struct layer_addr pointer */ -struct ipaddr -{ - UCHAR addrtype; /* definition in enum addr_type_t */ - UCHAR addrlen; - UCHAR pkttype; /* packet special features, definition in MACRO PKT_TYPE_xxx */ - UCHAR pktipfragtype; /* ip frag packetfeatures, definition in MACRO PKT_TYPE_xxx */ - UCHAR __pad[4]; /* pad for alignment */ - union - { - struct stream_tuple4_v4 *v4; - struct stream_tuple4_v6 *v6; - void *paddr; - }; - -}; - -struct tcpdetail -{ - void *pdata; - UINT32 datalen; - UINT32 lostlen; /* lost data len, not accumulated, current procedure */ - UINT32 serverpktnum; /* C2S, this value indicate TCP-ALL packet, include syn, ack, rst, if want get tcp data status, use stream_project.h : struct tcp_flow_stat */ - UINT32 clientpktnum; /* S2C, this value indicate TCP-ALL packet, include syn, ack, rst, if want get tcp data status, use stream_project.h : struct tcp_flow_stat */ - UINT32 serverbytes; /* C2S, this value indicate TCP-ALL packet, include syn, ack, rst, if want get tcp data status, use stream_project.h : struct tcp_flow_stat */ - UINT32 clientbytes; /* S2C, this value indicate TCP-ALL packet, include syn, ack, rst, if want get tcp data status, use stream_project.h : struct tcp_flow_stat */ - UINT64 createtime; - UINT64 lastmtime; -}; - -struct udpdetail -{ - void *pdata; - UINT32 datalen; - UINT32 pad; - UINT32 serverpktnum; /* C2S, you should better use stream_project.h : struct udp_flow_stat */ - UINT32 clientpktnum; /* S2C, you should better use stream_project.h : struct udp_flow_stat */ - UINT32 serverbytes; /* C2S, you should better use stream_project.h : struct udp_flow_stat */ - UINT32 clientbytes; /* S2C, you should better use stream_project.h : struct udp_flow_stat */ - UINT64 createtime; - UINT64 lastmtime; -}; - -struct streaminfo -{ - struct layer_addr addr; - struct streaminfo *pfather; /* this stream's carry layer stream; ϲṹ */ - UCHAR type; /* stream type, definition in enum stream_type_t */ - UCHAR threadnum; - UCHAR dir; /* valid in all stream life, current stream direction state, 0x01:c-->s; 0x02:s-->c; 0x03 c<-->s; */ - UCHAR curdir; /* valid in current procedure, current packet direction, 0x01:c-->s; 0x02:s-->c */ - UCHAR opstate; /* stream state, definition in MACRO OP_STATE_xxx */ - UCHAR pktstate; /* for TCPALL plug, stream state, definition in MACRO OP_STATE_xxx */ - UCHAR routedir; /* network topology route direction, is valid in serial mode */ - UCHAR stream_state; /* stream management state, for example, in TCP stream, maybe SYN, DATA, NOUSE */ - UINT32 hash_index; /* stream hash index, maybe reduplicate with other stream when hash algorithm collide */ - UINT32 stream_index; /* stream global index per thread */ - union - { - struct tcpdetail *ptcpdetail; - struct udpdetail *pudpdetail; - void *pdetail; - }; - }; - - - -#ifdef __cplusplus -extern "C" { -#endif - -/* CHN : ڴغ, ƽ̨IJʹôຯͷڴ */ -/* ENG : memory management function, plugs must call these functions instead of malloc, free in */ -void *dictator_malloc(int thread_seq,size_t size); -void dictator_free(int thread_seq,void *pbuf); -void *dictator_realloc(int thread_seq, void* pbuf, size_t size); - -/* CHN : ȡǰϵͳеIJ߳ */ -/* ENG : get current total thread of platfomr */ -int get_thread_count(void); - -/* CHN : enum addr_type_tַתɿɴӡַʽ */ -/* ENG : transform binary addr_type_t to string mode */ -const char *addr_type_to_string(enum addr_type_t type); - -/* - ENG : transform tuple4 to string mode, must used in packet process thread context; - CHN : layer_addrַתַʽ, ڰ߳. -*/ -const char *printaddr (const struct layer_addr *paddrinfo, int threadindex); - -/* - ENG : a reentrant version of printaddr, thread safe; - CHN : printaddrĿ汾, ̰߳ȫ. -*/ -const char *printaddr_r(const struct layer_addr *paddrinfo, char *out_buf, int out_buf_len); - - -/* - ENG : transform layer address to string mode, must used in packet process thread context, - the return value is read-only, user can't free it; - CHN : layer_addrַתַʽ, ڰ߳, صָΪֻ, ʹ߲free. -*/ -const char *layer_addr_ntop(const struct streaminfo *pstream); - -/* - ENG : a reentrant version of layer_addr_ntop, thread safe, return a pointer to the destination string 'out_buf'; - CHN : layer_addr_ntop_rĿ汾, ̰߳ȫ, صִָʹṩout_buf, ڴ֯. -*/ -char *layer_addr_ntop_r(const struct streaminfo *pstream, char *out_buf, int out_buf_len); - -/* - ENG : transform layer type to abbr string mode, is reentrant, the return value is read-only, user can't free it;. - CHN : layer_addrַתдַʽ, ̰߳ȫ, صָΪֻ, ʹ߲free.. -*/ -const char *layer_addr_prefix_ntop(const struct streaminfo *pstream); - - -/* - ENG : duplicate a same layer_addr struct, memory obtained with malloc(3); - CHN : һȫͬlayer_addrṹ, ڴͨmalloc(3)ȡ. -*/ -struct layer_addr * layer_addr_dup(const struct layer_addr *paddrinfo); - -/* - ENG: used to free all memory of paddrinfo; - CHN: ͷpaddrinfoڴ. -*/ -void layer_addr_free(struct layer_addr *paddrinfo); - - -/* - ENG : duplicate a same streaminfo list, memory obtained with malloc(3); - CHN : һȫͬstreaminfoṹ弰ṹ, ڴͨmalloc(3)ȡ. -*/ -struct streaminfo *streaminfo_dup(const struct streaminfo *stream); - -/* - ENG: used to free all memory of streaminfo; - CHN: ͷŽṹ弰ṹڴ. -*/ -void streaminfo_free(struct streaminfo *stream); - - -/* - addr list transform function, like inet_ntop(), inet_pton(), - use '<' as delimitation between layer, - if direction is double, for ip, port, use '-' as delimitation between source and destination, - - for example: - "T4T:6005-16730:תĽʵռڴ泤, stream_addr_list_ntop()ַĩβ'\0'; - -1:dstռ䳤Ȳ; - -2:ʽ; - -3:; -*/ -int stream_addr_list_ntop(const struct streaminfo *pstream, char *dst, int size); -int stream_addr_list_pton(const char *addr_list_str, void *dst, int size, int thread_index); - -/* - TCP,UDPģʽ, ȡǰIPԭʼƬ. -*/ -const raw_ipfrag_list_t *get_raw_frag_list(const struct streaminfo *stream); - -/* - IPģʽ, ȡǰIPԭʼƬ. -*/ -const raw_ipfrag_list_t *ip_plug_get_raw_ipfrag_list(int thread_num, enum addr_type_t addr_type); - - -#ifdef __cplusplus -} -#endif - -#endif - diff --git a/strtoaddr.c b/strtoaddr.c deleted file mode 100644 index f325401..0000000 --- a/strtoaddr.c +++ /dev/null @@ -1,239 +0,0 @@ -/* - * Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") - * Copyright (c) 1996,1999 by Internet Software Consortium. - * - * Permission to use, copy, modify, and distribute this software for any - * purpose with or without fee is hereby granted, provided that the above - * copyright notice and this permission notice appear in all copies. - * - * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES - * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF - * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR - * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES - * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN - * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT - * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - */ - -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif - -#include -#include -#include - -#include "strtoaddr.h" - -#ifndef NS_INADDRSZ -#define NS_INADDRSZ 4 /* IPv4 T_A */ -#endif - -#ifndef NS_IN6ADDRSZ -#define NS_IN6ADDRSZ 16 /* IPv6 T_AAAA */ -#endif - -#ifndef NS_INT16SZ -#define NS_INT16SZ 2 /* #/bytes of data in a u_int16_t */ -#endif - -/*% - * WARNING: Don't even consider trying to compile this on a system where - * sizeof(int) < 4. sizeof(int) > 4 is fine; all the world's not a VAX. - */ - -#ifndef NS_IN6ADDRSZ -#define NS_IN6ADDRSZ 16 /* IPv6 T_AAAA */ -#endif - -/* int - * strtoaddr(src, dst) - * convert presentation level IPv4 address to network order binary form. - * return: - * 1 if `src' is a valid input, else 0. - * notice: - * does not touch `dst' unless it's returning 1. - * author: - * Paul Vixie, 1996. - */ -int -strtoaddr(const char *src, void *dst) -{ - uint32_t val; - u_int digit; - ptrdiff_t n; - unsigned char c; - u_int parts[4]; - u_int *pp = parts; - - c = *src; - for (;;) { - /* - * Collect number up to ``.''. - * Values are specified as for C: - * 0x=hex, 0=octal, isdigit=decimal. - */ - if (!isdigit(c)) - return (0); - val = 0; - if (c == '0') { - c = *++src; - if (c == 'x' || c == 'X') - return (0); - else if (isdigit(c) && c != '9') - return (0); - } - for (;;) { - if (isdigit(c)) { - digit = c - '0'; - if (digit >= 10) - break; - val = (val * 10) + digit; - c = *++src; - } else - break; - } - if (c == '.') { - /* - * Internet format: - * a.b.c.d - * a.b.c (with c treated as 16 bits) - * a.b (with b treated as 24 bits) - * a (with a treated as 32 bits) - */ - if (pp >= parts + 3) - return (0); - *pp++ = val; - c = *++src; - } else - break; - } - /* - * Check for trailing characters. - */ - if (c != '\0' && !isspace(c)) - return (0); - /* - * Find the number of parts specified. - * It must be 4; we only support dotted quads, we don't - * support shorthand. - */ - n = pp - parts + 1; - if (n != 4) - return (0); - /* - * parts[0-2] were set to the first 3 parts of the address; - * val was set to the 4th part. - * - * Check if any part is bigger than 255. - */ - if ((parts[0] | parts[1] | parts[2] | val) > 0xff) - return (0); - /* - * Add the other three parts to val. - */ - val |= (parts[0] << 24) | (parts[1] << 16) | (parts[2] << 8); - if (dst) { - val = htonl(val); - memcpy(dst, &val, NS_INADDRSZ); - } - return (1); -} - -/* int - * strtoaddr6(src, dst) - * convert presentation level IPv6 address to network order binary form. - * return: - * 1 if `src' is a valid [RFC1884 2.2] address, else 0. - * notice: - * (1) does not touch `dst' unless it's returning 1. - * (2) :: in a full address is silently ignored. - * credit: - * inspired by Mark Andrews. - * author: - * Paul Vixie, 1996. - */ -int -strtoaddr6(const char *src, void *dst) -{ - static const char xdigits_l[] = "0123456789abcdef", - xdigits_u[] = "0123456789ABCDEF"; - u_char tmp[NS_IN6ADDRSZ], *tp, *endp, *colonp; - const char *xdigits, *curtok; - int ch, seen_xdigits; - u_int val; - - memset((tp = tmp), '\0', NS_IN6ADDRSZ); - endp = tp + NS_IN6ADDRSZ; - colonp = NULL; - /* Leading :: requires some special handling. */ - if (*src == ':') - if (*++src != ':') - return (0); - curtok = src; - seen_xdigits = 0; - val = 0; - while ((ch = *src++) != '\0') { - const char *pch; - - if ((pch = strchr((xdigits = xdigits_l), ch)) == NULL) - pch = strchr((xdigits = xdigits_u), ch); - if (pch != NULL) { - val <<= 4; - val |= (int)(pch - xdigits); - if (++seen_xdigits > 4) - return (0); - continue; - } - if (ch == ':') { - curtok = src; - if (!seen_xdigits) { - if (colonp) - return (0); - colonp = tp; - continue; - } else if (*src == '\0') - return (0); - if (tp + NS_INT16SZ > endp) - return (0); - *tp++ = (u_char) (val >> 8) & 0xff; - *tp++ = (u_char) val & 0xff; - seen_xdigits = 0; - val = 0; - continue; - } - if (ch == '.' && ((tp + NS_INADDRSZ) <= endp) && - strtoaddr(curtok, tp) > 0) { - tp += NS_INADDRSZ; - seen_xdigits = 0; - break; /*%< '\\0' was seen by strtoaddr(). */ - } - return (0); - } - if (seen_xdigits) { - if (tp + NS_INT16SZ > endp) - return (0); - *tp++ = (u_char) (val >> 8) & 0xff; - *tp++ = (u_char) val & 0xff; - } - if (colonp != NULL) { - /* - * Since some memmove()'s erroneously fail to handle - * overlapping regions, we'll do the shift by hand. - */ - const ptrdiff_t n = tp - colonp; - int i; - - if (tp == endp) - return (0); - for (i = 1; i <= n; i++) { - endp[- i] = colonp[n - i]; - colonp[n - i] = 0; - } - tp = endp; - } - if (tp != endp) - return (0); - memcpy(dst, tmp, NS_IN6ADDRSZ); - return (1); -} diff --git a/strtoaddr.h b/strtoaddr.h deleted file mode 100644 index 8bd22c7..0000000 --- a/strtoaddr.h +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") - * Copyright (c) 1996,1999 by Internet Software Consortium. - * - * Permission to use, copy, modify, and distribute this software for any - * purpose with or without fee is hereby granted, provided that the above - * copyright notice and this permission notice appear in all copies. - * - * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES - * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF - * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR - * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES - * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN - * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT - * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - */ - -/* Text string to address translation routines. */ - -int strtoaddr(const char *src, void *dst); -int strtoaddr6(const char *src, void *dst); - - diff --git a/tcp.h b/tcp.h deleted file mode 100644 index a76b9e5..0000000 --- a/tcp.h +++ /dev/null @@ -1,164 +0,0 @@ -/* - * Copyright (c) 1982, 1986, 1993 - * The Regents of the University of California. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. All advertising materials mentioning features or use of this software - * must display the following acknowledgement: - * This product includes software developed by the University of - * California, Berkeley and its contributors. - * 4. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - * - * @(#)tcp.h 8.1 (Berkeley) 6/10/93 - */ -#ifndef _tcpdump_tcp_h -#define _tcpdump_tcp_h 1 - -typedef uint32_t tcp_seq; -/* - * TCP header. - * Per RFC 793, September, 1981. - */ -struct tcphdr { - uint16_t th_sport; /* source port */ - uint16_t th_dport; /* destination port */ - tcp_seq th_seq; /* sequence number */ - tcp_seq th_ack; /* acknowledgement number */ - uint8_t th_offx2; /* data offset, rsvd */ - uint8_t th_flags; - uint16_t th_win; /* window */ - uint16_t th_sum; /* checksum */ - uint16_t th_urp; /* urgent pointer */ -} UNALIGNED; - -#define TH_OFF(th) (((th)->th_offx2 & 0xf0) >> 4) - -/* TCP flags */ -#define TH_FIN 0x01 -#define TH_SYN 0x02 -#define TH_RST 0x04 -#define TH_PUSH 0x08 -#define TH_ACK 0x10 -#define TH_URG 0x20 -#define TH_ECNECHO 0x40 /* ECN Echo */ -#define TH_CWR 0x80 /* ECN Cwnd Reduced */ - - -#define TCPOPT_EOL 0 -#define TCPOPT_NOP 1 -#define TCPOPT_MAXSEG 2 -#define TCPOLEN_MAXSEG 4 -#define TCPOPT_WSCALE 3 /* window scale factor (rfc1323) */ -#define TCPOPT_SACKOK 4 /* selective ack ok (rfc2018) */ -#define TCPOPT_SACK 5 /* selective ack (rfc2018) */ -#define TCPOPT_ECHO 6 /* echo (rfc1072) */ -#define TCPOPT_ECHOREPLY 7 /* echo (rfc1072) */ -#define TCPOPT_TIMESTAMP 8 /* timestamp (rfc1323) */ -#define TCPOLEN_TIMESTAMP 10 -#define TCPOLEN_TSTAMP_APPA (TCPOLEN_TIMESTAMP+2) /* appendix A */ -#define TCPOPT_CC 11 /* T/TCP CC options (rfc1644) */ -#define TCPOPT_CCNEW 12 /* T/TCP CC options (rfc1644) */ -#define TCPOPT_CCECHO 13 /* T/TCP CC options (rfc1644) */ -#define TCPOPT_SIGNATURE 19 /* Keyed MD5 (rfc2385) */ -#define TCPOLEN_SIGNATURE 18 -#define TCP_SIGLEN 16 /* length of an option 19 digest */ -#define TCPOPT_AUTH 20 /* Enhanced AUTH option */ -#define TCPOPT_UTO 28 /* tcp user timeout (rfc5482) */ -#define TCPOLEN_UTO 4 -#define TCPOPT_MPTCP 30 /* MPTCP options */ -#define TCPOPT_FASTOPEN 34 /* TCP Fast Open (rfc7413) */ -#define TCPOPT_EXPERIMENT2 254 /* experimental headers (rfc4727) */ - -#define TCPOPT_TSTAMP_HDR \ - (TCPOPT_NOP<<24|TCPOPT_NOP<<16|TCPOPT_TIMESTAMP<<8|TCPOLEN_TIMESTAMP) - -#ifndef FTP_PORT -#define FTP_PORT 21 -#endif -#ifndef SSH_PORT -#define SSH_PORT 22 -#endif -#ifndef TELNET_PORT -#define TELNET_PORT 23 -#endif -#ifndef SMTP_PORT -#define SMTP_PORT 25 -#endif -#ifndef NAMESERVER_PORT -#define NAMESERVER_PORT 53 -#endif -#ifndef HTTP_PORT -#define HTTP_PORT 80 -#endif -#ifndef NETBIOS_NS_PORT -#define NETBIOS_NS_PORT 137 /* RFC 1001, RFC 1002 */ -#endif -#ifndef NETBIOS_SSN_PORT -#define NETBIOS_SSN_PORT 139 /* RFC 1001, RFC 1002 */ -#endif -#ifndef BGP_PORT -#define BGP_PORT 179 -#endif -#ifndef RPKI_RTR_PORT -#define RPKI_RTR_PORT 323 -#endif -#ifndef SMB_PORT -#define SMB_PORT 445 -#endif -#ifndef RTSP_PORT -#define RTSP_PORT 554 -#endif -#ifndef MSDP_PORT -#define MSDP_PORT 639 -#endif -#ifndef LDP_PORT -#define LDP_PORT 646 -#endif -#ifndef PPTP_PORT -#define PPTP_PORT 1723 -#endif -#ifndef NFS_PORT -#define NFS_PORT 2049 -#endif -#ifndef OPENFLOW_PORT_OLD -#define OPENFLOW_PORT_OLD 6633 -#endif -#ifndef OPENFLOW_PORT_IANA -#define OPENFLOW_PORT_IANA 6653 -#endif -#ifndef HTTP_PORT_ALT -#define HTTP_PORT_ALT 8080 -#endif -#ifndef RTSP_PORT_ALT -#define RTSP_PORT_ALT 8554 -#endif -#ifndef BEEP_PORT -#define BEEP_PORT 10288 -#endif -#ifndef REDIS_PORT -#define REDIS_PORT 6379 -#endif - -#endif - diff --git a/tcpdump.1.in b/tcpdump.1.in deleted file mode 100644 index 2de8daa..0000000 --- a/tcpdump.1.in +++ /dev/null @@ -1,1975 +0,0 @@ -.\" $NetBSD: tcpdump.8,v 1.9 2003/03/31 00:18:17 perry Exp $ -.\" -.\" Copyright (c) 1987, 1988, 1989, 1990, 1991, 1992, 1994, 1995, 1996, 1997 -.\" The Regents of the University of California. All rights reserved. -.\" All rights reserved. -.\" -.\" Redistribution and use in source and binary forms, with or without -.\" modification, are permitted provided that: (1) source code distributions -.\" retain the above copyright notice and this paragraph in its entirety, (2) -.\" distributions including binary code include the above copyright notice and -.\" this paragraph in its entirety in the documentation or other materials -.\" provided with the distribution, and (3) all advertising materials mentioning -.\" features or use of this software display the following acknowledgement: -.\" ``This product includes software developed by the University of California, -.\" Lawrence Berkeley Laboratory and its contributors.'' Neither the name of -.\" the University nor the names of its contributors may be used to endorse -.\" or promote products derived from this software without specific prior -.\" written permission. -.\" THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED -.\" WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF -.\" MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. -.\" -.TH TCPDUMP 1 "17 September 2015" -.SH NAME -tcpdump \- dump traffic on a network -.SH SYNOPSIS -.na -.B tcpdump -[ -.B \-AbdDefhHIJKlLnNOpqStuUvxX# -] [ -.B \-B -.I buffer_size -] -.br -.ti +8 -[ -.B \-c -.I count -] -.br -.ti +8 -[ -.B \-C -.I file_size -] [ -.B \-G -.I rotate_seconds -] [ -.B \-F -.I file -] -.br -.ti +8 -[ -.B \-i -.I interface -] -[ -.B \-j -.I tstamp_type -] -[ -.B \-m -.I module -] -[ -.B \-M -.I secret -] -.br -.ti +8 -[ -.B \-\-number -] -[ -.B \-Q -.I in|out|inout -] -.ti +8 -[ -.B \-r -.I file -] -[ -.B \-V -.I file -] -[ -.B \-s -.I snaplen -] -[ -.B \-T -.I type -] -[ -.B \-w -.I file -] -.br -.ti +8 -[ -.B \-W -.I filecount -] -.br -.ti +8 -[ -.B \-E -.I spi@ipaddr algo:secret,... -] -.br -.ti +8 -[ -.B \-y -.I datalinktype -] -[ -.B \-z -.I postrotate-command -] -[ -.B \-Z -.I user -] -.ti +8 -[ -.BI \-\-time\-stamp\-precision= tstamp_precision -] -.ti +8 -[ -.B \-\-immediate\-mode -] -[ -.B \-\-version -] -.ti +8 -[ -.I expression -] -.br -.ad -.SH DESCRIPTION -.LP -\fITcpdump\fP prints out a description of the contents of packets on a -network interface that match the boolean \fIexpression\fP; the -description is preceded by a time stamp, printed, by default, as hours, -minutes, seconds, and fractions of a second since midnight. It can also -be run with the -.B \-w -flag, which causes it to save the packet data to a file for later -analysis, and/or with the -.B \-r -flag, which causes it to read from a saved packet file rather than to -read packets from a network interface. It can also be run with the -.B \-V -flag, which causes it to read a list of saved packet files. In all cases, -only packets that match -.I expression -will be processed by -.IR tcpdump . -.LP -.I Tcpdump -will, if not run with the -.B \-c -flag, continue capturing packets until it is interrupted by a SIGINT -signal (generated, for example, by typing your interrupt character, -typically control-C) or a SIGTERM signal (typically generated with the -.BR kill (1) -command); if run with the -.B \-c -flag, it will capture packets until it is interrupted by a SIGINT or -SIGTERM signal or the specified number of packets have been processed. -.LP -When -.I tcpdump -finishes capturing packets, it will report counts of: -.IP -packets ``captured'' (this is the number of packets that -.I tcpdump -has received and processed); -.IP -packets ``received by filter'' (the meaning of this depends on the OS on -which you're running -.IR tcpdump , -and possibly on the way the OS was configured - if a filter was -specified on the command line, on some OSes it counts packets regardless -of whether they were matched by the filter expression and, even if they -were matched by the filter expression, regardless of whether -.I tcpdump -has read and processed them yet, on other OSes it counts only packets that were -matched by the filter expression regardless of whether -.I tcpdump -has read and processed them yet, and on other OSes it counts only -packets that were matched by the filter expression and were processed by -.IR tcpdump ); -.IP -packets ``dropped by kernel'' (this is the number of packets that were -dropped, due to a lack of buffer space, by the packet capture mechanism -in the OS on which -.I tcpdump -is running, if the OS reports that information to applications; if not, -it will be reported as 0). -.LP -On platforms that support the SIGINFO signal, such as most BSDs -(including Mac OS X) and Digital/Tru64 UNIX, it will report those counts -when it receives a SIGINFO signal (generated, for example, by typing -your ``status'' character, typically control-T, although on some -platforms, such as Mac OS X, the ``status'' character is not set by -default, so you must set it with -.BR stty (1) -in order to use it) and will continue capturing packets. On platforms that -do not support the SIGINFO signal, the same can be achieved by using the -SIGUSR1 signal. -.LP -Reading packets from a network interface may require that you have -special privileges; see the -.B pcap (3PCAP) -man page for details. Reading a saved packet file doesn't require -special privileges. -.SH OPTIONS -.TP -.B \-A -Print each packet (minus its link level header) in ASCII. Handy for -capturing web pages. -.TP -.B \-b -Print the AS number in BGP packets in ASDOT notation rather than ASPLAIN -notation. -.TP -.BI \-B " buffer_size" -.PD 0 -.TP -.BI \-\-buffer\-size= buffer_size -.PD -Set the operating system capture buffer size to \fIbuffer_size\fP, in -units of KiB (1024 bytes). -.TP -.BI \-c " count" -Exit after receiving \fIcount\fP packets. -.TP -.BI \-C " file_size" -Before writing a raw packet to a savefile, check whether the file is -currently larger than \fIfile_size\fP and, if so, close the current -savefile and open a new one. Savefiles after the first savefile will -have the name specified with the -.B \-w -flag, with a number after it, starting at 1 and continuing upward. -The units of \fIfile_size\fP are millions of bytes (1,000,000 bytes, -not 1,048,576 bytes). -.TP -.B \-d -Dump the compiled packet-matching code in a human readable form to -standard output and stop. -.TP -.B \-dd -Dump packet-matching code as a -.B C -program fragment. -.TP -.B \-ddd -Dump packet-matching code as decimal numbers (preceded with a count). -.TP -.B \-D -.PD 0 -.TP -.B \-\-list\-interfaces -.PD -Print the list of the network interfaces available on the system and on -which -.I tcpdump -can capture packets. For each network interface, a number and an -interface name, possibly followed by a text description of the -interface, is printed. The interface name or the number can be supplied -to the -.B \-i -flag to specify an interface on which to capture. -.IP -This can be useful on systems that don't have a command to list them -(e.g., Windows systems, or UNIX systems lacking -.BR "ifconfig \-a" ); -the number can be useful on Windows 2000 and later systems, where the -interface name is a somewhat complex string. -.IP -The -.B \-D -flag will not be supported if -.I tcpdump -was built with an older version of -.I libpcap -that lacks the -.B pcap_findalldevs() -function. -.TP -.B \-e -Print the link-level header on each dump line. This can be used, for -example, to print MAC layer addresses for protocols such as Ethernet and -IEEE 802.11. -.TP -.B \-E -Use \fIspi@ipaddr algo:secret\fP for decrypting IPsec ESP packets that -are addressed to \fIaddr\fP and contain Security Parameter Index value -\fIspi\fP. This combination may be repeated with comma or newline separation. -.IP -Note that setting the secret for IPv4 ESP packets is supported at this time. -.IP -Algorithms may be -\fBdes-cbc\fP, -\fB3des-cbc\fP, -\fBblowfish-cbc\fP, -\fBrc3-cbc\fP, -\fBcast128-cbc\fP, or -\fBnone\fP. -The default is \fBdes-cbc\fP. -The ability to decrypt packets is only present if \fItcpdump\fP was compiled -with cryptography enabled. -.IP -\fIsecret\fP is the ASCII text for ESP secret key. -If preceded by 0x, then a hex value will be read. -.IP -The option assumes RFC2406 ESP, not RFC1827 ESP. -The option is only for debugging purposes, and -the use of this option with a true `secret' key is discouraged. -By presenting IPsec secret key onto command line -you make it visible to others, via -.IR ps (1) -and other occasions. -.IP -In addition to the above syntax, the syntax \fIfile name\fP may be used -to have tcpdump read the provided file in. The file is opened upon -receiving the first ESP packet, so any special permissions that tcpdump -may have been given should already have been given up. -.TP -.B \-f -Print `foreign' IPv4 addresses numerically rather than symbolically -(this option is intended to get around serious brain damage in -Sun's NIS server \(em usually it hangs forever translating non-local -internet numbers). -.IP -The test for `foreign' IPv4 addresses is done using the IPv4 address and -netmask of the interface on which capture is being done. If that -address or netmask are not available, available, either because the -interface on which capture is being done has no address or netmask or -because the capture is being done on the Linux "any" interface, which -can capture on more than one interface, this option will not work -correctly. -.TP -.BI \-F " file" -Use \fIfile\fP as input for the filter expression. -An additional expression given on the command line is ignored. -.TP -.BI \-G " rotate_seconds" -If specified, rotates the dump file specified with the -.B \-w -option every \fIrotate_seconds\fP seconds. -Savefiles will have the name specified by -.B \-w -which should include a time format as defined by -.BR strftime (3). -If no time format is specified, each new file will overwrite the previous. -.IP -If used in conjunction with the -.B \-C -option, filenames will take the form of `\fIfile\fP'. -.TP -.B \-h -.PD 0 -.TP -.B \-\-help -.PD -Print the tcpdump and libpcap version strings, print a usage message, -and exit. -.TP -.B \-\-version -.PD -Print the tcpdump and libpcap version strings and exit. -.TP -.B \-H -Attempt to detect 802.11s draft mesh headers. -.TP -.BI \-i " interface" -.PD 0 -.TP -.BI \-\-interface= interface -.PD -Listen on \fIinterface\fP. -If unspecified, \fItcpdump\fP searches the system interface list for the -lowest numbered, configured up interface (excluding loopback), which may turn -out to be, for example, ``eth0''. -.IP -On Linux systems with 2.2 or later kernels, an -.I interface -argument of ``any'' can be used to capture packets from all interfaces. -Note that captures on the ``any'' device will not be done in promiscuous -mode. -.IP -If the -.B \-D -flag is supported, an interface number as printed by that flag can be -used as the -.I interface -argument. -.TP -.B \-I -.PD 0 -.TP -.B \-\-monitor\-mode -.PD -Put the interface in "monitor mode"; this is supported only on IEEE -802.11 Wi-Fi interfaces, and supported only on some operating systems. -.IP -Note that in monitor mode the adapter might disassociate from the -network with which it's associated, so that you will not be able to use -any wireless networks with that adapter. This could prevent accessing -files on a network server, or resolving host names or network addresses, -if you are capturing in monitor mode and are not connected to another -network with another adapter. -.IP -This flag will affect the output of the -.B \-L -flag. If -.B \-I -isn't specified, only those link-layer types available when not in -monitor mode will be shown; if -.B \-I -is specified, only those link-layer types available when in monitor mode -will be shown. -.TP -.BI \-\-immediate\-mode -Capture in "immediate mode". In this mode, packets are delivered to -tcpdump as soon as they arrive, rather than being buffered for -efficiency. This is the default when printing packets rather than -saving packets to a ``savefile'' if the packets are being printed to a -terminal rather than to a file or pipe. -.TP -.BI \-j " tstamp_type" -.PD 0 -.TP -.BI \-\-time\-stamp\-type= tstamp_type -.PD -Set the time stamp type for the capture to \fItstamp_type\fP. The names -to use for the time stamp types are given in -.BR pcap-tstamp (@MAN_MISC_INFO@); -not all the types listed there will necessarily be valid for any given -interface. -.TP -.B \-J -.PD 0 -.TP -.B \-\-list\-time\-stamp\-types -.PD -List the supported time stamp types for the interface and exit. If the -time stamp type cannot be set for the interface, no time stamp types are -listed. -.TP -.BI \-\-time\-stamp\-precision= tstamp_precision -When capturing, set the time stamp precision for the capture to -\fItstamp_precision\fP. Note that availability of high precision time -stamps (nanoseconds) and their actual accuracy is platform and hardware -dependent. Also note that when writing captures made with nanosecond -accuracy to a savefile, the time stamps are written with nanosecond -resolution, and the file is written with a different magic number, to -indicate that the time stamps are in seconds and nanoseconds; not all -programs that read pcap savefiles will be able to read those captures. -.LP -When reading a savefile, convert time stamps to the precision specified -by \fItimestamp_precision\fP, and display them with that resolution. If -the precision specified is less than the precision of time stamps in the -file, the conversion will lose precision. -.LP -The supported values for \fItimestamp_precision\fP are \fBmicro\fP for -microsecond resolution and \fBnano\fP for nanosecond resolution. The -default is microsecond resolution. -.TP -.B \-K -.PD 0 -.TP -.B \-\-dont\-verify\-checksums -.PD -Don't attempt to verify IP, TCP, or UDP checksums. This is useful for -interfaces that perform some or all of those checksum calculation in -hardware; otherwise, all outgoing TCP checksums will be flagged as bad. -.TP -.B \-l -Make stdout line buffered. -Useful if you want to see the data -while capturing it. -E.g., -.IP -.RS -.RS -.nf -\fBtcpdump \-l | tee dat\fP -.fi -.RE -.RE -.IP -or -.IP -.RS -.RS -.nf -\fBtcpdump \-l > dat & tail \-f dat\fP -.fi -.RE -.RE -.IP -Note that on Windows,``line buffered'' means ``unbuffered'', so that -WinDump will write each character individually if -.B \-l -is specified. -.IP -.B \-U -is similar to -.B \-l -in its behavior, but it will cause output to be ``packet-buffered'', so -that the output is written to stdout at the end of each packet rather -than at the end of each line; this is buffered on all platforms, -including Windows. -.TP -.B \-L -.PD 0 -.TP -.B \-\-list\-data\-link\-types -.PD -List the known data link types for the interface, in the specified mode, -and exit. The list of known data link types may be dependent on the -specified mode; for example, on some platforms, a Wi-Fi interface might -support one set of data link types when not in monitor mode (for -example, it might support only fake Ethernet headers, or might support -802.11 headers but not support 802.11 headers with radio information) -and another set of data link types when in monitor mode (for example, it -might support 802.11 headers, or 802.11 headers with radio information, -only in monitor mode). -.TP -.BI \-m " module" -Load SMI MIB module definitions from file \fImodule\fR. -This option -can be used several times to load several MIB modules into \fItcpdump\fP. -.TP -.BI \-M " secret" -Use \fIsecret\fP as a shared secret for validating the digests found in -TCP segments with the TCP-MD5 option (RFC 2385), if present. -.TP -.B \-n -Don't convert addresses (i.e., host addresses, port numbers, etc.) to names. -.TP -.B \-N -Don't print domain name qualification of host names. -E.g., -if you give this flag then \fItcpdump\fP will print ``nic'' -instead of ``nic.ddn.mil''. -.TP -.B \-# -.PD 0 -.TP -.B \-\-number -.PD -Print an optional packet number at the beginning of the line. -.TP -.B \-O -.PD 0 -.TP -.B \-\-no\-optimize -.PD -Do not run the packet-matching code optimizer. -This is useful only -if you suspect a bug in the optimizer. -.TP -.B \-p -.PD 0 -.TP -.B \-\-no\-promiscuous\-mode -.PD -\fIDon't\fP put the interface -into promiscuous mode. -Note that the interface might be in promiscuous -mode for some other reason; hence, `-p' cannot be used as an abbreviation for -`ether host {local-hw-addr} or ether broadcast'. -.TP -.BI \-Q " direction" -.PD 0 -.TP -.BI \-\-direction= direction -.PD -Choose send/receive direction \fIdirection\fR for which packets should be -captured. Possible values are `in', `out' and `inout'. Not available -on all platforms. -.TP -.B \-q -Quick (quiet?) output. -Print less protocol information so output -lines are shorter. -.TP -.BI \-r " file" -Read packets from \fIfile\fR (which was created with the -.B \-w -option or by other tools that write pcap or pcap-ng files). -Standard input is used if \fIfile\fR is ``-''. -.TP -.B \-S -.PD 0 -.TP -.B \-\-absolute\-tcp\-sequence\-numbers -.PD -Print absolute, rather than relative, TCP sequence numbers. -.TP -.BI \-s " snaplen" -.PD 0 -.TP -.BI \-\-snapshot\-length= snaplen -.PD -Snarf \fIsnaplen\fP bytes of data from each packet rather than the -default of 262144 bytes. -Packets truncated because of a limited snapshot -are indicated in the output with ``[|\fIproto\fP]'', where \fIproto\fP -is the name of the protocol level at which the truncation has occurred. -Note that taking larger snapshots both increases -the amount of time it takes to process packets and, effectively, -decreases the amount of packet buffering. -This may cause packets to be -lost. -You should limit \fIsnaplen\fP to the smallest number that will -capture the protocol information you're interested in. -Setting -\fIsnaplen\fP to 0 sets it to the default of 262144, -for backwards compatibility with recent older versions of -.IR tcpdump . -.TP -.BI \-T " type" -Force packets selected by "\fIexpression\fP" to be interpreted the -specified \fItype\fR. -Currently known types are -\fBaodv\fR (Ad-hoc On-demand Distance Vector protocol), -\fBcarp\fR (Common Address Redundancy Protocol), -\fBcnfp\fR (Cisco NetFlow protocol), -\fBlmp\fR (Link Management Protocol), -\fBpgm\fR (Pragmatic General Multicast), -\fBpgm_zmtp1\fR (ZMTP/1.0 inside PGM/EPGM), -\fBresp\fR (REdis Serialization Protocol), -\fBradius\fR (RADIUS), -\fBrpc\fR (Remote Procedure Call), -\fBrtp\fR (Real-Time Applications protocol), -\fBrtcp\fR (Real-Time Applications control protocol), -\fBsnmp\fR (Simple Network Management Protocol), -\fBtftp\fR (Trivial File Transfer Protocol), -\fBvat\fR (Visual Audio Tool), -\fBwb\fR (distributed White Board), -\fBzmtp1\fR (ZeroMQ Message Transport Protocol 1.0) -and -\fBvxlan\fR (Virtual eXtensible Local Area Network). -.IP -Note that the \fBpgm\fR type above affects UDP interpretation only, the native -PGM is always recognised as IP protocol 113 regardless. UDP-encapsulated PGM is -often called "EPGM" or "PGM/UDP". -.IP -Note that the \fBpgm_zmtp1\fR type above affects interpretation of both native -PGM and UDP at once. During the native PGM decoding the application data of an -ODATA/RDATA packet would be decoded as a ZeroMQ datagram with ZMTP/1.0 frames. -During the UDP decoding in addition to that any UDP packet would be treated as -an encapsulated PGM packet. -.TP -.B \-t -\fIDon't\fP print a timestamp on each dump line. -.TP -.B \-tt -Print the timestamp, as seconds since January 1, 1970, 00:00:00, UTC, and -fractions of a second since that time, on each dump line. -.TP -.B \-ttt -Print a delta (micro-second resolution) between current and previous line -on each dump line. -.TP -.B \-tttt -Print a timestamp, as hours, minutes, seconds, and fractions of a second -since midnight, preceded by the date, on each dump line. -.TP -.B \-ttttt -Print a delta (micro-second resolution) between current and first line -on each dump line. -.TP -.B \-u -Print undecoded NFS handles. -.TP -.B \-U -.PD 0 -.TP -.B \-\-packet\-buffered -.PD -If the -.B \-w -option is not specified, make the printed packet output -``packet-buffered''; i.e., as the description of the contents of each -packet is printed, it will be written to the standard output, rather -than, when not writing to a terminal, being written only when the output -buffer fills. -.IP -If the -.B \-w -option is specified, make the saved raw packet output -``packet-buffered''; i.e., as each packet is saved, it will be written -to the output file, rather than being written only when the output -buffer fills. -.IP -The -.B \-U -flag will not be supported if -.I tcpdump -was built with an older version of -.I libpcap -that lacks the -.B pcap_dump_flush() -function. -.TP -.B \-v -When parsing and printing, produce (slightly more) verbose output. -For example, the time to live, -identification, total length and options in an IP packet are printed. -Also enables additional packet integrity checks such as verifying the -IP and ICMP header checksum. -.IP -When writing to a file with the -.B \-w -option, report, every 10 seconds, the number of packets captured. -.TP -.B \-vv -Even more verbose output. -For example, additional fields are -printed from NFS reply packets, and SMB packets are fully decoded. -.TP -.B \-vvv -Even more verbose output. -For example, -telnet \fBSB\fP ... \fBSE\fP options -are printed in full. -With -.B \-X -Telnet options are printed in hex as well. -.TP -.BI \-V " file" -Read a list of filenames from \fIfile\fR. Standard input is used -if \fIfile\fR is ``-''. -.TP -.BI \-w " file" -Write the raw packets to \fIfile\fR rather than parsing and printing -them out. -They can later be printed with the \-r option. -Standard output is used if \fIfile\fR is ``-''. -.IP -This output will be buffered if written to a file or pipe, so a program -reading from the file or pipe may not see packets for an arbitrary -amount of time after they are received. Use the -.B \-U -flag to cause packets to be written as soon as they are received. -.IP -The MIME type \fIapplication/vnd.tcpdump.pcap\fP has been registered -with IANA for \fIpcap\fP files. The filename extension \fI.pcap\fP -appears to be the most commonly used along with \fI.cap\fP and -\fI.dmp\fP. \fITcpdump\fP itself doesn't check the extension when -reading capture files and doesn't add an extension when writing them -(it uses magic numbers in the file header instead). However, many -operating systems and applications will use the extension if it is -present and adding one (e.g. .pcap) is recommended. -.IP -See -.BR pcap-savefile (@MAN_FILE_FORMATS@) -for a description of the file format. -.TP -.B \-W -Used in conjunction with the -.B \-C -option, this will limit the number -of files created to the specified number, and begin overwriting files -from the beginning, thus creating a 'rotating' buffer. -In addition, it will name -the files with enough leading 0s to support the maximum number of -files, allowing them to sort correctly. -.IP -Used in conjunction with the -.B \-G -option, this will limit the number of rotated dump files that get -created, exiting with status 0 when reaching the limit. If used with -.B \-C -as well, the behavior will result in cyclical files per timeslice. -.TP -.B \-x -When parsing and printing, -in addition to printing the headers of each packet, print the data of -each packet (minus its link level header) in hex. -The smaller of the entire packet or -.I snaplen -bytes will be printed. Note that this is the entire link-layer -packet, so for link layers that pad (e.g. Ethernet), the padding bytes -will also be printed when the higher layer packet is shorter than the -required padding. -.TP -.B \-xx -When parsing and printing, -in addition to printing the headers of each packet, print the data of -each packet, -.I including -its link level header, in hex. -.TP -.B \-X -When parsing and printing, -in addition to printing the headers of each packet, print the data of -each packet (minus its link level header) in hex and ASCII. -This is very handy for analysing new protocols. -.TP -.B \-XX -When parsing and printing, -in addition to printing the headers of each packet, print the data of -each packet, -.I including -its link level header, in hex and ASCII. -.TP -.BI \-y " datalinktype" -.PD 0 -.TP -.BI \-\-linktype= datalinktype -.PD -Set the data link type to use while capturing packets to \fIdatalinktype\fP. -.TP -.BI \-z " postrotate-command" -Used in conjunction with the -.B -C -or -.B -G -options, this will make -.I tcpdump -run " -.I postrotate-command file -" where -.I file -is the savefile being closed after each rotation. For example, specifying -.B \-z gzip -or -.B \-z bzip2 -will compress each savefile using gzip or bzip2. -.IP -Note that tcpdump will run the command in parallel to the capture, using -the lowest priority so that this doesn't disturb the capture process. -.IP -And in case you would like to use a command that itself takes flags or -different arguments, you can always write a shell script that will take the -savefile name as the only argument, make the flags & arguments arrangements -and execute the command that you want. -.TP -.BI \-Z " user" -.PD 0 -.TP -.BI \-\-relinquish\-privileges= user -.PD -If -.I tcpdump -is running as root, after opening the capture device or input savefile, -but before opening any savefiles for output, change the user ID to -.I user -and the group ID to the primary group of -.IR user . -.IP -This behavior can also be enabled by default at compile time. -.IP "\fI expression\fP" -.RS -selects which packets will be dumped. -If no \fIexpression\fP -is given, all packets on the net will be dumped. -Otherwise, -only packets for which \fIexpression\fP is `true' will be dumped. -.LP -For the \fIexpression\fP syntax, see -.BR pcap-filter (@MAN_MISC_INFO@). -.LP -The \fIexpression\fP argument can be passed to \fItcpdump\fP as either a single -Shell argument, or as multiple Shell arguments, whichever is more convenient. -Generally, if the expression contains Shell metacharacters, such as -backslashes used to escape protocol names, it is easier to pass it as -a single, quoted argument rather than to escape the Shell -metacharacters. -Multiple arguments are concatenated with spaces before being parsed. -.SH EXAMPLES -.LP -To print all packets arriving at or departing from \fIsundown\fP: -.RS -.nf -\fBtcpdump host sundown\fP -.fi -.RE -.LP -To print traffic between \fIhelios\fR and either \fIhot\fR or \fIace\fR: -.RS -.nf -\fBtcpdump host helios and \\( hot or ace \\)\fP -.fi -.RE -.LP -To print all IP packets between \fIace\fR and any host except \fIhelios\fR: -.RS -.nf -\fBtcpdump ip host ace and not helios\fP -.fi -.RE -.LP -To print all traffic between local hosts and hosts at Berkeley: -.RS -.nf -.B -tcpdump net ucb-ether -.fi -.RE -.LP -To print all ftp traffic through internet gateway \fIsnup\fP: -(note that the expression is quoted to prevent the shell from -(mis-)interpreting the parentheses): -.RS -.nf -.B -tcpdump 'gateway snup and (port ftp or ftp-data)' -.fi -.RE -.LP -To print traffic neither sourced from nor destined for local hosts -(if you gateway to one other net, this stuff should never make it -onto your local net). -.RS -.nf -.B -tcpdump ip and not net \fIlocalnet\fP -.fi -.RE -.LP -To print the start and end packets (the SYN and FIN packets) of each -TCP conversation that involves a non-local host. -.RS -.nf -.B -tcpdump 'tcp[tcpflags] & (tcp-syn|tcp-fin) != 0 and not src and dst net \fIlocalnet\fP' -.fi -.RE -.LP -To print all IPv4 HTTP packets to and from port 80, i.e. print only -packets that contain data, not, for example, SYN and FIN packets and -ACK-only packets. (IPv6 is left as an exercise for the reader.) -.RS -.nf -.B -tcpdump 'tcp port 80 and (((ip[2:2] - ((ip[0]&0xf)<<2)) - ((tcp[12]&0xf0)>>2)) != 0)' -.fi -.RE -.LP -To print IP packets longer than 576 bytes sent through gateway \fIsnup\fP: -.RS -.nf -.B -tcpdump 'gateway snup and ip[2:2] > 576' -.fi -.RE -.LP -To print IP broadcast or multicast packets that were -.I not -sent via Ethernet broadcast or multicast: -.RS -.nf -.B -tcpdump 'ether[0] & 1 = 0 and ip[16] >= 224' -.fi -.RE -.LP -To print all ICMP packets that are not echo requests/replies (i.e., not -ping packets): -.RS -.nf -.B -tcpdump 'icmp[icmptype] != icmp-echo and icmp[icmptype] != icmp-echoreply' -.fi -.RE -.SH OUTPUT FORMAT -.LP -The output of \fItcpdump\fP is protocol dependent. -The following -gives a brief description and examples of most of the formats. -.de HD -.sp 1.5 -.B -.. -.HD -Link Level Headers -.LP -If the '-e' option is given, the link level header is printed out. -On Ethernets, the source and destination addresses, protocol, -and packet length are printed. -.LP -On FDDI networks, the '-e' option causes \fItcpdump\fP to print -the `frame control' field, the source and destination addresses, -and the packet length. -(The `frame control' field governs the -interpretation of the rest of the packet. -Normal packets (such -as those containing IP datagrams) are `async' packets, with a priority -value between 0 and 7; for example, `\fBasync4\fR'. -Such packets -are assumed to contain an 802.2 Logical Link Control (LLC) packet; -the LLC header is printed if it is \fInot\fR an ISO datagram or a -so-called SNAP packet. -.LP -On Token Ring networks, the '-e' option causes \fItcpdump\fP to print -the `access control' and `frame control' fields, the source and -destination addresses, and the packet length. -As on FDDI networks, -packets are assumed to contain an LLC packet. -Regardless of whether -the '-e' option is specified or not, the source routing information is -printed for source-routed packets. -.LP -On 802.11 networks, the '-e' option causes \fItcpdump\fP to print -the `frame control' fields, all of the addresses in the 802.11 header, -and the packet length. -As on FDDI networks, -packets are assumed to contain an LLC packet. -.LP -\fI(N.B.: The following description assumes familiarity with -the SLIP compression algorithm described in RFC-1144.)\fP -.LP -On SLIP links, a direction indicator (``I'' for inbound, ``O'' for outbound), -packet type, and compression information are printed out. -The packet type is printed first. -The three types are \fIip\fP, \fIutcp\fP, and \fIctcp\fP. -No further link information is printed for \fIip\fR packets. -For TCP packets, the connection identifier is printed following the type. -If the packet is compressed, its encoded header is printed out. -The special cases are printed out as -\fB*S+\fIn\fR and \fB*SA+\fIn\fR, where \fIn\fR is the amount by which -the sequence number (or sequence number and ack) has changed. -If it is not a special case, -zero or more changes are printed. -A change is indicated by U (urgent pointer), W (window), A (ack), -S (sequence number), and I (packet ID), followed by a delta (+n or -n), -or a new value (=n). -Finally, the amount of data in the packet and compressed header length -are printed. -.LP -For example, the following line shows an outbound compressed TCP packet, -with an implicit connection identifier; the ack has changed by 6, -the sequence number by 49, and the packet ID by 6; there are 3 bytes of -data and 6 bytes of compressed header: -.RS -.nf -\fBO ctcp * A+6 S+49 I+6 3 (6)\fP -.fi -.RE -.HD -ARP/RARP Packets -.LP -Arp/rarp output shows the type of request and its arguments. -The -format is intended to be self explanatory. -Here is a short sample taken from the start of an `rlogin' from -host \fIrtsg\fP to host \fIcsam\fP: -.RS -.nf -.sp .5 -\f(CWarp who-has csam tell rtsg -arp reply csam is-at CSAM\fR -.sp .5 -.fi -.RE -The first line says that rtsg sent an arp packet asking -for the Ethernet address of internet host csam. -Csam -replies with its Ethernet address (in this example, Ethernet addresses -are in caps and internet addresses in lower case). -.LP -This would look less redundant if we had done \fItcpdump \-n\fP: -.RS -.nf -.sp .5 -\f(CWarp who-has 128.3.254.6 tell 128.3.254.68 -arp reply 128.3.254.6 is-at 02:07:01:00:01:c4\fP -.fi -.RE -.LP -If we had done \fItcpdump \-e\fP, the fact that the first packet is -broadcast and the second is point-to-point would be visible: -.RS -.nf -.sp .5 -\f(CWRTSG Broadcast 0806 64: arp who-has csam tell rtsg -CSAM RTSG 0806 64: arp reply csam is-at CSAM\fR -.sp .5 -.fi -.RE -For the first packet this says the Ethernet source address is RTSG, the -destination is the Ethernet broadcast address, the type field -contained hex 0806 (type ETHER_ARP) and the total length was 64 bytes. -.HD -TCP Packets -.LP -\fI(N.B.:The following description assumes familiarity with -the TCP protocol described in RFC-793. -If you are not familiar -with the protocol, neither this description nor \fItcpdump\fP will -be of much use to you.)\fP -.LP -The general format of a tcp protocol line is: -.RS -.nf -.sp .5 -\fIsrc > dst: flags data-seqno ack window urgent options\fP -.sp .5 -.fi -.RE -\fISrc\fP and \fIdst\fP are the source and destination IP -addresses and ports. -\fIFlags\fP are some combination of S (SYN), -F (FIN), P (PUSH), R (RST), U (URG), W (ECN CWR), E (ECN-Echo) or -`.' (ACK), or `none' if no flags are set. -\fIData-seqno\fP describes the portion of sequence space covered -by the data in this packet (see example below). -\fIAck\fP is sequence number of the next data expected the other -direction on this connection. -\fIWindow\fP is the number of bytes of receive buffer space available -the other direction on this connection. -\fIUrg\fP indicates there is `urgent' data in the packet. -\fIOptions\fP are tcp options enclosed in angle brackets (e.g., ). -.LP -\fISrc, dst\fP and \fIflags\fP are always present. -The other fields -depend on the contents of the packet's tcp protocol header and -are output only if appropriate. -.LP -Here is the opening portion of an rlogin from host \fIrtsg\fP to -host \fIcsam\fP. -.RS -.nf -.sp .5 -\s-2\f(CWrtsg.1023 > csam.login: S 768512:768512(0) win 4096 -csam.login > rtsg.1023: S 947648:947648(0) ack 768513 win 4096 -rtsg.1023 > csam.login: . ack 1 win 4096 -rtsg.1023 > csam.login: P 1:2(1) ack 1 win 4096 -csam.login > rtsg.1023: . ack 2 win 4096 -rtsg.1023 > csam.login: P 2:21(19) ack 1 win 4096 -csam.login > rtsg.1023: P 1:2(1) ack 21 win 4077 -csam.login > rtsg.1023: P 2:3(1) ack 21 win 4077 urg 1 -csam.login > rtsg.1023: P 3:4(1) ack 21 win 4077 urg 1\fR\s+2 -.sp .5 -.fi -.RE -The first line says that tcp port 1023 on rtsg sent a packet -to port \fIlogin\fP -on csam. -The \fBS\fP indicates that the \fISYN\fP flag was set. -The packet sequence number was 768512 and it contained no data. -(The notation is `first:last(nbytes)' which means `sequence -numbers \fIfirst\fP -up to but not including \fIlast\fP which is \fInbytes\fP bytes of user data'.) -There was no piggy-backed ack, the available receive window was 4096 -bytes and there was a max-segment-size option requesting an mss of -1024 bytes. -.LP -Csam replies with a similar packet except it includes a piggy-backed -ack for rtsg's SYN. -Rtsg then acks csam's SYN. -The `.' means the ACK flag was set. -The packet contained no data so there is no data sequence number. -Note that the ack sequence -number is a small integer (1). -The first time \fItcpdump\fP sees a -tcp `conversation', it prints the sequence number from the packet. -On subsequent packets of the conversation, the difference between -the current packet's sequence number and this initial sequence number -is printed. -This means that sequence numbers after the -first can be interpreted -as relative byte positions in the conversation's data stream (with the -first data byte each direction being `1'). -`-S' will override this -feature, causing the original sequence numbers to be output. -.LP -On the 6th line, rtsg sends csam 19 bytes of data (bytes 2 through 20 -in the rtsg \(-> csam side of the conversation). -The PUSH flag is set in the packet. -On the 7th line, csam says it's received data sent by rtsg up to -but not including byte 21. -Most of this data is apparently sitting in the -socket buffer since csam's receive window has gotten 19 bytes smaller. -Csam also sends one byte of data to rtsg in this packet. -On the 8th and 9th lines, -csam sends two bytes of urgent, pushed data to rtsg. -.LP -If the snapshot was small enough that \fItcpdump\fP didn't capture -the full TCP header, it interprets as much of the header as it can -and then reports ``[|\fItcp\fP]'' to indicate the remainder could not -be interpreted. -If the header contains a bogus option (one with a length -that's either too small or beyond the end of the header), \fItcpdump\fP -reports it as ``[\fIbad opt\fP]'' and does not interpret any further -options (since it's impossible to tell where they start). -If the header -length indicates options are present but the IP datagram length is not -long enough for the options to actually be there, \fItcpdump\fP reports -it as ``[\fIbad hdr length\fP]''. -.HD -.B Capturing TCP packets with particular flag combinations (SYN-ACK, URG-ACK, etc.) -.PP -There are 8 bits in the control bits section of the TCP header: -.IP -.I CWR | ECE | URG | ACK | PSH | RST | SYN | FIN -.PP -Let's assume that we want to watch packets used in establishing -a TCP connection. -Recall that TCP uses a 3-way handshake protocol -when it initializes a new connection; the connection sequence with -regard to the TCP control bits is -.PP -.RS -1) Caller sends SYN -.RE -.RS -2) Recipient responds with SYN, ACK -.RE -.RS -3) Caller sends ACK -.RE -.PP -Now we're interested in capturing packets that have only the -SYN bit set (Step 1). -Note that we don't want packets from step 2 -(SYN-ACK), just a plain initial SYN. -What we need is a correct filter -expression for \fItcpdump\fP. -.PP -Recall the structure of a TCP header without options: -.PP -.nf - 0 15 31 ------------------------------------------------------------------ -| source port | destination port | ------------------------------------------------------------------ -| sequence number | ------------------------------------------------------------------ -| acknowledgment number | ------------------------------------------------------------------ -| HL | rsvd |C|E|U|A|P|R|S|F| window size | ------------------------------------------------------------------ -| TCP checksum | urgent pointer | ------------------------------------------------------------------ -.fi -.PP -A TCP header usually holds 20 octets of data, unless options are -present. -The first line of the graph contains octets 0 - 3, the -second line shows octets 4 - 7 etc. -.PP -Starting to count with 0, the relevant TCP control bits are contained -in octet 13: -.PP -.nf - 0 7| 15| 23| 31 -----------------|---------------|---------------|---------------- -| HL | rsvd |C|E|U|A|P|R|S|F| window size | -----------------|---------------|---------------|---------------- -| | 13th octet | | | -.fi -.PP -Let's have a closer look at octet no. 13: -.PP -.nf - | | - |---------------| - |C|E|U|A|P|R|S|F| - |---------------| - |7 5 3 0| -.fi -.PP -These are the TCP control bits we are interested -in. -We have numbered the bits in this octet from 0 to 7, right to -left, so the PSH bit is bit number 3, while the URG bit is number 5. -.PP -Recall that we want to capture packets with only SYN set. -Let's see what happens to octet 13 if a TCP datagram arrives -with the SYN bit set in its header: -.PP -.nf - |C|E|U|A|P|R|S|F| - |---------------| - |0 0 0 0 0 0 1 0| - |---------------| - |7 6 5 4 3 2 1 0| -.fi -.PP -Looking at the -control bits section we see that only bit number 1 (SYN) is set. -.PP -Assuming that octet number 13 is an 8-bit unsigned integer in -network byte order, the binary value of this octet is -.IP -00000010 -.PP -and its decimal representation is -.PP -.nf - 7 6 5 4 3 2 1 0 -0*2 + 0*2 + 0*2 + 0*2 + 0*2 + 0*2 + 1*2 + 0*2 = 2 -.fi -.PP -We're almost done, because now we know that if only SYN is set, -the value of the 13th octet in the TCP header, when interpreted -as a 8-bit unsigned integer in network byte order, must be exactly 2. -.PP -This relationship can be expressed as -.RS -.B -tcp[13] == 2 -.RE -.PP -We can use this expression as the filter for \fItcpdump\fP in order -to watch packets which have only SYN set: -.RS -.B -tcpdump -i xl0 tcp[13] == 2 -.RE -.PP -The expression says "let the 13th octet of a TCP datagram have -the decimal value 2", which is exactly what we want. -.PP -Now, let's assume that we need to capture SYN packets, but we -don't care if ACK or any other TCP control bit is set at the -same time. -Let's see what happens to octet 13 when a TCP datagram -with SYN-ACK set arrives: -.PP -.nf - |C|E|U|A|P|R|S|F| - |---------------| - |0 0 0 1 0 0 1 0| - |---------------| - |7 6 5 4 3 2 1 0| -.fi -.PP -Now bits 1 and 4 are set in the 13th octet. -The binary value of -octet 13 is -.IP - 00010010 -.PP -which translates to decimal -.PP -.nf - 7 6 5 4 3 2 1 0 -0*2 + 0*2 + 0*2 + 1*2 + 0*2 + 0*2 + 1*2 + 0*2 = 18 -.fi -.PP -Now we can't just use 'tcp[13] == 18' in the \fItcpdump\fP filter -expression, because that would select only those packets that have -SYN-ACK set, but not those with only SYN set. -Remember that we don't care -if ACK or any other control bit is set as long as SYN is set. -.PP -In order to achieve our goal, we need to logically AND the -binary value of octet 13 with some other value to preserve -the SYN bit. -We know that we want SYN to be set in any case, -so we'll logically AND the value in the 13th octet with -the binary value of a SYN: -.PP -.nf - - 00010010 SYN-ACK 00000010 SYN - AND 00000010 (we want SYN) AND 00000010 (we want SYN) - -------- -------- - = 00000010 = 00000010 -.fi -.PP -We see that this AND operation delivers the same result -regardless whether ACK or another TCP control bit is set. -The decimal representation of the AND value as well as -the result of this operation is 2 (binary 00000010), -so we know that for packets with SYN set the following -relation must hold true: -.IP -( ( value of octet 13 ) AND ( 2 ) ) == ( 2 ) -.PP -This points us to the \fItcpdump\fP filter expression -.RS -.B - tcpdump -i xl0 'tcp[13] & 2 == 2' -.RE -.PP -Some offsets and field values may be expressed as names -rather than as numeric values. For example tcp[13] may -be replaced with tcp[tcpflags]. The following TCP flag -field values are also available: tcp-fin, tcp-syn, tcp-rst, -tcp-push, tcp-act, tcp-urg. -.PP -This can be demonstrated as: -.RS -.B - tcpdump -i xl0 'tcp[tcpflags] & tcp-push != 0' -.RE -.PP -Note that you should use single quotes or a backslash -in the expression to hide the AND ('&') special character -from the shell. -.HD -.B -UDP Packets -.LP -UDP format is illustrated by this rwho packet: -.RS -.nf -.sp .5 -\f(CWactinide.who > broadcast.who: udp 84\fP -.sp .5 -.fi -.RE -This says that port \fIwho\fP on host \fIactinide\fP sent a udp -datagram to port \fIwho\fP on host \fIbroadcast\fP, the Internet -broadcast address. -The packet contained 84 bytes of user data. -.LP -Some UDP services are recognized (from the source or destination -port number) and the higher level protocol information printed. -In particular, Domain Name service requests (RFC-1034/1035) and Sun -RPC calls (RFC-1050) to NFS. -.HD -UDP Name Server Requests -.LP -\fI(N.B.:The following description assumes familiarity with -the Domain Service protocol described in RFC-1035. -If you are not familiar -with the protocol, the following description will appear to be written -in greek.)\fP -.LP -Name server requests are formatted as -.RS -.nf -.sp .5 -\fIsrc > dst: id op? flags qtype qclass name (len)\fP -.sp .5 -\f(CWh2opolo.1538 > helios.domain: 3+ A? ucbvax.berkeley.edu. (37)\fR -.sp .5 -.fi -.RE -Host \fIh2opolo\fP asked the domain server on \fIhelios\fP for an -address record (qtype=A) associated with the name \fIucbvax.berkeley.edu.\fP -The query id was `3'. -The `+' indicates the \fIrecursion desired\fP flag -was set. -The query length was 37 bytes, not including the UDP and -IP protocol headers. -The query operation was the normal one, \fIQuery\fP, -so the op field was omitted. -If the op had been anything else, it would -have been printed between the `3' and the `+'. -Similarly, the qclass was the normal one, -\fIC_IN\fP, and omitted. -Any other qclass would have been printed -immediately after the `A'. -.LP -A few anomalies are checked and may result in extra fields enclosed in -square brackets: If a query contains an answer, authority records or -additional records section, -.IR ancount , -.IR nscount , -or -.I arcount -are printed as `[\fIn\fPa]', `[\fIn\fPn]' or `[\fIn\fPau]' where \fIn\fP -is the appropriate count. -If any of the response bits are set (AA, RA or rcode) or any of the -`must be zero' bits are set in bytes two and three, `[b2&3=\fIx\fP]' -is printed, where \fIx\fP is the hex value of header bytes two and three. -.HD -UDP Name Server Responses -.LP -Name server responses are formatted as -.RS -.nf -.sp .5 -\fIsrc > dst: id op rcode flags a/n/au type class data (len)\fP -.sp .5 -\f(CWhelios.domain > h2opolo.1538: 3 3/3/7 A 128.32.137.3 (273) -helios.domain > h2opolo.1537: 2 NXDomain* 0/1/0 (97)\fR -.sp .5 -.fi -.RE -In the first example, \fIhelios\fP responds to query id 3 from \fIh2opolo\fP -with 3 answer records, 3 name server records and 7 additional records. -The first answer record is type A (address) and its data is internet -address 128.32.137.3. -The total size of the response was 273 bytes, -excluding UDP and IP headers. -The op (Query) and response code -(NoError) were omitted, as was the class (C_IN) of the A record. -.LP -In the second example, \fIhelios\fP responds to query 2 with a -response code of non-existent domain (NXDomain) with no answers, -one name server and no authority records. -The `*' indicates that -the \fIauthoritative answer\fP bit was set. -Since there were no -answers, no type, class or data were printed. -.LP -Other flag characters that might appear are `\-' (recursion available, -RA, \fInot\fP set) and `|' (truncated message, TC, set). -If the -`question' section doesn't contain exactly one entry, `[\fIn\fPq]' -is printed. -.HD -SMB/CIFS decoding -.LP -\fItcpdump\fP now includes fairly extensive SMB/CIFS/NBT decoding for data -on UDP/137, UDP/138 and TCP/139. -Some primitive decoding of IPX and -NetBEUI SMB data is also done. -.LP -By default a fairly minimal decode is done, with a much more detailed -decode done if -v is used. -Be warned that with -v a single SMB packet -may take up a page or more, so only use -v if you really want all the -gory details. -.LP -For information on SMB packet formats and what all the fields mean see -www.cifs.org or the pub/samba/specs/ directory on your favorite -samba.org mirror site. -The SMB patches were written by Andrew Tridgell -(tridge@samba.org). -.HD -NFS Requests and Replies -.LP -Sun NFS (Network File System) requests and replies are printed as: -.RS -.nf -.sp .5 -\fIsrc.sport > dst.nfs: NFS request xid xid len op args\fP -\fIsrc.nfs > dst.dport: NFS reply xid xid reply stat len op results\fP -.sp .5 -\f(CW -sushi.1023 > wrl.nfs: NFS request xid 26377 - 112 readlink fh 21,24/10.73165 -wrl.nfs > sushi.1023: NFS reply xid 26377 - reply ok 40 readlink "../var" -sushi.1022 > wrl.nfs: NFS request xid 8219 - 144 lookup fh 9,74/4096.6878 "xcolors" -wrl.nfs > sushi.1022: NFS reply xid 8219 - reply ok 128 lookup fh 9,74/4134.3150 -\fR -.sp .5 -.fi -.RE -In the first line, host \fIsushi\fP sends a transaction with id \fI26377\fP -to \fIwrl\fP. -The request was 112 bytes, -excluding the UDP and IP headers. -The operation was a \fIreadlink\fP -(read symbolic link) on file handle (\fIfh\fP) 21,24/10.731657119. -(If one is lucky, as in this case, the file handle can be interpreted -as a major,minor device number pair, followed by the inode number and -generation number.) In the second line, \fIwrl\fP replies `ok' with -the same transaction id and the contents of the link. -.LP -In the third line, \fIsushi\fP asks (using a new transaction id) \fIwrl\fP -to lookup the name `\fIxcolors\fP' in directory file 9,74/4096.6878. In -the fourth line, \fIwrl\fP sends a reply with the respective transaction id. -.LP -Note that the data printed -depends on the operation type. -The format is intended to be self -explanatory if read in conjunction with -an NFS protocol spec. -Also note that older versions of tcpdump printed NFS packets in a -slightly different format: the transaction id (xid) would be printed -instead of the non-NFS port number of the packet. -.LP -If the \-v (verbose) flag is given, additional information is printed. -For example: -.RS -.nf -.sp .5 -\f(CW -sushi.1023 > wrl.nfs: NFS request xid 79658 - 148 read fh 21,11/12.195 8192 bytes @ 24576 -wrl.nfs > sushi.1023: NFS reply xid 79658 - reply ok 1472 read REG 100664 ids 417/0 sz 29388 -\fP -.sp .5 -.fi -.RE -(\-v also prints the IP header TTL, ID, length, and fragmentation fields, -which have been omitted from this example.) In the first line, -\fIsushi\fP asks \fIwrl\fP to read 8192 bytes from file 21,11/12.195, -at byte offset 24576. -\fIWrl\fP replies `ok'; the packet shown on the -second line is the first fragment of the reply, and hence is only 1472 -bytes long (the other bytes will follow in subsequent fragments, but -these fragments do not have NFS or even UDP headers and so might not be -printed, depending on the filter expression used). -Because the \-v flag -is given, some of the file attributes (which are returned in addition -to the file data) are printed: the file type (``REG'', for regular file), -the file mode (in octal), the uid and gid, and the file size. -.LP -If the \-v flag is given more than once, even more details are printed. -.LP -Note that NFS requests are very large and much of the detail won't be printed -unless \fIsnaplen\fP is increased. -Try using `\fB\-s 192\fP' to watch -NFS traffic. -.LP -NFS reply packets do not explicitly identify the RPC operation. -Instead, -\fItcpdump\fP keeps track of ``recent'' requests, and matches them to the -replies using the transaction ID. -If a reply does not closely follow the -corresponding request, it might not be parsable. -.HD -AFS Requests and Replies -.LP -Transarc AFS (Andrew File System) requests and replies are printed -as: -.HD -.RS -.nf -.sp .5 -\fIsrc.sport > dst.dport: rx packet-type\fP -\fIsrc.sport > dst.dport: rx packet-type service call call-name args\fP -\fIsrc.sport > dst.dport: rx packet-type service reply call-name args\fP -.sp .5 -\f(CW -elvis.7001 > pike.afsfs: - rx data fs call rename old fid 536876964/1/1 ".newsrc.new" - new fid 536876964/1/1 ".newsrc" -pike.afsfs > elvis.7001: rx data fs reply rename -\fR -.sp .5 -.fi -.RE -In the first line, host elvis sends a RX packet to pike. -This was -a RX data packet to the fs (fileserver) service, and is the start of -an RPC call. -The RPC call was a rename, with the old directory file id -of 536876964/1/1 and an old filename of `.newsrc.new', and a new directory -file id of 536876964/1/1 and a new filename of `.newsrc'. -The host pike -responds with a RPC reply to the rename call (which was successful, because -it was a data packet and not an abort packet). -.LP -In general, all AFS RPCs are decoded at least by RPC call name. -Most -AFS RPCs have at least some of the arguments decoded (generally only -the `interesting' arguments, for some definition of interesting). -.LP -The format is intended to be self-describing, but it will probably -not be useful to people who are not familiar with the workings of -AFS and RX. -.LP -If the -v (verbose) flag is given twice, acknowledgement packets and -additional header information is printed, such as the RX call ID, -call number, sequence number, serial number, and the RX packet flags. -.LP -If the -v flag is given twice, additional information is printed, -such as the RX call ID, serial number, and the RX packet flags. -The MTU negotiation information is also printed from RX ack packets. -.LP -If the -v flag is given three times, the security index and service id -are printed. -.LP -Error codes are printed for abort packets, with the exception of Ubik -beacon packets (because abort packets are used to signify a yes vote -for the Ubik protocol). -.LP -Note that AFS requests are very large and many of the arguments won't -be printed unless \fIsnaplen\fP is increased. -Try using `\fB-s 256\fP' -to watch AFS traffic. -.LP -AFS reply packets do not explicitly identify the RPC operation. -Instead, -\fItcpdump\fP keeps track of ``recent'' requests, and matches them to the -replies using the call number and service ID. -If a reply does not closely -follow the -corresponding request, it might not be parsable. - -.HD -KIP AppleTalk (DDP in UDP) -.LP -AppleTalk DDP packets encapsulated in UDP datagrams are de-encapsulated -and dumped as DDP packets (i.e., all the UDP header information is -discarded). -The file -.I /etc/atalk.names -is used to translate AppleTalk net and node numbers to names. -Lines in this file have the form -.RS -.nf -.sp .5 -\fInumber name\fP - -\f(CW1.254 ether -16.1 icsd-net -1.254.110 ace\fR -.sp .5 -.fi -.RE -The first two lines give the names of AppleTalk networks. -The third -line gives the name of a particular host (a host is distinguished -from a net by the 3rd octet in the number \- -a net number \fImust\fP have two octets and a host number \fImust\fP -have three octets.) The number and name should be separated by -whitespace (blanks or tabs). -The -.I /etc/atalk.names -file may contain blank lines or comment lines (lines starting with -a `#'). -.LP -AppleTalk addresses are printed in the form -.RS -.nf -.sp .5 -\fInet.host.port\fP - -\f(CW144.1.209.2 > icsd-net.112.220 -office.2 > icsd-net.112.220 -jssmag.149.235 > icsd-net.2\fR -.sp .5 -.fi -.RE -(If the -.I /etc/atalk.names -doesn't exist or doesn't contain an entry for some AppleTalk -host/net number, addresses are printed in numeric form.) -In the first example, NBP (DDP port 2) on net 144.1 node 209 -is sending to whatever is listening on port 220 of net icsd node 112. -The second line is the same except the full name of the source node -is known (`office'). -The third line is a send from port 235 on -net jssmag node 149 to broadcast on the icsd-net NBP port (note that -the broadcast address (255) is indicated by a net name with no host -number \- for this reason it's a good idea to keep node names and -net names distinct in /etc/atalk.names). -.LP -NBP (name binding protocol) and ATP (AppleTalk transaction protocol) -packets have their contents interpreted. -Other protocols just dump -the protocol name (or number if no name is registered for the -protocol) and packet size. - -\fBNBP packets\fP are formatted like the following examples: -.RS -.nf -.sp .5 -\s-2\f(CWicsd-net.112.220 > jssmag.2: nbp-lkup 190: "=:LaserWriter@*" -jssmag.209.2 > icsd-net.112.220: nbp-reply 190: "RM1140:LaserWriter@*" 250 -techpit.2 > icsd-net.112.220: nbp-reply 190: "techpit:LaserWriter@*" 186\fR\s+2 -.sp .5 -.fi -.RE -The first line is a name lookup request for laserwriters sent by net icsd host -112 and broadcast on net jssmag. -The nbp id for the lookup is 190. -The second line shows a reply for this request (note that it has the -same id) from host jssmag.209 saying that it has a laserwriter -resource named "RM1140" registered on port 250. -The third line is -another reply to the same request saying host techpit has laserwriter -"techpit" registered on port 186. - -\fBATP packet\fP formatting is demonstrated by the following example: -.RS -.nf -.sp .5 -\s-2\f(CWjssmag.209.165 > helios.132: atp-req 12266<0-7> 0xae030001 -helios.132 > jssmag.209.165: atp-resp 12266:0 (512) 0xae040000 -helios.132 > jssmag.209.165: atp-resp 12266:1 (512) 0xae040000 -helios.132 > jssmag.209.165: atp-resp 12266:2 (512) 0xae040000 -helios.132 > jssmag.209.165: atp-resp 12266:3 (512) 0xae040000 -helios.132 > jssmag.209.165: atp-resp 12266:4 (512) 0xae040000 -helios.132 > jssmag.209.165: atp-resp 12266:5 (512) 0xae040000 -helios.132 > jssmag.209.165: atp-resp 12266:6 (512) 0xae040000 -helios.132 > jssmag.209.165: atp-resp*12266:7 (512) 0xae040000 -jssmag.209.165 > helios.132: atp-req 12266<3,5> 0xae030001 -helios.132 > jssmag.209.165: atp-resp 12266:3 (512) 0xae040000 -helios.132 > jssmag.209.165: atp-resp 12266:5 (512) 0xae040000 -jssmag.209.165 > helios.132: atp-rel 12266<0-7> 0xae030001 -jssmag.209.133 > helios.132: atp-req* 12267<0-7> 0xae030002\fR\s+2 -.sp .5 -.fi -.RE -Jssmag.209 initiates transaction id 12266 with host helios by requesting -up to 8 packets (the `<0-7>'). -The hex number at the end of the line -is the value of the `userdata' field in the request. -.LP -Helios responds with 8 512-byte packets. -The `:digit' following the -transaction id gives the packet sequence number in the transaction -and the number in parens is the amount of data in the packet, -excluding the atp header. -The `*' on packet 7 indicates that the -EOM bit was set. -.LP -Jssmag.209 then requests that packets 3 & 5 be retransmitted. -Helios -resends them then jssmag.209 releases the transaction. -Finally, -jssmag.209 initiates the next request. -The `*' on the request -indicates that XO (`exactly once') was \fInot\fP set. - -.HD -IP Fragmentation -.LP -Fragmented Internet datagrams are printed as -.RS -.nf -.sp .5 -\fB(frag \fIid\fB:\fIsize\fB@\fIoffset\fB+)\fR -\fB(frag \fIid\fB:\fIsize\fB@\fIoffset\fB)\fR -.sp .5 -.fi -.RE -(The first form indicates there are more fragments. -The second -indicates this is the last fragment.) -.LP -\fIId\fP is the fragment id. -\fISize\fP is the fragment -size (in bytes) excluding the IP header. -\fIOffset\fP is this -fragment's offset (in bytes) in the original datagram. -.LP -The fragment information is output for each fragment. -The first -fragment contains the higher level protocol header and the frag -info is printed after the protocol info. -Fragments -after the first contain no higher level protocol header and the -frag info is printed after the source and destination addresses. -For example, here is part of an ftp from arizona.edu to lbl-rtsg.arpa -over a CSNET connection that doesn't appear to handle 576 byte datagrams: -.RS -.nf -.sp .5 -\s-2\f(CWarizona.ftp-data > rtsg.1170: . 1024:1332(308) ack 1 win 4096 (frag 595a:328@0+) -arizona > rtsg: (frag 595a:204@328) -rtsg.1170 > arizona.ftp-data: . ack 1536 win 2560\fP\s+2 -.sp .5 -.fi -.RE -There are a couple of things to note here: First, addresses in the -2nd line don't include port numbers. -This is because the TCP -protocol information is all in the first fragment and we have no idea -what the port or sequence numbers are when we print the later fragments. -Second, the tcp sequence information in the first line is printed as if there -were 308 bytes of user data when, in fact, there are 512 bytes (308 in -the first frag and 204 in the second). -If you are looking for holes -in the sequence space or trying to match up acks -with packets, this can fool you. -.LP -A packet with the IP \fIdon't fragment\fP flag is marked with a -trailing \fB(DF)\fP. -.HD -Timestamps -.LP -By default, all output lines are preceded by a timestamp. -The timestamp -is the current clock time in the form -.RS -.nf -\fIhh:mm:ss.frac\fP -.fi -.RE -and is as accurate as the kernel's clock. -The timestamp reflects the time the kernel applied a time stamp to the packet. -No attempt is made to account for the time lag between when the network -interface finished receiving the packet from the network and when the -kernel applied a time stamp to the packet; that time lag could include a -delay between the time when the network interface finished receiving a -packet from the network and the time when an interrupt was delivered to -the kernel to get it to read the packet and a delay between the time -when the kernel serviced the `new packet' interrupt and the time when it -applied a time stamp to the packet. -.SH "SEE ALSO" -stty(1), pcap(3PCAP), bpf(4), nit(4P), pcap-savefile(@MAN_FILE_FORMATS@), -pcap-filter(@MAN_MISC_INFO@), pcap-tstamp(@MAN_MISC_INFO@) -.LP -.RS -.I http://www.iana.org/assignments/media-types/application/vnd.tcpdump.pcap -.RE -.LP -.SH AUTHORS -The original authors are: -.LP -Van Jacobson, -Craig Leres and -Steven McCanne, all of the -Lawrence Berkeley National Laboratory, University of California, Berkeley, CA. -.LP -It is currently being maintained by tcpdump.org. -.LP -The current version is available via http: -.LP -.RS -.I http://www.tcpdump.org/ -.RE -.LP -The original distribution is available via anonymous ftp: -.LP -.RS -.I ftp://ftp.ee.lbl.gov/old/tcpdump.tar.Z -.RE -.LP -IPv6/IPsec support is added by WIDE/KAME project. -This program uses Eric Young's SSLeay library, under specific configurations. -.SH BUGS -Please send problems, bugs, questions, desirable enhancements, patches -etc. to: -.LP -.RS -tcpdump-workers@lists.tcpdump.org -.RE -.LP -NIT doesn't let you watch your own outbound traffic, BPF will. -We recommend that you use the latter. -.LP -On Linux systems with 2.0[.x] kernels: -.IP -packets on the loopback device will be seen twice; -.IP -packet filtering cannot be done in the kernel, so that all packets must -be copied from the kernel in order to be filtered in user mode; -.IP -all of a packet, not just the part that's within the snapshot length, -will be copied from the kernel (the 2.0[.x] packet capture mechanism, if -asked to copy only part of a packet to userland, will not report the -true length of the packet; this would cause most IP packets to get an -error from -.BR tcpdump ); -.IP -capturing on some PPP devices won't work correctly. -.LP -We recommend that you upgrade to a 2.2 or later kernel. -.LP -Some attempt should be made to reassemble IP fragments or, at least -to compute the right length for the higher level protocol. -.LP -Name server inverse queries are not dumped correctly: the (empty) -question section is printed rather than real query in the answer -section. -Some believe that inverse queries are themselves a bug and -prefer to fix the program generating them rather than \fItcpdump\fP. -.LP -A packet trace that crosses a daylight savings time change will give -skewed time stamps (the time change is ignored). -.LP -Filter expressions on fields other than those in Token Ring headers will -not correctly handle source-routed Token Ring packets. -.LP -Filter expressions on fields other than those in 802.11 headers will not -correctly handle 802.11 data packets with both To DS and From DS set. -.LP -.BR "ip6 proto" -should chase header chain, but at this moment it does not. -.BR "ip6 protochain" -is supplied for this behavior. -.LP -Arithmetic expression against transport layer headers, like \fBtcp[0]\fP, -does not work against IPv6 packets. -It only looks at IPv4 packets. diff --git a/tcpdump.c b/tcpdump.c deleted file mode 100644 index 8029e28..0000000 --- a/tcpdump.c +++ /dev/null @@ -1,3251 +0,0 @@ -/* - * Copyright (c) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 2000 - * The Regents of the University of California. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that: (1) source code distributions - * retain the above copyright notice and this paragraph in its entirety, (2) - * distributions including binary code include the above copyright notice and - * this paragraph in its entirety in the documentation or other materials - * provided with the distribution, and (3) all advertising materials mentioning - * features or use of this software display the following acknowledgement: - * ``This product includes software developed by the University of California, - * Lawrence Berkeley Laboratory and its contributors.'' Neither the name of - * the University nor the names of its contributors may be used to endorse - * or promote products derived from this software without specific prior - * written permission. - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED - * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF - * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. - * - * Support for splitting captures into multiple files with a maximum - * file size: - * - * Copyright (c) 2001 - * Seth Webster - */ - -/* 2016-11-29 lijia add, - 类似FTP方式, TCP连接传输命令, UDP连接传输实际捕包. - 1-随机打开本端UDP未用端口, 默认12345, 如被占用, 顺序后延; - 2-与sapp建立TCP连接, 发送本端UDP监听端口; - 3-给sapp发送捕包控制命令, 传输BPF-filter过滤字符串, - - 4-从UDP端口读取sapp捕获的数据包; - 5-调用tcpdump原版流程, 解析打印或写文件。 - - 2018-01-19 lijia add, - 1-多个tcpdump_mesa同时启动时, 后续的连接会抢占第一个连接的数据流, 但使用第一个连接的过滤条件, - 增加TCP命令连接的确认机制, 如果sapp不回复确认包, tcpdump_mesa不启动捕包. - - 2-增加丢包计数, 如果使用-a参数指定perceptive模式, sapp在发送包时, 在源MAC地址上打上序号, - tcpdump_mesa检查序号是否连续, 以确认中间是否有丢包, 丢了几个包. -*/ -#define MESA_DUMP (1) -#if MESA_DUMP -#include "mesa_pkt_dump.h" -int tcpdump_data_offset = 0; /* 用于跳过某些底层数据, 如vxlan, 可以直接获取或设置过滤条件看vxlan的内层数据包内容 */ -unsigned char tcpdump_thread_index_array[64]; /* 开启捕包线程id数组, 靠长度决定id数量, 每个占1字节, 命令行输入支持逗号分隔 */ -int tcpdump_thread_index_array_num = 0; -const char *tcpdump_thread_index_str; -int tcpdump_perceptive_flag = 0; -unsigned int perceptive_pkt_seq[256]; /* 最大支持256个线程 */ -static int greedy_seek_flag = 0; /* 偏移到最内层IP, 便于隧道模式下查找BUG */ -static int dump_to_file_flag = 0; /* 是否有-w 参数, 原有标准的WFileName变量是main()的局部变量, 不方便使用, 使用此变量表示是否写文件 */ -static int has_device_flag = 0; /* 是否有-i, -r参数, 原有标准的device变量是main()的局部变量, 不方便使用, 使用此变量表示是否从某个网卡捕包 */ -static int has_bpf_filter_flag = 0; /* 是否有正确的BPF过滤条件 */ -extern int treat_vlan_as_mac_in_mac_sw; - -#endif - -#ifndef lint -static const char copyright[] _U_ = - "@(#) Copyright (c) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 2000\n\ -The Regents of the University of California. All rights reserved.\n"; -#endif - -/* - * tcpdump - dump traffic on a network - * - * First written in 1987 by Van Jacobson, Lawrence Berkeley Laboratory. - * Mercilessly hacked and occasionally improved since then via the - * combined efforts of Van, Steve McCanne and Craig Leres of LBL. - */ - -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif - -/* - * Mac OS X may ship pcap.h from libpcap 0.6 with a libpcap based on - * 0.8. That means it has pcap_findalldevs() but the header doesn't - * define pcap_if_t, meaning that we can't actually *use* pcap_findalldevs(). - */ -#ifdef HAVE_PCAP_FINDALLDEVS -#ifndef HAVE_PCAP_IF_T -#undef HAVE_PCAP_FINDALLDEVS -#endif -#endif - -#include - -#ifdef USE_LIBSMI -#include -#endif - -#ifdef HAVE_LIBCRYPTO -#include -#endif - -#ifdef HAVE_GETOPT_LONG -#include -#else -#include "getopt_long.h" -#endif -/* Capsicum-specific code requires macros from , which will fail - * to compile if has already been included; including the headers - * in the opposite order works fine. - */ -#ifdef HAVE_CAPSICUM -#include -#include -#include -#include -#include -#endif /* HAVE_CAPSICUM */ -#include -#include -#include -#include -#include -#include -#ifndef _WIN32 -#include -#include -#include -#include -#endif /* _WIN32 */ - -/* capabilities convenience library */ -/* If a code depends on HAVE_LIBCAP_NG, it depends also on HAVE_CAP_NG_H. - * If HAVE_CAP_NG_H is not defined, undefine HAVE_LIBCAP_NG. - * Thus, the later tests are done only on HAVE_LIBCAP_NG. - */ -#ifdef HAVE_LIBCAP_NG -#ifdef HAVE_CAP_NG_H -#include -#else -#undef HAVE_LIBCAP_NG -#endif /* HAVE_CAP_NG_H */ -#endif /* HAVE_LIBCAP_NG */ - -#include "netdissect.h" -#include "interface.h" -#include "addrtoname.h" -#include "machdep.h" -#include "setsignal.h" -#include "gmt2local.h" -#include "pcap-missing.h" -#include "ascii_strcasecmp.h" - -#include "print.h" - -#ifdef GIT_VERSION -const char *tcpdump_mesa_version = (const char *)GIT_VERSION; -#else -const char *tcpdump_mesa_version = "GIT_VERSION_UNKNOWN"; -#endif - -#ifndef PATH_MAX -#define PATH_MAX 1024 -#endif - -#ifdef SIGINFO -#define SIGNAL_REQ_INFO SIGINFO -#elif SIGUSR1 -#define SIGNAL_REQ_INFO SIGUSR1 -#endif - -static int Cflag; /* rotate dump files after this many bytes */ -static int Cflag_count; /* Keep track of which file number we're writing */ -static int Dflag; /* list available devices and exit */ -/* - * This is exported because, in some versions of libpcap, if libpcap - * is built with optimizer debugging code (which is *NOT* the default - * configuration!), the library *imports*(!) a variable named dflag, - * under the expectation that tcpdump is exporting it, to govern - * how much debugging information to print when optimizing - * the generated BPF code. - * - * This is a horrible hack; newer versions of libpcap don't import - * dflag but, instead, *if* built with optimizer debugging code, - * *export* a routine to set that flag. - */ -int dflag; /* print filter code */ -static int Gflag; /* rotate dump files after this many seconds */ -static int Gflag_count; /* number of files created with Gflag rotation */ -static time_t Gflag_time; /* The last time_t the dump file was rotated. */ -static int Lflag; /* list available data link types and exit */ -static int Iflag; /* rfmon (monitor) mode */ -#ifdef HAVE_PCAP_SET_TSTAMP_TYPE -static int Jflag; /* list available time stamp types */ -#endif -#ifdef HAVE_PCAP_SETDIRECTION -int Qflag = -1; /* restrict captured packet by send/receive direction */ -#endif -static int Uflag; /* "unbuffered" output of dump files */ -static int Wflag; /* recycle output files after this number of files */ -static int WflagChars; -static char *zflag = NULL; /* compress each savefile using a specified command (like gzip or bzip2) */ - -static int infodelay; -static int infoprint; - -char *program_name; - -/* Forwards */ -static RETSIGTYPE cleanup(int); -static RETSIGTYPE child_cleanup(int); -static void print_version(void); -static void print_usage(void); -static void show_tstamp_types_and_exit(const char *device) __attribute__((noreturn)); -static void show_dlts_and_exit(const char *device) __attribute__((noreturn)); - -static void print_packet(u_char *, const struct pcap_pkthdr *, const u_char *); -static void dump_packet_and_trunc(u_char *, const struct pcap_pkthdr *, const u_char *); -static void dump_packet(u_char *, const struct pcap_pkthdr *, const u_char *); -static void droproot(const char *, const char *); - -static void MESA_dump_print_packet(unsigned char *user, const struct pcap_pkthdr *h, const unsigned char *pkt); -static void MESA_dump_packet(unsigned char *user, const struct pcap_pkthdr *h, const unsigned char *raw_pkt); - - -#ifdef SIGNAL_REQ_INFO -RETSIGTYPE requestinfo(int); -#endif - -#if defined(USE_WIN32_MM_TIMER) - #include - static UINT timer_id; - static void CALLBACK verbose_stats_dump(UINT, UINT, DWORD_PTR, DWORD_PTR, DWORD_PTR); -#elif defined(HAVE_ALARM) - static void verbose_stats_dump(int sig); -#endif - -static void info(int); -static u_int packets_captured; - -static const struct tok status_flags[] = { -#ifdef PCAP_IF_UP - { PCAP_IF_UP, "Up" }, -#endif -#ifdef PCAP_IF_RUNNING - { PCAP_IF_RUNNING, "Running" }, -#endif - { PCAP_IF_LOOPBACK, "Loopback" }, - { 0, NULL } -}; - -static pcap_t *pd; - -static int supports_monitor_mode; - -extern int optind; -extern int opterr; -extern char *optarg; - -struct dump_info { - char *WFileName; - char *CurrentFileName; - pcap_t *pd; - pcap_dumper_t *p; -#ifdef HAVE_CAPSICUM - int dirfd; -#endif -}; - -#if defined(HAVE_PCAP_SET_PARSER_DEBUG) -/* - * We have pcap_set_parser_debug() in libpcap; declare it (it's not declared - * by any libpcap header, because it's a special hack, only available if - * libpcap was configured to include it, and only intended for use by - * libpcap developers trying to debug the parser for filter expressions). - */ -#ifdef _WIN32 -__declspec(dllimport) -#else /* _WIN32 */ -extern -#endif /* _WIN32 */ -void pcap_set_parser_debug(int); -#elif defined(HAVE_PCAP_DEBUG) || defined(HAVE_YYDEBUG) -/* - * We don't have pcap_set_parser_debug() in libpcap, but we do have - * pcap_debug or yydebug. Make a local version of pcap_set_parser_debug() - * to set the flag, and define HAVE_PCAP_SET_PARSER_DEBUG. - */ -static void -pcap_set_parser_debug(int value) -{ -#ifdef HAVE_PCAP_DEBUG - extern int pcap_debug; - - pcap_debug = value; -#else /* HAVE_PCAP_DEBUG */ - extern int yydebug; - - yydebug = value; -#endif /* HAVE_PCAP_DEBUG */ -} - -#define HAVE_PCAP_SET_PARSER_DEBUG -#endif - -#if defined(HAVE_PCAP_SET_OPTIMIZER_DEBUG) -/* - * We have pcap_set_optimizer_debug() in libpcap; declare it (it's not declared - * by any libpcap header, because it's a special hack, only available if - * libpcap was configured to include it, and only intended for use by - * libpcap developers trying to debug the optimizer for filter expressions). - */ -#ifdef _WIN32 -__declspec(dllimport) -#else /* _WIN32 */ -extern -#endif /* _WIN32 */ -void pcap_set_optimizer_debug(int); -#endif - -#ifdef HAVE_PCAP_SET_TSTAMP_TYPE -static void -show_tstamp_types_and_exit(const char *device) -{ - int n_tstamp_types; - int *tstamp_types = 0; - const char *tstamp_type_name; - int i; - - n_tstamp_types = pcap_list_tstamp_types(pd, &tstamp_types); - if (n_tstamp_types < 0) - error("%s", pcap_geterr(pd)); - - if (n_tstamp_types == 0) { - fprintf(stderr, "Time stamp type cannot be set for %s\n", - device); - exit(0); - } - fprintf(stderr, "Time stamp types for %s (use option -j to set):\n", - device); - for (i = 0; i < n_tstamp_types; i++) { - tstamp_type_name = pcap_tstamp_type_val_to_name(tstamp_types[i]); - if (tstamp_type_name != NULL) { - (void) fprintf(stderr, " %s (%s)\n", tstamp_type_name, - pcap_tstamp_type_val_to_description(tstamp_types[i])); - } else { - (void) fprintf(stderr, " %d\n", tstamp_types[i]); - } - } - pcap_free_tstamp_types(tstamp_types); - exit(0); -} -#endif - -static void -show_dlts_and_exit(const char *device) -{ - int n_dlts, i; - int *dlts = 0; - const char *dlt_name; - - n_dlts = pcap_list_datalinks(pd, &dlts); - if (n_dlts < 0) - error("%s", pcap_geterr(pd)); - else if (n_dlts == 0 || !dlts) - error("No data link types."); - - /* - * If the interface is known to support monitor mode, indicate - * whether these are the data link types available when not in - * monitor mode, if -I wasn't specified, or when in monitor mode, - * when -I was specified (the link-layer types available in - * monitor mode might be different from the ones available when - * not in monitor mode). - */ - if (supports_monitor_mode) - (void) fprintf(stderr, "Data link types for %s %s (use option -y to set):\n", - device, - Iflag ? "when in monitor mode" : "when not in monitor mode"); - else - (void) fprintf(stderr, "Data link types for %s (use option -y to set):\n", - device); - - for (i = 0; i < n_dlts; i++) { - dlt_name = pcap_datalink_val_to_name(dlts[i]); - if (dlt_name != NULL) { - (void) fprintf(stderr, " %s (%s)", dlt_name, - pcap_datalink_val_to_description(dlts[i])); - - /* - * OK, does tcpdump handle that type? - */ - if (!has_printer(dlts[i])) - (void) fprintf(stderr, " (printing not supported)"); - fprintf(stderr, "\n"); - } else { - (void) fprintf(stderr, " DLT %d (printing not supported)\n", - dlts[i]); - } - } -#ifdef HAVE_PCAP_FREE_DATALINKS - pcap_free_datalinks(dlts); -#endif - exit(0); -} - -#ifdef HAVE_PCAP_FINDALLDEVS -static void -show_devices_and_exit (void) -{ - pcap_if_t *dev, *devlist; - char ebuf[PCAP_ERRBUF_SIZE]; - int i; - - if (pcap_findalldevs(&devlist, ebuf) < 0) - error("%s", ebuf); - for (i = 0, dev = devlist; dev != NULL; i++, dev = dev->next) { - printf("%d.%s", i+1, dev->name); - if (dev->description != NULL) - printf(" (%s)", dev->description); - if (dev->flags != 0) - printf(" [%s]", bittok2str(status_flags, "none", dev->flags)); - printf("\n"); - } - pcap_freealldevs(devlist); - exit(0); -} -#endif /* HAVE_PCAP_FINDALLDEVS */ - -/* - * Short options. - * - * Note that there we use all letters for short options except for g, k, - * o, and P, and those are used by other versions of tcpdump, and we should - * only use them for the same purposes that the other versions of tcpdump - * use them: - * - * OS X tcpdump uses -g to force non--v output for IP to be on one - * line, making it more "g"repable; - * - * OS X tcpdump uses -k tospecify that packet comments in pcap-ng files - * should be printed; - * - * OpenBSD tcpdump uses -o to indicate that OS fingerprinting should be done - * for hosts sending TCP SYN packets; - * - * OS X tcpdump uses -P to indicate that -w should write pcap-ng rather - * than pcap files. - * - * OS X tcpdump also uses -Q to specify expressions that match packet - * metadata, including but not limited to the packet direction. - * The expression syntax is different from a simple "in|out|inout", - * and those expressions aren't accepted by OS X tcpdump, but the - * equivalents would be "in" = "dir=in", "out" = "dir=out", and - * "inout" = "dir=in or dir=out", and the parser could conceivably - * special-case "in", "out", and "inout" as expressions for backwards - * compatibility, so all is not (yet) lost. - */ - -/* - * Set up flags that might or might not be supported depending on the - * version of libpcap we're using. - */ -#if defined(HAVE_PCAP_CREATE) || defined(_WIN32) -#define B_FLAG "B:" -#define B_FLAG_USAGE " [ -B size ]" -#else /* defined(HAVE_PCAP_CREATE) || defined(_WIN32) */ -#define B_FLAG -#define B_FLAG_USAGE -#endif /* defined(HAVE_PCAP_CREATE) || defined(_WIN32) */ - -#ifdef HAVE_PCAP_CREATE -#define I_FLAG "I" -#else /* HAVE_PCAP_CREATE */ -#define I_FLAG -#endif /* HAVE_PCAP_CREATE */ - -#ifdef HAVE_PCAP_SET_TSTAMP_TYPE -#define j_FLAG "j:" -#define j_FLAG_USAGE " [ -j tstamptype ]" -#define J_FLAG "J" -#else /* PCAP_ERROR_TSTAMP_TYPE_NOTSUP */ -#define j_FLAG -#define j_FLAG_USAGE -#define J_FLAG -#endif /* PCAP_ERROR_TSTAMP_TYPE_NOTSUP */ - -#ifdef HAVE_PCAP_FINDALLDEVS -#define D_FLAG "D" -#else -#define D_FLAG -#endif - -#ifdef HAVE_PCAP_DUMP_FLUSH -#define U_FLAG "U" -#else -#define U_FLAG -#endif - -#ifdef HAVE_PCAP_SETDIRECTION -#define Q_FLAG "Q:" -#else -#define Q_FLAG -#endif - -#if MESA_DUMP /* lijia add, 新增参数g, k, o, P */ -#define SHORTOPTS "aAb" B_FLAG "c:C:d" D_FLAG "eE:fF:gG:hHi:" I_FLAG j_FLAG J_FLAG "k:KlLm:M:nNo:OP:pq" Q_FLAG "r:s:StT:u" U_FLAG "vV:w:W:xXy:Yz:Z:#" -#else -#define SHORTOPTS "aAb" B_FLAG "c:C:d" D_FLAG "eE:fF:G:hHi:" I_FLAG j_FLAG J_FLAG "KlLm:M:nNOpq" Q_FLAG "r:s:StT:u" U_FLAG "vV:w:W:xXy:Yz:Z:#" -#endif - -/* - * Long options. - * - * We do not currently have long options corresponding to all short - * options; we should probably pick appropriate option names for them. - * - * However, the short options where the number of times the option is - * specified matters, such as -v and -d and -t, should probably not - * just map to a long option, as saying - * - * tcpdump --verbose --verbose - * - * doesn't make sense; it should be --verbosity={N} or something such - * as that. - * - * For long options with no corresponding short options, we define values - * outside the range of ASCII graphic characters, make that the last - * component of the entry for the long option, and have a case for that - * option in the switch statement. - */ -#define OPTION_VERSION 128 -#define OPTION_TSTAMP_PRECISION 129 -#define OPTION_IMMEDIATE_MODE 130 - -#if MESA_DUMP -#define OPTION_VLAN_AS_MAC_IN_MAC 131 /* 短参数不够用了, 增加长参数 */ -#endif - -static const struct option longopts[] = { -#if defined(HAVE_PCAP_CREATE) || defined(_WIN32) - { "buffer-size", required_argument, NULL, 'B' }, -#endif - { "list-interfaces", no_argument, NULL, 'D' }, - { "help", no_argument, NULL, 'h' }, - { "interface", required_argument, NULL, 'i' }, -#ifdef HAVE_PCAP_CREATE - { "monitor-mode", no_argument, NULL, 'I' }, -#endif -#ifdef HAVE_PCAP_SET_TSTAMP_TYPE - { "time-stamp-type", required_argument, NULL, 'j' }, - { "list-time-stamp-types", no_argument, NULL, 'J' }, -#endif -#ifdef HAVE_PCAP_SET_TSTAMP_PRECISION - { "time-stamp-precision", required_argument, NULL, OPTION_TSTAMP_PRECISION}, -#endif - { "dont-verify-checksums", no_argument, NULL, 'K' }, - { "list-data-link-types", no_argument, NULL, 'L' }, - { "no-optimize", no_argument, NULL, 'O' }, - { "no-promiscuous-mode", no_argument, NULL, 'p' }, -#ifdef HAVE_PCAP_SETDIRECTION - { "direction", required_argument, NULL, 'Q' }, -#endif - { "snapshot-length", required_argument, NULL, 's' }, - { "absolute-tcp-sequence-numbers", no_argument, NULL, 'S' }, -#ifdef HAVE_PCAP_DUMP_FLUSH - { "packet-buffered", no_argument, NULL, 'U' }, -#endif - { "linktype", required_argument, NULL, 'y' }, -#ifdef HAVE_PCAP_SET_IMMEDIATE_MODE - { "immediate-mode", no_argument, NULL, OPTION_IMMEDIATE_MODE }, -#endif -#ifdef HAVE_PCAP_SET_PARSER_DEBUG - { "debug-filter-parser", no_argument, NULL, 'Y' }, -#endif - { "relinquish-privileges", required_argument, NULL, 'Z' }, - { "number", no_argument, NULL, '#' }, - { "version", no_argument, NULL, OPTION_VERSION }, -#if MESA_DUMP - { "vlan-as-mac-in-mac", no_argument, NULL, OPTION_VLAN_AS_MAC_IN_MAC }, -#endif - { NULL, 0, NULL, 0 } -}; - -#ifndef _WIN32 -/* Drop root privileges and chroot if necessary */ -static void -droproot(const char *username, const char *chroot_dir) -{ - struct passwd *pw = NULL; - - if (chroot_dir && !username) { - fprintf(stderr, "%s: Chroot without dropping root is insecure\n", - program_name); - exit(1); - } - - pw = getpwnam(username); - if (pw) { - if (chroot_dir) { - if (chroot(chroot_dir) != 0 || chdir ("/") != 0) { - fprintf(stderr, "%s: Couldn't chroot/chdir to '%.64s': %s\n", - program_name, chroot_dir, pcap_strerror(errno)); - exit(1); - } - } -#ifdef HAVE_LIBCAP_NG - { - int ret = capng_change_id(pw->pw_uid, pw->pw_gid, CAPNG_NO_FLAG); - if (ret < 0) { - fprintf(stderr, "error : ret %d\n", ret); - } else { - fprintf(stderr, "dropped privs to %s\n", username); - } - } -#else - if (initgroups(pw->pw_name, pw->pw_gid) != 0 || - setgid(pw->pw_gid) != 0 || setuid(pw->pw_uid) != 0) { - fprintf(stderr, "%s: Couldn't change to '%.32s' uid=%lu gid=%lu: %s\n", - program_name, username, - (unsigned long)pw->pw_uid, - (unsigned long)pw->pw_gid, - pcap_strerror(errno)); - exit(1); - } - else { - fprintf(stderr, "dropped privs to %s\n", username); - } -#endif /* HAVE_LIBCAP_NG */ - } - else { - fprintf(stderr, "%s: Couldn't find user '%.32s'\n", - program_name, username); - exit(1); - } -#ifdef HAVE_LIBCAP_NG - /* We don't need CAP_SETUID and CAP_SETGID any more. */ - capng_updatev( - CAPNG_DROP, - CAPNG_EFFECTIVE | CAPNG_PERMITTED, - CAP_SETUID, - CAP_SETGID, - -1); - capng_apply(CAPNG_SELECT_BOTH); -#endif /* HAVE_LIBCAP_NG */ - -} -#endif /* _WIN32 */ - -static int -getWflagChars(int x) -{ - int c = 0; - - x -= 1; - while (x > 0) { - c += 1; - x /= 10; - } - - return c; -} - - -static void -MakeFilename(char *buffer, char *orig_name, int cnt, int max_chars) -{ - char *filename = malloc(PATH_MAX + 1); - if (filename == NULL) - error("Makefilename: malloc"); - - /* Process with strftime if Gflag is set. */ - if (Gflag != 0) { - struct tm *local_tm; - - /* Convert Gflag_time to a usable format */ - if ((local_tm = localtime(&Gflag_time)) == NULL) { - error("MakeTimedFilename: localtime"); - } - - /* There's no good way to detect an error in strftime since a return - * value of 0 isn't necessarily failure. - */ - strftime(filename, PATH_MAX, orig_name, local_tm); - } else { - strncpy(filename, orig_name, PATH_MAX); - } - - if (cnt == 0 && max_chars == 0) - strncpy(buffer, filename, PATH_MAX + 1); - else - if (snprintf(buffer, PATH_MAX + 1, "%s%0*d", filename, max_chars, cnt) > PATH_MAX) - /* Report an error if the filename is too large */ - error("too many output files or filename is too long (> %d)", PATH_MAX); - free(filename); -} - -static char * -get_next_file(FILE *VFile, char *ptr) -{ - char *ret; - - ret = fgets(ptr, PATH_MAX, VFile); - if (!ret) - return NULL; - - if (ptr[strlen(ptr) - 1] == '\n') - ptr[strlen(ptr) - 1] = '\0'; - - return ret; -} - -#ifdef HAVE_PCAP_SET_TSTAMP_PRECISION -static int -tstamp_precision_from_string(const char *precision) -{ - if (strncmp(precision, "nano", strlen("nano")) == 0) - return PCAP_TSTAMP_PRECISION_NANO; - - if (strncmp(precision, "micro", strlen("micro")) == 0) - return PCAP_TSTAMP_PRECISION_MICRO; - - return -EINVAL; -} - -static const char * -tstamp_precision_to_string(int precision) -{ - switch (precision) { - - case PCAP_TSTAMP_PRECISION_MICRO: - return "micro"; - - case PCAP_TSTAMP_PRECISION_NANO: - return "nano"; - - default: - return "unknown"; - } -} -#endif - -#ifdef HAVE_CAPSICUM -/* - * Ensure that, on a dump file's descriptor, we have all the rights - * necessary to make the standard I/O library work with an fdopen()ed - * FILE * from that descriptor. - * - * A long time ago, in a galaxy far far away, AT&T decided that, instead - * of providing separate APIs for getting and setting the FD_ flags on a - * descriptor, getting and setting the O_ flags on a descriptor, and - * locking files, they'd throw them all into a kitchen-sink fcntl() call - * along the lines of ioctl(), the fact that ioctl() operations are - * largely specific to particular character devices but fcntl() operations - * are either generic to all descriptors or generic to all descriptors for - * regular files nonwithstanding. - * - * The Capsicum people decided that fine-grained control of descriptor - * operations was required, so that you need to grant permission for - * reading, writing, seeking, and fcntl-ing. The latter, courtesy of - * AT&T's decision, means that "fcntl-ing" isn't a thing, but a motley - * collection of things, so there are *individual* fcntls for which - * permission needs to be granted. - * - * The FreeBSD standard I/O people implemented some optimizations that - * requires that the standard I/O routines be able to determine whether - * the descriptor for the FILE * is open append-only or not; as that - * descriptor could have come from an open() rather than an fopen(), - * that requires that it be able to do an F_GETFL fcntl() to read - * the O_ flags. - * - * Tcpdump uses ftell() to determine how much data has been written - * to a file in order to, when used with -C, determine when it's time - * to rotate capture files. ftell() therefore needs to do an lseek() - * to find out the file offset and must, thanks to the aforementioned - * optimization, also know whether the descriptor is open append-only - * or not. - * - * The net result of all the above is that we need to grant CAP_SEEK, - * CAP_WRITE, and CAP_FCNTL with the CAP_FCNTL_GETFL subcapability. - * - * Perhaps this is the universe's way of saying that either - * - * 1) there needs to be an fopenat() call and a pcap_dump_openat() call - * using it, so that Capsicum-capable tcpdump wouldn't need to do - * an fdopen() - * - * or - * - * 2) there needs to be a cap_fdopen() call in the FreeBSD standard - * I/O library that knows what rights are needed by the standard - * I/O library, based on the open mode, and assigns them, perhaps - * with an additional argument indicating, for example, whether - * seeking should be allowed, so that tcpdump doesn't need to know - * what the standard I/O library happens to require this week. - */ -static void -set_dumper_capsicum_rights(pcap_dumper_t *p) -{ - int fd = fileno(pcap_dump_file(p)); - cap_rights_t rights; - - cap_rights_init(&rights, CAP_SEEK, CAP_WRITE, CAP_FCNTL); - if (cap_rights_limit(fd, &rights) < 0 && errno != ENOSYS) { - error("unable to limit dump descriptor"); - } - if (cap_fcntls_limit(fd, CAP_FCNTL_GETFL) < 0 && errno != ENOSYS) { - error("unable to limit dump descriptor fcntls"); - } -} -#endif - -#if MESA_DUMP -#include "mesa_net.h" -#include "stream_base.h" -static int MESA_dump_seek_to_inner(char *pkt_buf, int pktlen) -{ - struct mesa_ethernet_hdr *ehdr = (struct mesa_ethernet_hdr *)pkt_buf; - char *first_ip_layer = NULL; - struct mesa_ip4_hdr *ip4hdr_greedy; - struct mesa_ip6_hdr *ip6hdr_greedy; - int bpf_match_pkt_len = -1; - int bpf_match_ipv4 = 0, bpf_match_ipv6 = 0; - - if(ETHERTYPE_IP == ntohs(ehdr->ether_type)){ - first_ip_layer = pkt_buf + sizeof(struct mesa_ethernet_hdr); - }else if(ETHERTYPE_IPv6 == ntohs(ehdr->ether_type)){ - first_ip_layer = pkt_buf + sizeof(struct mesa_ethernet_hdr); - }else{ - first_ip_layer = NULL; - } - - ip4hdr_greedy = (struct mesa_ip4_hdr *)MESA_net_jump_to_layer_greedy(pkt_buf, ADDR_TYPE_MAC, __ADDR_TYPE_IP_PAIR_V4); - if(ip4hdr_greedy){ - if((char *)ip4hdr_greedy == first_ip_layer){ - bpf_match_pkt_len = pktlen; /* 最内层和第一层IP一样, 说明是非常标准的ethernet->IPv4包, 且无隧道, 无需memmove操作 */ - }else{ - if(pktlen - ((char *)ip4hdr_greedy - pkt_buf) > 0) - { - memmove(pkt_buf + sizeof(struct mesa_ethernet_hdr), - ip4hdr_greedy, - pktlen - ((char *)ip4hdr_greedy - pkt_buf)); - bpf_match_pkt_len = pktlen - ((char *)ip4hdr_greedy - pkt_buf) + sizeof(struct mesa_ethernet_hdr); - ehdr->ether_type = htons(ETHERTYPE_IP); /* 第一层可能不是IPV4, 比如MPLS, VLAN等, 需要改成IP, 以便bpf过滤器能正确执行 */ - } - } - - if(bpf_match_pkt_len <= 0){ - return -1; - } - - /* 如果有正确的过滤条件, 不设采样率, 保证捕包尽量全, 符合调用者意图; - 如果没有过滤条件, 即全捕包模式, 为了尽量不影响包处理线程, 根据采样率只捕一部分包. - */ - - bpf_match_ipv4 = 1; - }else{ - bpf_match_ipv4 = 0; - } - - ip6hdr_greedy = (struct mesa_ip6_hdr *)MESA_net_jump_to_layer_greedy(pkt_buf, ADDR_TYPE_MAC, __ADDR_TYPE_IP_PAIR_V6); - if(ip6hdr_greedy){ - if((char *)ip6hdr_greedy == first_ip_layer){ - bpf_match_pkt_len = pktlen; /* 最内层和第一层IP一样, 说明是非常标准的ethernet->IPv6包, 且无隧道, 无需memmove操作 */ - }else{ - if(pktlen - ((char *)ip6hdr_greedy - pkt_buf) > 0) - { - memmove(pkt_buf + sizeof(struct mesa_ethernet_hdr), - ip6hdr_greedy, - pktlen - ((char *)ip6hdr_greedy - pkt_buf)); - bpf_match_pkt_len = pktlen - ((char *)ip6hdr_greedy - pkt_buf) + sizeof(struct mesa_ethernet_hdr); - ehdr->ether_type = htons(ETHERTYPE_IPv6); /* 第一层可能不是IPV6, 比如MPLS, VLAN等,需要改成IP,以便bpf过滤器能正确执行 */ - } - } - - if(bpf_match_pkt_len <= 0){ - ///sapp_runtime_log(20, "cycle_pkt_dump_seek_to_inner_ip() length error!\n"); - return -1; - } - - - /* 如果有正确的过滤条件, 不设采样率, 保证捕包尽量全, 符合调用者意图; - 如果没有过滤条件, 即全捕包模式, 为了尽量不影响包处理线程, 根据采样率只捕一部分包. - */ - bpf_match_ipv6 = 1; - }else{ - bpf_match_ipv6 = 0; - } - - if(bpf_match_ipv4 || bpf_match_ipv6){ - return bpf_match_pkt_len; /* 任意头部命中即可输出 */ - } - - return -1; -} - - -/* 可支持多个线程, 用逗号分隔"1,3,5,7" */ -static int MESA_dump_thread_index_convert(const char *raw_index_str) -{ - char *index_str = strdup(raw_index_str); - const char *delim = ","; - char *save_ptr, *section; - int index = 0; - - if(NULL == memchr(index_str, ',', strlen(raw_index_str))){ /* 无逗号分隔, 仅有一个, 无多线程 */ - tcpdump_thread_index_array[0] = atoi(raw_index_str); - if(tcpdump_thread_index_array[0] >= 64){ - goto err; - } - - tcpdump_thread_index_array_num = 1; - return 0; - } - - section = strtok_r(index_str, delim, &save_ptr); - if(section){ - tcpdump_thread_index_array[index] = atoi(section); - if(tcpdump_thread_index_array[index] >= 64){ - goto err; - } - index++; - } - - while((section = strtok_r(NULL, delim, &save_ptr))){ - tcpdump_thread_index_array[index] = atoi(section); - if(tcpdump_thread_index_array[index] >= 64){ - goto err; - } - index++; - } - - tcpdump_thread_index_array_num = index; - - free(index_str); - return 0; - -err: - free(index_str); - return -1; -} - - -static int pkt_dump_recv_ack(int connfd) -{ - char send_buf[128]; - struct pkt_dump_handshake *pkt_hdr; - struct pkt_dump_opt *ack_opt; - void *ptr = &send_buf[0]; - int need_len = sizeof(struct pkt_dump_handshake)+sizeof(struct pkt_dump_opt); - int ret; - - printf("Wait for server ACK, if another tcpdump_mesa is running, maybe wait for a long time......\n"); - - while(need_len > 0){ - ret = read(connfd, ptr, need_len); - if(ret <= 0){ - return -1; - } - need_len -= ret; - ptr += ret; - } - - pkt_hdr = (struct pkt_dump_handshake *)&send_buf[0]; - ack_opt = (struct pkt_dump_opt *)(send_buf + sizeof(struct pkt_dump_handshake)); - - if(pkt_hdr->magic != htonl(PKT_DUMP_HDR_MAGIC)){ - printf("recv ack magic error!\n"); - return -1; - } - if(pkt_hdr->version != htonl(20180119)){ - printf("recv ack version error!\n"); - return -1; - } - if(pkt_hdr->opt_num != htonl(1)){ - printf("recv ack opt_num error!\n"); - return -1; - } - - if(ack_opt->opt_type != htons(PKT_DUMP_OPT_ACK)){ - printf("recv ack opt_type error!\n"); - return -1; - } - - printf("Recv server ACK success, starting packet dump.....\n"); - - return 0; -} - -#include -/* - 此线程用于监测sapp的控制连接是否存活, 如果sapp退出了, - tcpdump_mesa也应该退出. -*/ -static void *detect_sapp_alive_thread(void *arg) -{ - int tcp_cmd_fd = (int)(long)arg; - int ret; - char nouse_buf[1500]; - - while(1){ - ret = read(tcp_cmd_fd, nouse_buf, 1500); - if(0 == ret){ - printf("\033[33m[INFO]sapp is not running, tcpdump_mesa exit!\033[0m\n"); - exit(1); - } - } - - return NULL; -} - -static int MESA_dump_start(unsigned short udp_rcv_port, unsigned short sapp_cmd_port, char *filter) -{ - int tcp_cmd_fd = -1; - int ret; - unsigned short filter_len = 0; - struct sockaddr_in sockadd; - struct pkt_dump_handshake pkt_hdr; - unsigned int opt_num = 1; /* 本端接收端口为必选项 */ - struct pkt_dump_opt opt; - pthread_t pid; - - tcp_cmd_fd = socket(AF_INET, SOCK_STREAM, 0); - - bzero(&sockadd, sizeof(sockadd)); - sockadd.sin_family = AF_INET; - sockadd.sin_addr.s_addr = htonl(0x7f000001); - sockadd.sin_port = htons(sapp_cmd_port); - - ret = connect(tcp_cmd_fd, (const struct sockaddr *)&sockadd, sizeof(sockadd)); - if(ret < 0){ - printf("tcpdump-mesa connect error, %s\n", strerror(errno)); - return -1; - } - - if(filter != NULL){ - opt_num++; - } - - if(tcpdump_data_offset != 0){ - opt_num++; - } - - if(tcpdump_thread_index_array_num > 0){ - opt_num++; - } - - if(tcpdump_perceptive_flag != 0){ - if(NULL == filter){ - printf("In perceptive mode must assign packet filter rule!\n"); - exit(1); - } - opt_num++; - } - - if(greedy_seek_flag != 0){ - if(tcpdump_data_offset != 0){ - printf("option -o and -g is exclusive, can't use at same time!\n"); - exit(1); - } - opt_num++; - } - - /************** pkt handshake *************/ - pkt_hdr.magic = htonl(PKT_DUMP_HDR_MAGIC); - pkt_hdr.version = htonl(20180119); /* 之前sapp对20180119版本做了严格校验, 此处向后兼容, 先固定用此值, 以后更新sapp后, 不再校验版本 */ - pkt_hdr.opt_num = htonl(opt_num); - ret = write(tcp_cmd_fd, &pkt_hdr, sizeof(pkt_hdr)); - if(ret < 0){ - printf("connection down!\n"); - exit(1); - } - - /************** recv port *************/ - opt.opt_type = htons(PKT_DUMP_OPT_RCV_PORT); - opt.opt_len = htons(sizeof(short)); - ret = write(tcp_cmd_fd, &opt, sizeof(opt)); - if(ret < 0){ - printf("connection down!\n"); - exit(1); - } - udp_rcv_port = htons(udp_rcv_port); - ret = write(tcp_cmd_fd, &udp_rcv_port, sizeof(short)); - if(ret < 0){ - printf("connection down!\n"); - exit(1); - } - - /************** BPF filter *************/ - if(filter != NULL){ - filter_len = strlen(filter) + 1; /* add EOF */ - opt.opt_type = htons(PKT_DUMP_OPT_BPF_FILTER); - opt.opt_len = htons(filter_len); - ret = write(tcp_cmd_fd, &opt, sizeof(opt)); - if(ret < 0){ - printf("connection down!\n"); - exit(1); - } - ret = write(tcp_cmd_fd, filter, filter_len); - if(ret < 0){ - printf("connection down!\n"); - exit(1); - } - } - - /************** data offset *************/ - if(tcpdump_data_offset != 0){ - unsigned short t = tcpdump_data_offset; - opt.opt_type = htons(PKT_DUMP_OPT_DATA_OFFSET); - opt.opt_len = htons(sizeof(short)); - ret = write(tcp_cmd_fd, &opt, sizeof(opt)); - if(ret < 0){ - printf("connection down!\n"); - exit(1); - } - t = htons(t); - ret = write(tcp_cmd_fd, &t, sizeof(short)); - if(ret < 0){ - printf("connection down!\n"); - exit(1); - } - } - - /************ thread index ************/ - if(tcpdump_thread_index_array_num > 0){ - opt.opt_type = htons(PKT_DUMP_OPT_THREAD_INDEX); - opt.opt_len = htons(sizeof(char) * tcpdump_thread_index_array_num); - ret = write(tcp_cmd_fd, &opt, sizeof(opt)); - if(ret < 0){ - printf("connection down!\n"); - exit(1); - } - ret = write(tcp_cmd_fd, tcpdump_thread_index_array, sizeof(char) * tcpdump_thread_index_array_num); - if(ret < 0){ - printf("connection down!\n"); - exit(1); - } - } - - if(tcpdump_perceptive_flag != 0){ - opt.opt_type = htons(PKT_DUMP_OPT_PERCEPTIVE); - opt.opt_len = 0; - ret = write(tcp_cmd_fd, &opt, sizeof(opt)); - if(ret < 0){ - printf("connection down!\n"); - exit(1); - } - } - - /************** greedy seek *************/ - if(greedy_seek_flag != 0){ - opt.opt_type = htons(PKT_DUMP_OPT_GREEDY_SEEK); - opt.opt_len = 0; - ret = write(tcp_cmd_fd, &opt, sizeof(opt)); - if(ret < 0){ - printf("connection down!\n"); - exit(1); - } - } - - /********** after send opt, start recv sapp ACK *******/ - if(pkt_dump_recv_ack(tcp_cmd_fd) < 0){ - printf("connection down!\n"); - exit(1); - } - - pthread_create(&pid, NULL, detect_sapp_alive_thread, (void *)(long)tcp_cmd_fd); - - return tcp_cmd_fd; -} - -static int actual_rcv_pkt_num = 0; - -static void pkt_dump_signal_cb(int signo) -{ - if((SIGTERM == signo) || (SIGINT == signo)){ - sync(); - exit(0); - }else{ - ;/* do nothing */ - } - - return; -} - -/* 虚假丢包显示告警信息包 */ -static const char _perceptive_pkt_data[] = -{ - - 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, /* DMAC */ - 0x00, 0x00, 0x4C, 0x4F, 0x53, 0x54, /* SMAC */ - 0x08, 0x00, /* type */ - 0x45, 0x00, /* ...c..E. */ - 0x00, 0x41, 0xff, 0xff, 0x00, 0x00, 0xff, 0x06, /* .A...... */ - 0xbb, 0xb7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* ........ */ - 0xff, 0xff, 0x00, 0x50, 0x00, 0x50, 0x00, 0x00, /* ...P.P.. */ - 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x50, 0x18, /* ......P. */ - 0x00, 0x01, 0x3e, 0x81, 0x00, 0x00, 0x48, 0x54, /* ..>...HT */ - 0x54, 0x50, 0x2f, 0x31, 0x2e, 0x31, 0x20, 0x34, /* TP/1.1 4 */ - 0x30, 0x34, 0x20, 0x4c, 0x6f, 0x73, 0x73, 0x20, /* 04 Loss */ - 0x50, 0x61, 0x63, 0x6b, 0x65, 0x74, 0x0a /* Packet. */ -}; - -static struct pcap_pkthdr perceptive_pcap_hdr; - -static void _build_perceptive_pkt(pcap_handler callback, u_char *pcap_userdata, int loss_pkt_num) -{ -#define PKT_PERCEPTIVE_STRING "HTTP/1.1 404 Loss Packet" - int i; - - for(i = 0; i < loss_pkt_num; i++){ - perceptive_pcap_hdr.len = 79; - perceptive_pcap_hdr.caplen = 79; - gettimeofday(&perceptive_pcap_hdr.ts, NULL); - callback(pcap_userdata, &perceptive_pcap_hdr, _perceptive_pkt_data); /* 刷屏模式调用print_packet(); 捕包模式调用: dump_packet() */ - } -} - -/* - 从sapp捕包, 而非标准tcpdump从网卡捕包. -*/ -static void MESA_dump(pcap_handler callback, u_char *pcap_userdata, char *filter, - int tot_pkt, unsigned short sapp_cmd_port ) -{ - unsigned short udp_default_port = 12345; - int opt, pkt_len, inner_pkt_len; - unsigned char pkt_buf[65536]; - struct pcap_pkthdr phony_pcap_hdr; - int udp_rcv_fd = -1; - int tcp_cmd_fd = -1; - struct sockaddr_in sockadd; - const struct perceptive_info *pperceptive; - unsigned int cur_pkt_seq; - - signal(SIGPIPE, SIG_IGN); - signal(SIGINT, pkt_dump_signal_cb); - signal(SIGTERM, pkt_dump_signal_cb); - - if(NULL == filter){ - printf("\033[33m[Warning]tcpdump_mesa without BPF filter, maybe cause packet loss! So, capture in sampling mode!\033[0m\n"); - } - - bzero(&sockadd, sizeof(sockadd)); - sockadd.sin_family = AF_INET; - sockadd.sin_addr.s_addr = htonl(INADDR_ANY); - sockadd.sin_port = htons(udp_default_port); - - udp_rcv_fd = socket(AF_INET, SOCK_DGRAM, 0); - -/* UDP不能开启SO_REUSEADDR, 否则多个进程能同时监听一个端口. - opt = 1; - setsockopt(udp_rcv_fd, SOL_SOCKET, SO_REUSEADDR, &opt, sizeof(int)); -*/ - - /* 从udp_default_port开始, 选择后续第一个可用端口, 防止因端口被其他应用占用而无法启动 */ - while(bind(udp_rcv_fd, (struct sockaddr *) &sockadd, sizeof(sockadd)) < 0){ - usleep(1000); - udp_default_port++; - sockadd.sin_port = htons(udp_default_port); - } - - tcp_cmd_fd = MESA_dump_start(udp_default_port, sapp_cmd_port, filter); - if(tcp_cmd_fd < 0){ - goto done; - } - - pperceptive = (const struct perceptive_info *)&pkt_buf[6]; /* 存于源mac地址 */ - - while((-1 == tot_pkt) || (actual_rcv_pkt_num < tot_pkt)){ - pkt_len = recv(udp_rcv_fd, pkt_buf, 65536, 0); - if(pkt_len > 0){ - if(tcpdump_perceptive_flag > 0){ - cur_pkt_seq = ntohl(pperceptive->pkt_seq); - if(perceptive_pkt_seq[pperceptive->thread_id] + 1 != cur_pkt_seq){ - _build_perceptive_pkt(callback, pcap_userdata, cur_pkt_seq - perceptive_pkt_seq[pperceptive->thread_id] - 1); - } - perceptive_pkt_seq[pperceptive->thread_id] = cur_pkt_seq; - } - - /* 如果有-g参数, 且写了-w, 即需要保存原始包到文件, 则不进行seek操作, - 只是在没有-w 参数时, 让tcpdump能打印出包的信息, 才进行seek操作. - */ - #if 0 - if((greedy_seek_flag != 0) && (dump_to_file_flag == 0)){ - inner_pkt_len = MESA_dump_seek_to_inner(pkt_buf, pkt_len); - if(inner_pkt_len < 0){ - continue; - } - phony_pcap_hdr.caplen = inner_pkt_len; - phony_pcap_hdr.len = inner_pkt_len; - }else{ - phony_pcap_hdr.caplen = pkt_len; - phony_pcap_hdr.len = pkt_len; - } - #else - phony_pcap_hdr.caplen = pkt_len; - phony_pcap_hdr.len = pkt_len; - #endif - gettimeofday(&phony_pcap_hdr.ts, NULL); - - callback(pcap_userdata, &phony_pcap_hdr, pkt_buf); /* NOTE: 刷屏模式调用print_packet(); 捕包模式调用: dump_packet() */ - actual_rcv_pkt_num++; - } - } - -done: - if(tcp_cmd_fd > 0){ - close(tcp_cmd_fd); - } - if(udp_rcv_fd > 0){ - close(udp_rcv_fd); - } - - exit(1); - - return; -} -#endif - -static struct bpf_program fcode; /* lijia modify, 做为全局变量, 其他函数中调用 */ -int -main(int argc, char **argv) -{ - register int cnt, op, i; - bpf_u_int32 localnet =0 , netmask = 0; - int timezone_offset = 0; - register char *cp, *infile, *cmdbuf, *device, *RFileName, *VFileName, *WFileName; - pcap_handler callback; - int dlt; - const char *dlt_name; - -#ifndef _WIN32 - RETSIGTYPE (*oldhandler)(int); -#endif - struct dump_info dumpinfo; - u_char *pcap_userdata; - char ebuf[PCAP_ERRBUF_SIZE]; - char VFileLine[PATH_MAX + 1]; - char *username = NULL; - char *chroot_dir = NULL; - char *ret = NULL; - char *end; -#ifdef HAVE_PCAP_FINDALLDEVS - pcap_if_t *dev, *devlist; - int devnum; -#endif - int status; - FILE *VFile; -#ifdef HAVE_CAPSICUM - cap_rights_t rights; - int cansandbox; -#endif /* HAVE_CAPSICUM */ - int Bflag = 0; /* buffer size */ - int jflag = -1; /* packet time stamp source */ - int Oflag = 1; /* run filter code optimizer */ - int pflag = 0; /* don't go promiscuous */ - int yflag_dlt = -1; - const char *yflag_dlt_name = NULL; - - netdissect_options Ndo; - netdissect_options *ndo = &Ndo; - int immediate_mode = 0; - - memset(ndo, 0, sizeof(*ndo)); - ndo_set_function_pointers(ndo); - ndo->ndo_snaplen = DEFAULT_SNAPLEN; - - cnt = -1; - device = NULL; - infile = NULL; - RFileName = NULL; - VFileName = NULL; - VFile = NULL; - WFileName = NULL; - dlt = -1; - -#if MESA_DUMP - unsigned short sapp_cmd_port = 12345; - for(i = 0; i < 64; i++){ - tcpdump_thread_index_array[i] = 255; - } -#endif - - if ((cp = strrchr(argv[0], '/')) != NULL) - ndo->program_name = program_name = cp + 1; - else - ndo->program_name = program_name = argv[0]; - -#ifdef _WIN32 - if (pcap_wsockinit() != 0) - error("Attempting to initialize Winsock failed"); -#endif /* _WIN32 */ - - /* - * On platforms where the CPU doesn't support unaligned loads, - * force unaligned accesses to abort with SIGBUS, rather than - * being fixed up (slowly) by the OS kernel; on those platforms, - * misaligned accesses are bugs, and we want tcpdump to crash so - * that the bugs are reported. - */ - if (abort_on_misalignment(ebuf, sizeof(ebuf)) < 0) - error("%s", ebuf); - -#ifdef USE_LIBSMI - smiInit("tcpdump"); -#endif - - while ( - (op = getopt_long(argc, argv, SHORTOPTS, longopts, NULL)) != -1) - switch (op) { - - case 'a': - /* compatibility for old -a */ -#if MESA_DUMP - /* liji add, for perceptive, 让tcpdump_mesa能感知丢包的情况, - - 使用此参数后, 必须指定过滤条件, - sapp接收到此命令选项后, 先将原始包copy到临时缓冲区, - 然后将每个线程的包统计计数记录到源MAC地址中发送过来, - - tcpdump_mesa依次检查每个线程的计数, 如果不连续, 说明中间丢包了, - 为了让捕包者能看到这个情况, - 每丢一个包, 凭空造一个虚假数据包出来, - 这样在wireshark上可以看到某个阶段是否有丢包, 丢了几个包, 当然看不到丢的是什么. - */ - tcpdump_perceptive_flag = 1; -#endif - break; - - case 'A': - ++ndo->ndo_Aflag; - break; - - case 'b': - ++ndo->ndo_bflag; - break; - -#if defined(HAVE_PCAP_CREATE) || defined(_WIN32) - case 'B': - Bflag = atoi(optarg)*1024; - if (Bflag <= 0) - error("invalid packet buffer size %s", optarg); - break; -#endif /* defined(HAVE_PCAP_CREATE) || defined(_WIN32) */ - - case 'c': - cnt = atoi(optarg); - if (cnt <= 0) - error("invalid packet count %s", optarg); - break; - - case 'C': - Cflag = atoi(optarg) * 1000000; - if (Cflag <= 0) - error("invalid file size %s", optarg); - break; - - case 'd': - ++dflag; - break; - - case 'D': - Dflag++; - break; - - case 'e': - ++ndo->ndo_eflag; - break; - - case 'E': -#ifndef HAVE_LIBCRYPTO - warning("crypto code not compiled in"); -#endif - ndo->ndo_espsecret = optarg; - break; - - case 'f': - ++ndo->ndo_fflag; - break; - - case 'F': - infile = optarg; - break; - -#if MESA_DUMP - case 'g': - greedy_seek_flag = 1; - break; -#endif - - - case 'G': - Gflag = atoi(optarg); - if (Gflag < 0) - error("invalid number of seconds %s", optarg); - - /* We will create one file initially. */ - Gflag_count = 0; - - /* Grab the current time for rotation use. */ - if ((Gflag_time = time(NULL)) == (time_t)-1) { - error("main: can't get current time: %s", - pcap_strerror(errno)); - } - break; - - case 'h': - print_usage(); - exit(0); - break; - - case 'H': - ++ndo->ndo_Hflag; - break; - - case 'i': - if (optarg[0] == '0' && optarg[1] == 0) - error("Invalid adapter index"); - -#ifdef HAVE_PCAP_FINDALLDEVS - /* - * If the argument is a number, treat it as - * an index into the list of adapters, as - * printed by "tcpdump -D". - * - * This should be OK on UNIX systems, as interfaces - * shouldn't have names that begin with digits. - * It can be useful on Windows, where more than - * one interface can have the same name. - */ - devnum = strtol(optarg, &end, 10); - if (optarg != end && *end == '\0') { - if (devnum < 0) - error("Invalid adapter index"); - - if (pcap_findalldevs(&devlist, ebuf) < 0) - error("%s", ebuf); - /* - * Look for the devnum-th entry in the - * list of devices (1-based). - */ - for (i = 0, dev = devlist; - i < devnum-1 && dev != NULL; - i++, dev = dev->next) - ; - if (dev == NULL) - error("Invalid adapter index"); - device = strdup(dev->name); - pcap_freealldevs(devlist); - break; - } -#endif /* HAVE_PCAP_FINDALLDEVS */ - device = optarg; -#if MESA_DUMP - has_device_flag = 1; -#endif - break; - -#ifdef HAVE_PCAP_CREATE - case 'I': - ++Iflag; - break; -#endif /* HAVE_PCAP_CREATE */ - -#ifdef HAVE_PCAP_SET_TSTAMP_TYPE - case 'j': - jflag = pcap_tstamp_type_name_to_val(optarg); - if (jflag < 0) - error("invalid time stamp type %s", optarg); - break; - - case 'J': - Jflag++; - break; -#endif - -#if MESA_DUMP - case 'k': - tcpdump_thread_index_str = optarg; - if(MESA_dump_thread_index_convert(tcpdump_thread_index_str) < 0){ - printf("thread index invalid: %s\n", optarg); - exit(1); - } - break; -#endif - - case 'K': - ++ndo->ndo_Kflag; - break; - - - case 'l': -#ifdef _WIN32 - /* - * _IOLBF is the same as _IOFBF in Microsoft's C - * libraries; the only alternative they offer - * is _IONBF. - * - * XXX - this should really be checking for MSVC++, - * not _WIN32, if, for example, MinGW has its own - * C library that is more UNIX-compatible. - */ - setvbuf(stdout, NULL, _IONBF, 0); -#else /* _WIN32 */ -#ifdef HAVE_SETLINEBUF - setlinebuf(stdout); -#else - setvbuf(stdout, NULL, _IOLBF, 0); -#endif -#endif /* _WIN32 */ - break; - - case 'L': - Lflag++; - break; - - case 'm': -#ifdef USE_LIBSMI - if (smiLoadModule(optarg) == 0) { - error("could not load MIB module %s", optarg); - } - ndo->ndo_mflag = 1; -#else - (void)fprintf(stderr, "%s: ignoring option `-m %s' ", - program_name, optarg); - (void)fprintf(stderr, "(no libsmi support)\n"); -#endif - break; - - case 'M': - /* TCP-MD5 shared secret */ -#ifndef HAVE_LIBCRYPTO - warning("crypto code not compiled in"); -#endif - ndo->ndo_sigsecret = optarg; - break; - - case 'n': - ++ndo->ndo_nflag; - break; - - case 'N': - ++ndo->ndo_Nflag; - break; - -#if MESA_DUMP - case 'o': /* vxlan偏移量, 跳过中间某些字节 */ - tcpdump_data_offset = atoi(optarg); - if(tcpdump_data_offset < 0 || tcpdump_data_offset > 1514){ - printf("args [-o offset] is invalid: %s\n", optarg); - tcpdump_data_offset = 0; - } - break; -#endif - - case 'O': - Oflag = 0; - break; - - case 'p': - ++pflag; - break; - -#if MESA_DUMP - case 'P': /* sapp命令接收端口 */ - { - int tmp_int_val = atoi(optarg); - if((tmp_int_val <= 0) || (tmp_int_val > 65535)){ - printf("port %s invalid!\n", optarg); - exit(0); - } - sapp_cmd_port = (unsigned short)tmp_int_val; - } - break; -#endif - - case 'q': - ++ndo->ndo_qflag; - ++ndo->ndo_suppress_default_print; - break; - -#ifdef HAVE_PCAP_SETDIRECTION - case 'Q': - if (ascii_strcasecmp(optarg, "in") == 0) - Qflag = PCAP_D_IN; - else if (ascii_strcasecmp(optarg, "out") == 0) - Qflag = PCAP_D_OUT; - else if (ascii_strcasecmp(optarg, "inout") == 0) - Qflag = PCAP_D_INOUT; - else - error("unknown capture direction `%s'", optarg); - break; -#endif /* HAVE_PCAP_SETDIRECTION */ - - case 'r': - RFileName = optarg; -#if MESA_DUMP - has_device_flag = 1; -#endif - break; - - case 's': - ndo->ndo_snaplen = strtol(optarg, &end, 0); - if (optarg == end || *end != '\0' - || ndo->ndo_snaplen < 0 || ndo->ndo_snaplen > MAXIMUM_SNAPLEN) - error("invalid snaplen %s", optarg); - else if (ndo->ndo_snaplen == 0) - ndo->ndo_snaplen = MAXIMUM_SNAPLEN; - break; - - case 'S': - ++ndo->ndo_Sflag; - break; - - case 't': - ++ndo->ndo_tflag; - break; - - case 'T': - if (ascii_strcasecmp(optarg, "vat") == 0) - ndo->ndo_packettype = PT_VAT; - else if (ascii_strcasecmp(optarg, "wb") == 0) - ndo->ndo_packettype = PT_WB; - else if (ascii_strcasecmp(optarg, "rpc") == 0) - ndo->ndo_packettype = PT_RPC; - else if (ascii_strcasecmp(optarg, "rtp") == 0) - ndo->ndo_packettype = PT_RTP; - else if (ascii_strcasecmp(optarg, "rtcp") == 0) - ndo->ndo_packettype = PT_RTCP; - else if (ascii_strcasecmp(optarg, "snmp") == 0) - ndo->ndo_packettype = PT_SNMP; - else if (ascii_strcasecmp(optarg, "cnfp") == 0) - ndo->ndo_packettype = PT_CNFP; - else if (ascii_strcasecmp(optarg, "tftp") == 0) - ndo->ndo_packettype = PT_TFTP; - else if (ascii_strcasecmp(optarg, "aodv") == 0) - ndo->ndo_packettype = PT_AODV; - else if (ascii_strcasecmp(optarg, "carp") == 0) - ndo->ndo_packettype = PT_CARP; - else if (ascii_strcasecmp(optarg, "radius") == 0) - ndo->ndo_packettype = PT_RADIUS; - else if (ascii_strcasecmp(optarg, "zmtp1") == 0) - ndo->ndo_packettype = PT_ZMTP1; - else if (ascii_strcasecmp(optarg, "vxlan") == 0) - ndo->ndo_packettype = PT_VXLAN; - else if (ascii_strcasecmp(optarg, "pgm") == 0) - ndo->ndo_packettype = PT_PGM; - else if (ascii_strcasecmp(optarg, "pgm_zmtp1") == 0) - ndo->ndo_packettype = PT_PGM_ZMTP1; - else if (ascii_strcasecmp(optarg, "lmp") == 0) - ndo->ndo_packettype = PT_LMP; - else if (ascii_strcasecmp(optarg, "resp") == 0) - ndo->ndo_packettype = PT_RESP; - else - error("unknown packet type `%s'", optarg); - break; - - case 'u': - ++ndo->ndo_uflag; - break; - -#ifdef HAVE_PCAP_DUMP_FLUSH - case 'U': - ++Uflag; - break; -#endif - - case 'v': - ++ndo->ndo_vflag; - break; - - case 'V': - VFileName = optarg; - break; - - case 'w': - WFileName = optarg; -#if MESA_DUMP - dump_to_file_flag = 1; -#endif - break; - - case 'W': - Wflag = atoi(optarg); - if (Wflag <= 0) - error("invalid number of output files %s", optarg); - WflagChars = getWflagChars(Wflag); - break; - - case 'x': - ++ndo->ndo_xflag; - ++ndo->ndo_suppress_default_print; - break; - - case 'X': - ++ndo->ndo_Xflag; - ++ndo->ndo_suppress_default_print; - break; - - case 'y': - yflag_dlt_name = optarg; - yflag_dlt = - pcap_datalink_name_to_val(yflag_dlt_name); - if (yflag_dlt < 0) - error("invalid data link type %s", yflag_dlt_name); - break; - -#ifdef HAVE_PCAP_SET_PARSER_DEBUG - case 'Y': - { - /* Undocumented flag */ - pcap_set_parser_debug(1); - } - break; -#endif - case 'z': - zflag = optarg; - break; - - case 'Z': - username = optarg; - break; - - case '#': - ndo->ndo_packet_number = 1; - break; - - case OPTION_VERSION: - print_version(); - exit(0); - break; - -#ifdef HAVE_PCAP_SET_TSTAMP_PRECISION - case OPTION_TSTAMP_PRECISION: - ndo->ndo_tstamp_precision = tstamp_precision_from_string(optarg); - if (ndo->ndo_tstamp_precision < 0) - error("unsupported time stamp precision"); - break; -#endif - -#ifdef HAVE_PCAP_SET_IMMEDIATE_MODE - case OPTION_IMMEDIATE_MODE: - immediate_mode = 1; - break; -#endif - -#if MESA_DUMP - case OPTION_VLAN_AS_MAC_IN_MAC: - treat_vlan_as_mac_in_mac_sw = 1; - break; -#endif - - default: - print_usage(); - exit(1); - /* NOTREACHED */ - } -/**************************** cmd line parse end *************************************/ - -#if MESA_DUMP - device = "lo"; /* tcpdump_mesa不用指定网卡名, 默认lo */ -#endif - -#ifdef HAVE_PCAP_FINDALLDEVS - if (Dflag) - show_devices_and_exit(); -#endif - - switch (ndo->ndo_tflag) { - - case 0: /* Default */ - case 4: /* Default + Date*/ - timezone_offset = gmt2local(0); - break; - - case 1: /* No time stamp */ - case 2: /* Unix timeval style */ - case 3: /* Microseconds since previous packet */ - case 5: /* Microseconds since first packet */ - break; - - default: /* Not supported */ - error("only -t, -tt, -ttt, -tttt and -ttttt are supported"); - break; - } - - if (ndo->ndo_fflag != 0 && (VFileName != NULL || RFileName != NULL)) - error("-f can not be used with -V or -r"); - - if (VFileName != NULL && RFileName != NULL) - error("-V and -r are mutually exclusive."); - -#ifdef HAVE_PCAP_SET_IMMEDIATE_MODE - /* - * If we're printing dissected packets to the standard output - * rather than saving raw packets to a file, and the standard - * output is a terminal, use immediate mode, as the user's - * probably expecting to see packets pop up immediately. - */ - if (WFileName == NULL && isatty(1)) - immediate_mode = 1; -#endif - -#ifdef WITH_CHROOT - /* if run as root, prepare for chrooting */ - if (getuid() == 0 || geteuid() == 0) { - /* future extensibility for cmd-line arguments */ - if (!chroot_dir) - chroot_dir = WITH_CHROOT; - } -#endif - -#ifdef WITH_USER - /* if run as root, prepare for dropping root privileges */ - if (getuid() == 0 || geteuid() == 0) { - /* Run with '-Z root' to restore old behaviour */ - if (!username) - username = WITH_USER; - } -#endif - - if (RFileName != NULL || VFileName != NULL) { - /* - * If RFileName is non-null, it's the pathname of a - * savefile to read. If VFileName is non-null, it's - * the pathname of a file containing a list of pathnames - * (one per line) of savefiles to read. - * - * In either case, we're reading a savefile, not doing - * a live capture. - */ -#ifndef _WIN32 - /* - * We don't need network access, so relinquish any set-UID - * or set-GID privileges we have (if any). - * - * We do *not* want set-UID privileges when opening a - * trace file, as that might let the user read other - * people's trace files (especially if we're set-UID - * root). - */ - if (setgid(getgid()) != 0 || setuid(getuid()) != 0 ) - fprintf(stderr, "Warning: setgid/setuid failed !\n"); -#endif /* _WIN32 */ - if (VFileName != NULL) { - if (VFileName[0] == '-' && VFileName[1] == '\0') - VFile = stdin; - else - VFile = fopen(VFileName, "r"); - - if (VFile == NULL) - error("Unable to open file: %s\n", pcap_strerror(errno)); - - ret = get_next_file(VFile, VFileLine); - if (!ret) - error("Nothing in %s\n", VFileName); - RFileName = VFileLine; - } - -#ifdef HAVE_PCAP_SET_TSTAMP_PRECISION - pd = pcap_open_offline_with_tstamp_precision(RFileName, - ndo->ndo_tstamp_precision, ebuf); -#else - pd = pcap_open_offline(RFileName, ebuf); -#endif - - if (pd == NULL) - error("%s", ebuf); -#ifdef HAVE_CAPSICUM - cap_rights_init(&rights, CAP_READ); - if (cap_rights_limit(fileno(pcap_file(pd)), &rights) < 0 && - errno != ENOSYS) { - error("unable to limit pcap descriptor"); - } -#endif - dlt = pcap_datalink(pd); - dlt_name = pcap_datalink_val_to_name(dlt); - if (dlt_name == NULL) { - fprintf(stderr, "reading from file %s, link-type %u\n", - RFileName, dlt); - } else { - fprintf(stderr, - "reading from file %s, link-type %s (%s)\n", - RFileName, dlt_name, - pcap_datalink_val_to_description(dlt)); - } - } else { - /* - *********************** We're doing a live capture. ************************** - */ - if (device == NULL) { -#ifdef HAVE_PCAP_FINDALLDEVS - if (pcap_findalldevs(&devlist, ebuf) >= 0 && - devlist != NULL) { - device = strdup(devlist->name); - pcap_freealldevs(devlist); - } -#else /* HAVE_PCAP_FINDALLDEVS */ - device = pcap_lookupdev(ebuf); -#endif - if (device == NULL) - error("%s", ebuf); - } -#ifdef _WIN32 - /* - * Print a message to the standard error on Windows. - * XXX - why do it here, with a different message? - */ - if(strlen(device) == 1) /* we assume that an ASCII string is always longer than 1 char */ - { /* a Unicode string has a \0 as second byte (so strlen() is 1) */ - fprintf(stderr, "%s: listening on %ws\n", program_name, device); - } - else - { - fprintf(stderr, "%s: listening on %s\n", program_name, device); - } - - fflush(stderr); -#endif /* _WIN32 */ - - -#ifdef HAVE_PCAP_CREATE - pd = pcap_create(device, ebuf); - if (pd == NULL) - error("%s", ebuf); -#ifdef HAVE_PCAP_SET_TSTAMP_TYPE - if (Jflag) - show_tstamp_types_and_exit(device); -#endif -#ifdef HAVE_PCAP_SET_TSTAMP_PRECISION - status = pcap_set_tstamp_precision(pd, ndo->ndo_tstamp_precision); - if (status != 0) - error("%s: Can't set %ssecond time stamp precision: %s", - device, - tstamp_precision_to_string(ndo->ndo_tstamp_precision), - pcap_statustostr(status)); -#endif - -#ifdef HAVE_PCAP_SET_IMMEDIATE_MODE - if (immediate_mode) { - status = pcap_set_immediate_mode(pd, 1); - if (status != 0) - error("%s: Can't set immediate mode: %s", - device, - pcap_statustostr(status)); - } -#endif - /* - * Is this an interface that supports monitor mode? - */ - if (pcap_can_set_rfmon(pd) == 1) - supports_monitor_mode = 1; - else - supports_monitor_mode = 0; - status = pcap_set_snaplen(pd, ndo->ndo_snaplen); - if (status != 0) - error("%s: Can't set snapshot length: %s", - device, pcap_statustostr(status)); - status = pcap_set_promisc(pd, !pflag); - if (status != 0) - error("%s: Can't set promiscuous mode: %s", - device, pcap_statustostr(status)); - if (Iflag) { - status = pcap_set_rfmon(pd, 1); - if (status != 0) - error("%s: Can't set monitor mode: %s", - device, pcap_statustostr(status)); - } - status = pcap_set_timeout(pd, 1000); - if (status != 0) - error("%s: pcap_set_timeout failed: %s", - device, pcap_statustostr(status)); - if (Bflag != 0) { - status = pcap_set_buffer_size(pd, Bflag); - if (status != 0) - error("%s: Can't set buffer size: %s", - device, pcap_statustostr(status)); - } -#ifdef HAVE_PCAP_SET_TSTAMP_TYPE - if (jflag != -1) { - status = pcap_set_tstamp_type(pd, jflag); - if (status < 0) - error("%s: Can't set time stamp type: %s", - device, pcap_statustostr(status)); - } -#endif - status = pcap_activate(pd); - if (status < 0) { - /* - * pcap_activate() failed. - */ - cp = pcap_geterr(pd); - if (status == PCAP_ERROR) - error("%s", cp); - else if ((status == PCAP_ERROR_NO_SUCH_DEVICE || - status == PCAP_ERROR_PERM_DENIED) && - *cp != '\0') - error("%s: %s\n(%s)", device, - pcap_statustostr(status), cp); - else - error("%s: %s", device, - pcap_statustostr(status)); - } else if (status > 0) { - /* - * pcap_activate() succeeded, but it's warning us - * of a problem it had. - */ - cp = pcap_geterr(pd); - if (status == PCAP_WARNING) - warning("%s", cp); - else if (status == PCAP_WARNING_PROMISC_NOTSUP && - *cp != '\0') - warning("%s: %s\n(%s)", device, - pcap_statustostr(status), cp); - else - warning("%s: %s", device, - pcap_statustostr(status)); - } -#ifdef HAVE_PCAP_SETDIRECTION - if (Qflag != -1) { - status = pcap_setdirection(pd, Qflag); - if (status != 0) - error("%s: pcap_setdirection() failed: %s", - device, pcap_geterr(pd)); - } -#endif /* HAVE_PCAP_SETDIRECTION */ -#else - *ebuf = '\0'; - pd = pcap_open_live(device, ndo->ndo_snaplen, !pflag, 1000, - ebuf); - if (pd == NULL) - error("%s", ebuf); - else if (*ebuf) - warning("%s", ebuf); -#endif /* HAVE_PCAP_CREATE */ - - - - /* - * Let user own process after socket has been opened. - */ -#ifndef _WIN32 - if (setgid(getgid()) != 0 || setuid(getuid()) != 0) - fprintf(stderr, "Warning: setgid/setuid failed !\n"); -#endif /* _WIN32 */ -#if !defined(HAVE_PCAP_CREATE) && defined(_WIN32) - if(Bflag != 0) - if(pcap_setbuff(pd, Bflag)==-1){ - error("%s", pcap_geterr(pd)); - } -#endif /* !defined(HAVE_PCAP_CREATE) && defined(_WIN32) */ - if (Lflag) - show_dlts_and_exit(device); - if (yflag_dlt >= 0) { -#ifdef HAVE_PCAP_SET_DATALINK - if (pcap_set_datalink(pd, yflag_dlt) < 0) - error("%s", pcap_geterr(pd)); -#else - /* - * We don't actually support changing the - * data link type, so we only let them - * set it to what it already is. - */ - if (yflag_dlt != pcap_datalink(pd)) { - error("%s is not one of the DLTs supported by this device\n", - yflag_dlt_name); - } -#endif - (void)fprintf(stderr, "%s: data link type %s\n", - program_name, yflag_dlt_name); - (void)fflush(stderr); - } - i = pcap_snapshot(pd); - if (ndo->ndo_snaplen < i) { - warning("snaplen raised from %d to %d", ndo->ndo_snaplen, i); - ndo->ndo_snaplen = i; - } - if(ndo->ndo_fflag != 0) { - if (pcap_lookupnet(device, &localnet, &netmask, ebuf) < 0) { - warning("foreign (-f) flag used but: %s", ebuf); - } - } - - } - - - if (infile) - cmdbuf = read_infile(infile); - else - cmdbuf = copy_argv(&argv[optind]); - -#ifdef HAVE_PCAP_SET_OPTIMIZER_DEBUG - pcap_set_optimizer_debug(dflag); -#endif - if (pcap_compile(pd, &fcode, cmdbuf, Oflag, netmask) < 0){ - error("%s", pcap_geterr(pd)); - }else{ - /* 不一定有bpf filter, 此处判断一下 */ - if(cmdbuf){ - has_bpf_filter_flag = 1; - } - } - - if (dflag) { - bpf_dump(&fcode, dflag); - pcap_close(pd); - free(cmdbuf); - pcap_freecode(&fcode); - exit(0); - } - init_print(ndo, localnet, netmask, timezone_offset); - - - -#ifndef _WIN32 - (void)setsignal(SIGPIPE, cleanup); - (void)setsignal(SIGTERM, cleanup); - (void)setsignal(SIGINT, cleanup); -#endif /* _WIN32 */ -#if defined(HAVE_FORK) || defined(HAVE_VFORK) - (void)setsignal(SIGCHLD, child_cleanup); -#endif - /* Cooperate with nohup(1) */ -#ifndef _WIN32 - if ((oldhandler = setsignal(SIGHUP, cleanup)) != SIG_DFL) - (void)setsignal(SIGHUP, oldhandler); -#endif /* _WIN32 */ - - -#ifndef _WIN32 - /* - * If a user name was specified with "-Z", attempt to switch to - * that user's UID. This would probably be used with sudo, - * to allow tcpdump to be run in a special restricted - * account (if you just want to allow users to open capture - * devices, and can't just give users that permission, - * you'd make tcpdump set-UID or set-GID). - * - * Tcpdump doesn't necessarily write only to one savefile; - * the general only way to allow a -Z instance to write to - * savefiles as the user under whose UID it's run, rather - * than as the user specified with -Z, would thus be to switch - * to the original user ID before opening a capture file and - * then switch back to the -Z user ID after opening the savefile. - * Switching to the -Z user ID only after opening the first - * savefile doesn't handle the general case. - */ - - if (getuid() == 0 || geteuid() == 0) { -#ifdef HAVE_LIBCAP_NG - /* Initialize capng */ - capng_clear(CAPNG_SELECT_BOTH); - if (username) { - capng_updatev( - CAPNG_ADD, - CAPNG_PERMITTED | CAPNG_EFFECTIVE, - CAP_SETUID, - CAP_SETGID, - -1); - } - - if (WFileName) { - capng_update( - CAPNG_ADD, - CAPNG_PERMITTED | CAPNG_EFFECTIVE, - CAP_DAC_OVERRIDE - ); - } - capng_apply(CAPNG_SELECT_BOTH); -#endif /* HAVE_LIBCAP_NG */ - if (username || chroot_dir) - droproot(username, chroot_dir); - - } -#endif /* _WIN32 */ - -#if MESA_DUMP - /* - 如果使用了 -g参数, 表示用最内层的IP,PORT做为过滤条件, 不能直接将bpf应用到pcap句柄, - 因为那还是用最外层过滤, 如果是隧道, 一个包也过滤不到. - - 此处不能加过滤条件, 而是在收到包后, 主动调用bpf_filter()再检测一遍, - 比直接在pcap底层应用bpf效率有点低. - */ - if(0 == greedy_seek_flag){ - if (pcap_setfilter(pd, &fcode) < 0) - error("%s", pcap_geterr(pd)); - } - else - { - pcap_freecode(&fcode); - if(pcap_compile_nopcap(Oflag, DLT_RAW, &fcode, cmdbuf, 0, netmask) < 0){ - printf("Compile pcap filter %s error\n", cmdbuf); - return -1; - } - } - -#else - if (pcap_setfilter(pd, &fcode) < 0) - error("%s", pcap_geterr(pd)); -#endif - -#ifdef HAVE_CAPSICUM - if (RFileName == NULL && VFileName == NULL) { - static const unsigned long cmds[] = { BIOCGSTATS, BIOCROTZBUF }; - - cap_rights_init(&rights, CAP_IOCTL, CAP_READ); - if (cap_rights_limit(pcap_fileno(pd), &rights) < 0 && - errno != ENOSYS) { - error("unable to limit pcap descriptor"); - } - if (cap_ioctls_limit(pcap_fileno(pd), cmds, - sizeof(cmds) / sizeof(cmds[0])) < 0 && errno != ENOSYS) { - error("unable to limit ioctls on pcap descriptor"); - } - } -#endif - - - if (WFileName) { - pcap_dumper_t *p; - /* Do not exceed the default PATH_MAX for files. */ - dumpinfo.CurrentFileName = (char *)malloc(PATH_MAX + 1); - - if (dumpinfo.CurrentFileName == NULL) - error("malloc of dumpinfo.CurrentFileName"); - - /* We do not need numbering for dumpfiles if Cflag isn't set. */ - if (Cflag != 0) - MakeFilename(dumpinfo.CurrentFileName, WFileName, 0, WflagChars); - else - MakeFilename(dumpinfo.CurrentFileName, WFileName, 0, 0); - - p = pcap_dump_open(pd, dumpinfo.CurrentFileName); -#ifdef HAVE_LIBCAP_NG - /* Give up CAP_DAC_OVERRIDE capability. - * Only allow it to be restored if the -C or -G flag have been - * set since we may need to create more files later on. - */ - capng_update( - CAPNG_DROP, - (Cflag || Gflag ? 0 : CAPNG_PERMITTED) - | CAPNG_EFFECTIVE, - CAP_DAC_OVERRIDE - ); - capng_apply(CAPNG_SELECT_BOTH); -#endif /* HAVE_LIBCAP_NG */ - if (p == NULL) - error("%s", pcap_geterr(pd)); -#ifdef HAVE_CAPSICUM - set_dumper_capsicum_rights(p); -#endif - if (Cflag != 0 || Gflag != 0) { -#ifdef HAVE_CAPSICUM - dumpinfo.WFileName = strdup(basename(WFileName)); - if (dumpinfo.WFileName == NULL) { - error("Unable to allocate memory for file %s", - WFileName); - } - dumpinfo.dirfd = open(dirname(WFileName), - O_DIRECTORY | O_RDONLY); - if (dumpinfo.dirfd < 0) { - error("unable to open directory %s", - dirname(WFileName)); - } - cap_rights_init(&rights, CAP_CREATE, CAP_FCNTL, - CAP_FTRUNCATE, CAP_LOOKUP, CAP_SEEK, CAP_WRITE); - if (cap_rights_limit(dumpinfo.dirfd, &rights) < 0 && - errno != ENOSYS) { - error("unable to limit directory rights"); - } - if (cap_fcntls_limit(dumpinfo.dirfd, CAP_FCNTL_GETFL) < 0 && - errno != ENOSYS) { - error("unable to limit dump descriptor fcntls"); - } -#else /* !HAVE_CAPSICUM */ - dumpinfo.WFileName = WFileName; -#endif - callback = dump_packet_and_trunc; - dumpinfo.pd = pd; - dumpinfo.p = p; - pcap_userdata = (u_char *)&dumpinfo; - } else { - callback = dump_packet; -#if MESA_DUMP - /* 如果设定了greedy选项且有BPF规则, 需要调用MESA_dump_packet(), 偏移到内层IP再保存 */ - if((greedy_seek_flag != 0) && (has_bpf_filter_flag != 0)){ - callback = MESA_dump_packet; /* 更新callback指针 */ - } -#endif - pcap_userdata = (u_char *)p; - } -#ifdef HAVE_PCAP_DUMP_FLUSH - if (Uflag) - pcap_dump_flush(p); -#endif - } else { - dlt = pcap_datalink(pd); - ndo->ndo_if_printer = get_if_printer(ndo, dlt); - callback = print_packet; -#if MESA_DUMP - /* 如果设定了greedy选项, 需要调用MESA_dump_print_packet(), 偏移到内层IP再处理 */ - if(greedy_seek_flag != 0){ - callback = MESA_dump_print_packet; /* 更新callback指针 */ - } -#endif - pcap_userdata = (u_char *)ndo; - } - -#ifdef SIGNAL_REQ_INFO - /* - * We can't get statistics when reading from a file rather - * than capturing from a device. - */ - if (RFileName == NULL) - (void)setsignal(SIGNAL_REQ_INFO, requestinfo); -#endif - - if (ndo->ndo_vflag > 0 && WFileName) { - /* - * When capturing to a file, "-v" means tcpdump should, - * every 10 seconds, "v"erbosely report the number of - * packets captured. - */ -#ifdef USE_WIN32_MM_TIMER - /* call verbose_stats_dump() each 1000 +/-100msec */ - timer_id = timeSetEvent(1000, 100, verbose_stats_dump, 0, TIME_PERIODIC); - setvbuf(stderr, NULL, _IONBF, 0); -#elif defined(HAVE_ALARM) - (void)setsignal(SIGALRM, verbose_stats_dump); - alarm(1); -#endif - } - -#ifndef _WIN32 - if (RFileName == NULL) { - /* - * Live capture (if -V was specified, we set RFileName - * to a file from the -V file). Print a message to - * the standard error on UN*X. - */ - if (!ndo->ndo_vflag && !WFileName) { - (void)fprintf(stderr, - "%s: verbose output suppressed, use -v or -vv for full protocol decode\n", - program_name); - } else - (void)fprintf(stderr, "%s: ", program_name); - dlt = pcap_datalink(pd); - dlt_name = pcap_datalink_val_to_name(dlt); - if (dlt_name == NULL) { - (void)fprintf(stderr, "listening on %s, link-type %u, capture size %u bytes\n", - device, dlt, ndo->ndo_snaplen); - } else { - (void)fprintf(stderr, "listening on %s, link-type %s (%s), capture size %u bytes\n", - device, dlt_name, - pcap_datalink_val_to_description(dlt), ndo->ndo_snaplen); - } - (void)fflush(stderr); - } -#endif /* _WIN32 */ - -#ifdef HAVE_CAPSICUM - cansandbox = (ndo->ndo_nflag && VFileName == NULL && zflag == NULL); - if (cansandbox && cap_enter() < 0 && errno != ENOSYS) - error("unable to enter the capability mode"); -#endif /* HAVE_CAPSICUM */ - -/***************************** starting capture... ***********************************/ - - if(0 == has_device_flag){ - MESA_dump(callback, pcap_userdata, cmdbuf, cnt, sapp_cmd_port); - } - - do { - status = pcap_loop(pd, cnt, callback, pcap_userdata); - if (WFileName == NULL) { - /* - * We're printing packets. Flush the printed output, - * so it doesn't get intermingled with error output. - */ - if (status == -2) { - /* - * We got interrupted, so perhaps we didn't - * manage to finish a line we were printing. - * Print an extra newline, just in case. - */ - putchar('\n'); - } - (void)fflush(stdout); - } - if (status == -2) { - /* - * We got interrupted. If we are reading multiple - * files (via -V) set these so that we stop. - */ - VFileName = NULL; - ret = NULL; - } - if (status == -1) { - /* - * Error. Report it. - */ - (void)fprintf(stderr, "%s: pcap_loop: %s\n", - program_name, pcap_geterr(pd)); - } - if (RFileName == NULL) { - /* - * We're doing a live capture. Report the capture - * statistics. - */ - info(1); - } - pcap_close(pd); - if (VFileName != NULL) { - ret = get_next_file(VFile, VFileLine); - if (ret) { - int new_dlt; - - RFileName = VFileLine; - pd = pcap_open_offline(RFileName, ebuf); - if (pd == NULL) - error("%s", ebuf); -#ifdef HAVE_CAPSICUM - cap_rights_init(&rights, CAP_READ); - if (cap_rights_limit(fileno(pcap_file(pd)), - &rights) < 0 && errno != ENOSYS) { - error("unable to limit pcap descriptor"); - } -#endif - new_dlt = pcap_datalink(pd); - if (new_dlt != dlt) { - /* - * The new file has a different - * link-layer header type from the - * previous one. - */ - if (WFileName != NULL) { - /* - * We're writing raw packets - * that match the filter to - * a pcap file. pcap files - * don't support multiple - * different link-layer - * header types, so we fail - * here. - */ - error("%s: new dlt does not match original", RFileName); - } - - /* - * We're printing the decoded packets; - * switch to the new DLT. - * - * To do that, we need to change - * the printer, change the DLT name, - * and recompile the filter with - * the new DLT. - */ - dlt = new_dlt; - ndo->ndo_if_printer = get_if_printer(ndo, dlt); - if (pcap_compile(pd, &fcode, cmdbuf, Oflag, netmask) < 0) - error("%s", pcap_geterr(pd)); - } - - /* - * Set the filter on the new file. - */ - if (pcap_setfilter(pd, &fcode) < 0) - error("%s", pcap_geterr(pd)); - - /* - * Report the new file. - */ - dlt_name = pcap_datalink_val_to_name(dlt); - if (dlt_name == NULL) { - fprintf(stderr, "reading from file %s, link-type %u\n", - RFileName, dlt); - } else { - fprintf(stderr, - "reading from file %s, link-type %s (%s)\n", - RFileName, dlt_name, - pcap_datalink_val_to_description(dlt)); - } - } - } - } - while (ret != NULL); - - free(cmdbuf); - pcap_freecode(&fcode); - exit(status == -1 ? 1 : 0); -} - -/* make a clean exit on interrupts */ -static RETSIGTYPE -cleanup(int signo _U_) -{ -#ifdef USE_WIN32_MM_TIMER - if (timer_id) - timeKillEvent(timer_id); - timer_id = 0; -#elif defined(HAVE_ALARM) - alarm(0); -#endif - -#ifdef HAVE_PCAP_BREAKLOOP - /* - * We have "pcap_breakloop()"; use it, so that we do as little - * as possible in the signal handler (it's probably not safe - * to do anything with standard I/O streams in a signal handler - - * the ANSI C standard doesn't say it is). - */ - - pcap_breakloop(pd); -#if MESA_DUMP - (void)fflush(stdout); - exit(0); -#endif -#else - /* - * We don't have "pcap_breakloop()"; this isn't safe, but - * it's the best we can do. Print the summary if we're - * not reading from a savefile - i.e., if we're doing a - * live capture - and exit. - */ - if (pd != NULL && pcap_file(pd) == NULL) { - /* - * We got interrupted, so perhaps we didn't - * manage to finish a line we were printing. - * Print an extra newline, just in case. - */ - putchar('\n'); - (void)fflush(stdout); - info(1); - } - exit(0); -#endif -} - -/* - On windows, we do not use a fork, so we do not care less about - waiting a child processes to die - */ -#if defined(HAVE_FORK) || defined(HAVE_VFORK) -static RETSIGTYPE -child_cleanup(int signo _U_) -{ - wait(NULL); -} -#endif /* HAVE_FORK && HAVE_VFORK */ - -static void -info(register int verbose) -{ - struct pcap_stat stats; - - /* - * Older versions of libpcap didn't set ps_ifdrop on some - * platforms; initialize it to 0 to handle that. - */ - stats.ps_ifdrop = 0; - if (pcap_stats(pd, &stats) < 0) { - (void)fprintf(stderr, "pcap_stats: %s\n", pcap_geterr(pd)); - infoprint = 0; - return; - } - - if (!verbose) - fprintf(stderr, "%s: ", program_name); - - (void)fprintf(stderr, "%u packet%s captured", packets_captured, - PLURAL_SUFFIX(packets_captured)); - if (!verbose) - fputs(", ", stderr); - else - putc('\n', stderr); - (void)fprintf(stderr, "%u packet%s received by filter", stats.ps_recv, - PLURAL_SUFFIX(stats.ps_recv)); - if (!verbose) - fputs(", ", stderr); - else - putc('\n', stderr); - (void)fprintf(stderr, "%u packet%s dropped by kernel", stats.ps_drop, - PLURAL_SUFFIX(stats.ps_drop)); - if (stats.ps_ifdrop != 0) { - if (!verbose) - fputs(", ", stderr); - else - putc('\n', stderr); - (void)fprintf(stderr, "%u packet%s dropped by interface\n", - stats.ps_ifdrop, PLURAL_SUFFIX(stats.ps_ifdrop)); - } else - putc('\n', stderr); - infoprint = 0; -} - -#if defined(HAVE_FORK) || defined(HAVE_VFORK) -#ifdef HAVE_FORK -#define fork_subprocess() fork() -#else -#define fork_subprocess() vfork() -#endif -static void -compress_savefile(const char *filename) -{ - pid_t child; - - child = fork_subprocess(); - if (child == -1) { - fprintf(stderr, - "compress_savefile: fork failed: %s\n", - pcap_strerror(errno)); - return; - } - if (child != 0) { - /* Parent process. */ - return; - } - - /* - * Child process. - * Set to lowest priority so that this doesn't disturb the capture. - */ -#ifdef NZERO - setpriority(PRIO_PROCESS, 0, NZERO - 1); -#else - setpriority(PRIO_PROCESS, 0, 19); -#endif - if (execlp(zflag, zflag, filename, (char *)NULL) == -1) - fprintf(stderr, - "compress_savefile: execlp(%s, %s) failed: %s\n", - zflag, - filename, - pcap_strerror(errno)); -#ifdef HAVE_FORK - exit(1); -#else - _exit(1); -#endif -} -#else /* HAVE_FORK && HAVE_VFORK */ -static void -compress_savefile(const char *filename) -{ - fprintf(stderr, - "compress_savefile failed. Functionality not implemented under your system\n"); -} -#endif /* HAVE_FORK && HAVE_VFORK */ - -static void -dump_packet_and_trunc(u_char *user, const struct pcap_pkthdr *h, const u_char *sp) -{ - struct dump_info *dump_info; - - ++packets_captured; - - ++infodelay; - - dump_info = (struct dump_info *)user; - - /* - * XXX - this won't force the file to rotate on the specified time - * boundary, but it will rotate on the first packet received after the - * specified Gflag number of seconds. Note: if a Gflag time boundary - * and a Cflag size boundary coincide, the time rotation will occur - * first thereby cancelling the Cflag boundary (since the file should - * be 0). - */ - if (Gflag != 0) { - /* Check if it is time to rotate */ - time_t t; - - /* Get the current time */ - if ((t = time(NULL)) == (time_t)-1) { - error("dump_and_trunc_packet: can't get current_time: %s", - pcap_strerror(errno)); - } - - - /* If the time is greater than the specified window, rotate */ - if (t - Gflag_time >= Gflag) { -#ifdef HAVE_CAPSICUM - FILE *fp; - int fd; -#endif - - /* Update the Gflag_time */ - Gflag_time = t; - /* Update Gflag_count */ - Gflag_count++; - /* - * Close the current file and open a new one. - */ - pcap_dump_close(dump_info->p); - - /* - * Compress the file we just closed, if the user asked for it - */ - if (zflag != NULL) - compress_savefile(dump_info->CurrentFileName); - - /* - * Check to see if we've exceeded the Wflag (when - * not using Cflag). - */ - if (Cflag == 0 && Wflag > 0 && Gflag_count >= Wflag) { - (void)fprintf(stderr, "Maximum file limit reached: %d\n", - Wflag); - exit(0); - /* NOTREACHED */ - } - if (dump_info->CurrentFileName != NULL) - free(dump_info->CurrentFileName); - /* Allocate space for max filename + \0. */ - dump_info->CurrentFileName = (char *)malloc(PATH_MAX + 1); - if (dump_info->CurrentFileName == NULL) - error("dump_packet_and_trunc: malloc"); - /* - * Gflag was set otherwise we wouldn't be here. Reset the count - * so multiple files would end with 1,2,3 in the filename. - * The counting is handled with the -C flow after this. - */ - Cflag_count = 0; - - /* - * This is always the first file in the Cflag - * rotation: e.g. 0 - * We also don't need numbering if Cflag is not set. - */ - if (Cflag != 0) - MakeFilename(dump_info->CurrentFileName, dump_info->WFileName, 0, - WflagChars); - else - MakeFilename(dump_info->CurrentFileName, dump_info->WFileName, 0, 0); - -#ifdef HAVE_LIBCAP_NG - capng_update(CAPNG_ADD, CAPNG_EFFECTIVE, CAP_DAC_OVERRIDE); - capng_apply(CAPNG_SELECT_BOTH); -#endif /* HAVE_LIBCAP_NG */ -#ifdef HAVE_CAPSICUM - fd = openat(dump_info->dirfd, - dump_info->CurrentFileName, - O_CREAT | O_WRONLY | O_TRUNC, 0644); - if (fd < 0) { - error("unable to open file %s", - dump_info->CurrentFileName); - } - fp = fdopen(fd, "w"); - if (fp == NULL) { - error("unable to fdopen file %s", - dump_info->CurrentFileName); - } - dump_info->p = pcap_dump_fopen(dump_info->pd, fp); -#else /* !HAVE_CAPSICUM */ - dump_info->p = pcap_dump_open(dump_info->pd, dump_info->CurrentFileName); -#endif -#ifdef HAVE_LIBCAP_NG - capng_update(CAPNG_DROP, CAPNG_EFFECTIVE, CAP_DAC_OVERRIDE); - capng_apply(CAPNG_SELECT_BOTH); -#endif /* HAVE_LIBCAP_NG */ - if (dump_info->p == NULL) - error("%s", pcap_geterr(pd)); -#ifdef HAVE_CAPSICUM - set_dumper_capsicum_rights(dump_info->p); -#endif - } - } - - /* - * XXX - this won't prevent capture files from getting - * larger than Cflag - the last packet written to the - * file could put it over Cflag. - */ - if (Cflag != 0) { - long size = pcap_dump_ftell(dump_info->p); - - if (size == -1) - error("ftell fails on output file"); - if (size > Cflag) { -#ifdef HAVE_CAPSICUM - FILE *fp; - int fd; -#endif - - /* - * Close the current file and open a new one. - */ - pcap_dump_close(dump_info->p); - - /* - * Compress the file we just closed, if the user - * asked for it. - */ - if (zflag != NULL) - compress_savefile(dump_info->CurrentFileName); - - Cflag_count++; - if (Wflag > 0) { - if (Cflag_count >= Wflag) - Cflag_count = 0; - } - if (dump_info->CurrentFileName != NULL) - free(dump_info->CurrentFileName); - dump_info->CurrentFileName = (char *)malloc(PATH_MAX + 1); - if (dump_info->CurrentFileName == NULL) - error("dump_packet_and_trunc: malloc"); - MakeFilename(dump_info->CurrentFileName, dump_info->WFileName, Cflag_count, WflagChars); -#ifdef HAVE_LIBCAP_NG - capng_update(CAPNG_ADD, CAPNG_EFFECTIVE, CAP_DAC_OVERRIDE); - capng_apply(CAPNG_SELECT_BOTH); -#endif /* HAVE_LIBCAP_NG */ -#ifdef HAVE_CAPSICUM - fd = openat(dump_info->dirfd, dump_info->CurrentFileName, - O_CREAT | O_WRONLY | O_TRUNC, 0644); - if (fd < 0) { - error("unable to open file %s", - dump_info->CurrentFileName); - } - fp = fdopen(fd, "w"); - if (fp == NULL) { - error("unable to fdopen file %s", - dump_info->CurrentFileName); - } - dump_info->p = pcap_dump_fopen(dump_info->pd, fp); -#else /* !HAVE_CAPSICUM */ - dump_info->p = pcap_dump_open(dump_info->pd, dump_info->CurrentFileName); -#endif -#ifdef HAVE_LIBCAP_NG - capng_update(CAPNG_DROP, CAPNG_EFFECTIVE, CAP_DAC_OVERRIDE); - capng_apply(CAPNG_SELECT_BOTH); -#endif /* HAVE_LIBCAP_NG */ - if (dump_info->p == NULL) - error("%s", pcap_geterr(pd)); -#ifdef HAVE_CAPSICUM - set_dumper_capsicum_rights(dump_info->p); -#endif - } - } - - pcap_dump((u_char *)dump_info->p, h, sp); -#ifdef HAVE_PCAP_DUMP_FLUSH - if (Uflag) - pcap_dump_flush(dump_info->p); -#endif - - --infodelay; - if (infoprint) - info(0); -} - -static void -dump_packet(u_char *user, const struct pcap_pkthdr *h, const u_char *sp) -{ - ++packets_captured; - - ++infodelay; - - pcap_dump(user, h, sp); -#ifdef HAVE_PCAP_DUMP_FLUSH - if (Uflag) - pcap_dump_flush((pcap_dumper_t *)user); -#endif - - --infodelay; - if (infoprint) - info(0); -} - -static void -MESA_dump_packet(u_char *user, const struct pcap_pkthdr *h, const u_char *raw_pkt) -{ - //char modify_pkt_buf[2048]; - int inner_pkt_len; - - ++packets_captured; - ++infodelay; - - //memcpy(modify_pkt_buf, raw_pkt, h->caplen >= 2048? 2048:h->caplen); - //inner_pkt_len = MESA_dump_seek_to_inner(modify_pkt_buf, h->caplen); - //if(inner_pkt_len < 0){ - // return; - //} - struct mesa_ip4_hdr *ip4hdr_greedy; - struct mesa_ip6_hdr *ip6hdr_greedy; - const unsigned char *inner_iphdr = NULL; - ip4hdr_greedy = (struct mesa_ip4_hdr *)MESA_net_jump_to_layer_greedy(raw_pkt, ADDR_TYPE_MAC, __ADDR_TYPE_IP_PAIR_V4); - if(ip4hdr_greedy) - { - inner_iphdr = (const unsigned char *)ip4hdr_greedy; - inner_pkt_len = h->caplen - ((const u_char *)ip4hdr_greedy - raw_pkt) ; - } - else - { - ip6hdr_greedy = (struct mesa_ip6_hdr *)MESA_net_jump_to_layer_greedy(raw_pkt, ADDR_TYPE_MAC, __ADDR_TYPE_IP_PAIR_V6); - if(ip6hdr_greedy) - { - inner_iphdr = (const unsigned char *)ip6hdr_greedy; - inner_pkt_len = h->caplen - ((const u_char *)ip6hdr_greedy - raw_pkt); - } - else - { - return; - } - - } - - - if(has_bpf_filter_flag != 0){ - if(0 == bpf_filter(fcode.bf_insns, - (const unsigned char *)inner_iphdr, inner_pkt_len, inner_pkt_len)){ - return; - } - } - - /* -w参数要存储包, 实际存储的包还是用原始报文, 只是BPF用内层过滤 */ - pcap_dump(user, h, raw_pkt); -#ifdef HAVE_PCAP_DUMP_FLUSH - if (Uflag) - pcap_dump_flush((pcap_dumper_t *)user); -#endif - - --infodelay; - if (infoprint) - info(0); -} - - -static void -print_packet(u_char *user, const struct pcap_pkthdr *h, const u_char *sp) -{ - ++packets_captured; - - ++infodelay; - - pretty_print_packet((netdissect_options *)user, h, sp, packets_captured); - - --infodelay; - if (infoprint) - info(0); -} - - -static void -MESA_dump_print_packet(u_char *user, const struct pcap_pkthdr *h, const u_char *pkt) -{ - int inner_pkt_len; - -#if 0 - /* 此函数仅用于tcpdump屏幕打印, 直接修改pkt原始包, 避免再copy一次, 节约点CPU */ - inner_pkt_len = MESA_dump_seek_to_inner(pkt, h->caplen); - if(inner_pkt_len < 0){ - return; - } - - if(has_bpf_filter_flag != 0){ - if(0 == bpf_filter(fcode.bf_insns, - (const unsigned char *)pkt, inner_pkt_len, inner_pkt_len)){ - return; - } - } - - /* 改为新的修改后的数据包长度 */ - ((struct pcap_pkthdr *)h)->caplen = (unsigned int)inner_pkt_len; - ((struct pcap_pkthdr *)h)->len = (unsigned int)inner_pkt_len; -#else - struct mesa_ip4_hdr *ip4hdr_greedy; - struct mesa_ip6_hdr *ip6hdr_greedy; - const unsigned char *inner_iphdr = NULL; - ip4hdr_greedy = (struct mesa_ip4_hdr *)MESA_net_jump_to_layer_greedy(pkt, ADDR_TYPE_MAC, __ADDR_TYPE_IP_PAIR_V4); - if(ip4hdr_greedy) - { - inner_iphdr = (const unsigned char *)ip4hdr_greedy; - inner_pkt_len = h->caplen - ((const unsigned char *)ip4hdr_greedy - pkt); - } - else - { - ip6hdr_greedy = (struct mesa_ip6_hdr *)MESA_net_jump_to_layer_greedy(pkt, ADDR_TYPE_MAC, __ADDR_TYPE_IP_PAIR_V6); - if(ip6hdr_greedy) - { - inner_iphdr = (const unsigned char *)ip6hdr_greedy; - inner_pkt_len = h->caplen - ((const unsigned char *)ip6hdr_greedy - pkt); - } - else - { - return; - } - - } - - if (has_bpf_filter_flag != 0) - { - if (0 == bpf_filter(fcode.bf_insns, - (const unsigned char *)inner_iphdr, inner_pkt_len, inner_pkt_len)) - { - return; - } - } - -#endif - print_packet(user, h, pkt); -} - - - -#ifdef _WIN32 - /* - * XXX - there should really be libpcap calls to get the version - * number as a string (the string would be generated from #defines - * at run time, so that it's not generated from string constants - * in the library, as, on many UNIX systems, those constants would - * be statically linked into the application executable image, and - * would thus reflect the version of libpcap on the system on - * which the application was *linked*, not the system on which it's - * *running*. - * - * That routine should be documented, unlike the "version[]" - * string, so that UNIX vendors providing their own libpcaps - * don't omit it (as a couple of vendors have...). - * - * Packet.dll should perhaps also export a routine to return the - * version number of the Packet.dll code, to supply the - * "Wpcap_version" information on Windows. - */ - char WDversion[]="current-git.tcpdump.org"; -#if !defined(HAVE_GENERATED_VERSION) - char version[]="current-git.tcpdump.org"; -#endif - char pcap_version[]="current-git.tcpdump.org"; - char Wpcap_version[]="3.1"; -#endif - -#ifdef SIGNAL_REQ_INFO -RETSIGTYPE requestinfo(int signo _U_) -{ - if (infodelay) - ++infoprint; - else - info(0); -} -#endif - -/* - * Called once each second in verbose mode while dumping to file - */ -#ifdef USE_WIN32_MM_TIMER -void CALLBACK verbose_stats_dump (UINT timer_id _U_, UINT msg _U_, DWORD_PTR arg _U_, - DWORD_PTR dw1 _U_, DWORD_PTR dw2 _U_) -{ - if (infodelay == 0) - fprintf(stderr, "Got %u\r", packets_captured); -} -#elif defined(HAVE_ALARM) -static void verbose_stats_dump(int sig _U_) -{ - if (infodelay == 0) - fprintf(stderr, "Got %u\r", packets_captured); - alarm(1); -} -#endif - -USES_APPLE_DEPRECATED_API -static void -print_version(void) -{ - extern char version[]; -#ifndef HAVE_PCAP_LIB_VERSION -#if defined(_WIN32) || defined(HAVE_PCAP_VERSION) - extern char pcap_version[]; -#else /* defined(_WIN32) || defined(HAVE_PCAP_VERSION) */ - static char pcap_version[] = "unknown"; -#endif /* defined(_WIN32) || defined(HAVE_PCAP_VERSION) */ -#endif /* HAVE_PCAP_LIB_VERSION */ - -#ifdef HAVE_PCAP_LIB_VERSION -#ifdef _WIN32 - (void)fprintf(stderr, "%s version %s, based on tcpdump version %s\n", program_name, WDversion, version); -#else /* _WIN32 */ - (void)fprintf(stderr, "%s version %s\n", program_name, version); -#endif /* _WIN32 */ - (void)fprintf(stderr, "%s\n",pcap_lib_version()); -#else /* HAVE_PCAP_LIB_VERSION */ -#ifdef _WIN32 - (void)fprintf(stderr, "%s version %s, based on tcpdump version %s\n", program_name, WDversion, version); - (void)fprintf(stderr, "WinPcap version %s, based on libpcap version %s\n",Wpcap_version, pcap_version); -#else /* _WIN32 */ - (void)fprintf(stderr, "%s version %s\n", program_name, version); - (void)fprintf(stderr, "libpcap version %s\n", pcap_version); -#endif /* _WIN32 */ -#endif /* HAVE_PCAP_LIB_VERSION */ - -#if defined(HAVE_LIBCRYPTO) && defined(SSLEAY_VERSION) - (void)fprintf (stderr, "%s\n", SSLeay_version(SSLEAY_VERSION)); -#endif - -#ifdef USE_LIBSMI - (void)fprintf (stderr, "SMI-library: %s\n", smi_version_string); -#endif -} -USES_APPLE_RST - -static void -print_usage(void) -{ - print_version(); - (void)fprintf(stderr, -"Usage: %s [-aAbd" D_FLAG "efhH" I_FLAG J_FLAG "KlLnNOpqStu" U_FLAG "vxX#]" B_FLAG_USAGE " [ -c count ]\n", program_name); - (void)fprintf(stderr, -"\t\t[ -C file_size ] [ -E algo:secret ] [ -F file ] [ -G seconds ]\n"); - (void)fprintf(stderr, -"\t\t[ -i interface ]" j_FLAG_USAGE " [ -M secret ] [ --number ]\n"); -#ifdef HAVE_PCAP_SETDIRECTION - (void)fprintf(stderr, -"\t\t[ -Q in|out|inout ]\n"); -#endif - (void)fprintf(stderr, -"\t\t[ -r file ] [ -s snaplen ] "); -#ifdef HAVE_PCAP_SET_TSTAMP_PRECISION - (void)fprintf(stderr, "[ --time-stamp-precision precision ]\n"); - (void)fprintf(stderr, -"\t\t"); -#endif -#ifdef HAVE_PCAP_SET_IMMEDIATE_MODE - (void)fprintf(stderr, "[ --immediate-mode ] "); -#endif - (void)fprintf(stderr, "[ -T type ] [ --version ] [ -V file ]\n"); - (void)fprintf(stderr, -"\t\t[ -w file ] [ -W filecount ] [ -y datalinktype ] [ -z postrotate-command ]\n"); - (void)fprintf(stderr, -"\t\t[ -Z user ] [ expression ]\n"); -#if MESA_DUMP - (void)fprintf(stderr, -"----------------------------------------------------------------------------------------------.\n"); - (void)fprintf(stderr, -"\t\tThe follow args is customized for tcpdump_mesa(%s):\n", tcpdump_mesa_version); - (void)fprintf(stderr, -"\t\t[ -a ] enable perceptive mode, can detect loss packet number.\n"); - (void)fprintf(stderr, -"\t\t[ -g greedy-seek ] enable greedy seek to most inner IP layer, for tunnel, embed protocol.\n"); - (void)fprintf(stderr, -"\t\t[ -k thread-id ] to assign sapp recv thread id, support multi-range, for example: 1,3,5,7.\n"); - (void)fprintf(stderr, -"\t\t[ -o offset ] to assign offset from MAC, for skip some low layer data, for example: vxlan=50, mac_in_mac=14.\n"); - (void)fprintf(stderr, -"\t\t[ -P port ] to assign sapp recv command port.\n"); - (void)fprintf(stderr, -"\t\t[ --vlan-as-mac-in-mac ] force VLAN to be analysed as MAC-IN-MAC format.\n"); -#endif -} -/* - * Local Variables: - * c-style: whitesmith - * c-basic-offset: 8 - * End: - */ diff --git a/tests/02-sunrise-sunset-esp.pcap b/tests/02-sunrise-sunset-esp.pcap deleted file mode 100644 index e52af98..0000000 Binary files a/tests/02-sunrise-sunset-esp.pcap and /dev/null differ diff --git a/tests/08-sunrise-sunset-aes.pcap b/tests/08-sunrise-sunset-aes.pcap deleted file mode 100644 index 1ebe3de..0000000 Binary files a/tests/08-sunrise-sunset-aes.pcap and /dev/null differ diff --git a/tests/08-sunrise-sunset-esp2.pcap b/tests/08-sunrise-sunset-esp2.pcap deleted file mode 100644 index c3e54cb..0000000 Binary files a/tests/08-sunrise-sunset-esp2.pcap and /dev/null differ diff --git a/tests/3560_CDP.pcap b/tests/3560_CDP.pcap deleted file mode 100644 index f29fd50..0000000 Binary files a/tests/3560_CDP.pcap and /dev/null differ diff --git a/tests/802.1D_spanning_tree.pcap b/tests/802.1D_spanning_tree.pcap deleted file mode 100644 index b21f71c..0000000 Binary files a/tests/802.1D_spanning_tree.pcap and /dev/null differ diff --git a/tests/802.1w_rapid_STP.pcap b/tests/802.1w_rapid_STP.pcap deleted file mode 100644 index db85a45..0000000 Binary files a/tests/802.1w_rapid_STP.pcap and /dev/null differ diff --git a/tests/AoE_Linux.pcap b/tests/AoE_Linux.pcap deleted file mode 100644 index de5c744..0000000 Binary files a/tests/AoE_Linux.pcap and /dev/null differ diff --git a/tests/DECnet_Phone.pcap b/tests/DECnet_Phone.pcap deleted file mode 100644 index 20ff167..0000000 Binary files a/tests/DECnet_Phone.pcap and /dev/null differ diff --git a/tests/DTP.pcap b/tests/DTP.pcap deleted file mode 100644 index 9f0c5f4..0000000 Binary files a/tests/DTP.pcap and /dev/null differ diff --git a/tests/EIGRP_adjacency.pcap b/tests/EIGRP_adjacency.pcap deleted file mode 100644 index a0966b6..0000000 Binary files a/tests/EIGRP_adjacency.pcap and /dev/null differ diff --git a/tests/EIGRP_goodbye.pcap b/tests/EIGRP_goodbye.pcap deleted file mode 100644 index 6a73f5d..0000000 Binary files a/tests/EIGRP_goodbye.pcap and /dev/null differ diff --git a/tests/EIGRP_subnet_down.pcap b/tests/EIGRP_subnet_down.pcap deleted file mode 100644 index a85579d..0000000 Binary files a/tests/EIGRP_subnet_down.pcap and /dev/null differ diff --git a/tests/EIGRP_subnet_up.pcap b/tests/EIGRP_subnet_up.pcap deleted file mode 100644 index 49f53ef..0000000 Binary files a/tests/EIGRP_subnet_up.pcap and /dev/null differ diff --git a/tests/HDLC.pcap b/tests/HDLC.pcap deleted file mode 100644 index 0d94d3f..0000000 Binary files a/tests/HDLC.pcap and /dev/null differ diff --git a/tests/HSRP_coup.pcap b/tests/HSRP_coup.pcap deleted file mode 100644 index 41f8ef0..0000000 Binary files a/tests/HSRP_coup.pcap and /dev/null differ diff --git a/tests/HSRP_election.pcap b/tests/HSRP_election.pcap deleted file mode 100644 index 72ccdfb..0000000 Binary files a/tests/HSRP_election.pcap and /dev/null differ diff --git a/tests/HSRP_failover.pcap b/tests/HSRP_failover.pcap deleted file mode 100644 index cad4e61..0000000 Binary files a/tests/HSRP_failover.pcap and /dev/null differ diff --git a/tests/IGMP_V1.pcap b/tests/IGMP_V1.pcap deleted file mode 100644 index 2a6e90d..0000000 Binary files a/tests/IGMP_V1.pcap and /dev/null differ diff --git a/tests/IGMP_V2.pcap b/tests/IGMP_V2.pcap deleted file mode 100644 index 6d1d8db..0000000 Binary files a/tests/IGMP_V2.pcap and /dev/null differ diff --git a/tests/ISAKMP_sa_setup.pcap b/tests/ISAKMP_sa_setup.pcap deleted file mode 100644 index 28c5d61..0000000 Binary files a/tests/ISAKMP_sa_setup.pcap and /dev/null differ diff --git a/tests/ISIS_external_lsp.pcap b/tests/ISIS_external_lsp.pcap deleted file mode 100644 index 5fbf975..0000000 Binary files a/tests/ISIS_external_lsp.pcap and /dev/null differ diff --git a/tests/ISIS_level1_adjacency.pcap b/tests/ISIS_level1_adjacency.pcap deleted file mode 100644 index 9614218..0000000 Binary files a/tests/ISIS_level1_adjacency.pcap and /dev/null differ diff --git a/tests/ISIS_level2_adjacency.pcap b/tests/ISIS_level2_adjacency.pcap deleted file mode 100644 index 9d8a329..0000000 Binary files a/tests/ISIS_level2_adjacency.pcap and /dev/null differ diff --git a/tests/ISIS_p2p_adjacency.pcap b/tests/ISIS_p2p_adjacency.pcap deleted file mode 100644 index a065ad7..0000000 Binary files a/tests/ISIS_p2p_adjacency.pcap and /dev/null differ diff --git a/tests/LACP.pcap b/tests/LACP.pcap deleted file mode 100644 index 9681961..0000000 Binary files a/tests/LACP.pcap and /dev/null differ diff --git a/tests/LLDP_and_CDP.pcap b/tests/LLDP_and_CDP.pcap deleted file mode 100644 index ebbf49e..0000000 Binary files a/tests/LLDP_and_CDP.pcap and /dev/null differ diff --git a/tests/MSTP_Intra-Region_BPDUs.pcap b/tests/MSTP_Intra-Region_BPDUs.pcap deleted file mode 100644 index 559b234..0000000 Binary files a/tests/MSTP_Intra-Region_BPDUs.pcap and /dev/null differ diff --git a/tests/OLSRv1_HNA_sgw_1.out b/tests/OLSRv1_HNA_sgw_1.out deleted file mode 100644 index 0f41cdc..0000000 --- a/tests/OLSRv1_HNA_sgw_1.out +++ /dev/null @@ -1,13 +0,0 @@ -IP (tos 0x10, ttl 1, id 25245, offset 0, flags [DF], proto UDP (17), length 100) - 172.29.175.220.698 > 255.255.255.255.698: OLSRv4, seq 0xce93, length 72 - HNA Message (0x04), originator 172.31.175.220, ttl 255, hop 0 - vtime 288.000s, msg-seq 0x6ce5, length 28 - Advertised networks (total 2) - Smart-Gateway: LINKSPEED IPV4 IPV4-NAT 10000/10000, 10.175.220.0/24 - Hello-LQ Message (0xc9), originator 172.31.175.220, ttl 1, hop 0 - vtime 3.000s, msg-seq 0x6ce6, length 40 - hello-time 1.000s, MPR willingness 3 - link-type Symmetric, neighbor-type Symmetric, len 12 - neighbor 172.29.175.221, link-quality 0.00%, neighbor-link-quality 0.00% - link-type Unspecified, neighbor-type Symmetric, len 12 - neighbor 172.31.175.221, link-quality 0.00%, neighbor-link-quality 0.00% diff --git a/tests/OLSRv1_HNA_sgw_1.pcap b/tests/OLSRv1_HNA_sgw_1.pcap deleted file mode 100644 index f975d8f..0000000 Binary files a/tests/OLSRv1_HNA_sgw_1.pcap and /dev/null differ diff --git a/tests/OSPFv3_NBMA_adjacencies.pcap b/tests/OSPFv3_NBMA_adjacencies.pcap deleted file mode 100644 index 7aa8fae..0000000 Binary files a/tests/OSPFv3_NBMA_adjacencies.pcap and /dev/null differ diff --git a/tests/OSPFv3_broadcast_adjacency.pcap b/tests/OSPFv3_broadcast_adjacency.pcap deleted file mode 100644 index 15cb2dd..0000000 Binary files a/tests/OSPFv3_broadcast_adjacency.pcap and /dev/null differ diff --git a/tests/OSPFv3_multipoint_adjacencies.pcap b/tests/OSPFv3_multipoint_adjacencies.pcap deleted file mode 100644 index 9ba7698..0000000 Binary files a/tests/OSPFv3_multipoint_adjacencies.pcap and /dev/null differ diff --git a/tests/OSPFv3_with_AH.pcap b/tests/OSPFv3_with_AH.pcap deleted file mode 100644 index 6c647b4..0000000 Binary files a/tests/OSPFv3_with_AH.pcap and /dev/null differ diff --git a/tests/PIM-DM_pruning.pcap b/tests/PIM-DM_pruning.pcap deleted file mode 100644 index ad0f80d..0000000 Binary files a/tests/PIM-DM_pruning.pcap and /dev/null differ diff --git a/tests/PIM-SM_join_prune.pcap b/tests/PIM-SM_join_prune.pcap deleted file mode 100644 index 12396bf..0000000 Binary files a/tests/PIM-SM_join_prune.pcap and /dev/null differ diff --git a/tests/PIM_register_register-stop.pcap b/tests/PIM_register_register-stop.pcap deleted file mode 100644 index e2419ad..0000000 Binary files a/tests/PIM_register_register-stop.pcap and /dev/null differ diff --git a/tests/PIMv2_bootstrap.pcap b/tests/PIMv2_bootstrap.pcap deleted file mode 100644 index 1bc0ae9..0000000 Binary files a/tests/PIMv2_bootstrap.pcap and /dev/null differ diff --git a/tests/PIMv2_hellos.pcap b/tests/PIMv2_hellos.pcap deleted file mode 100644 index 6a5f49d..0000000 Binary files a/tests/PIMv2_hellos.pcap and /dev/null differ diff --git a/tests/QinQpacket.out b/tests/QinQpacket.out deleted file mode 100644 index 0ef7015..0000000 --- a/tests/QinQpacket.out +++ /dev/null @@ -1,249 +0,0 @@ -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 (03:6f:72:67:00:00) tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 (6f:6e:02:63:61:00) tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 (03:6f:72:67:00:00) tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 (03:6f:72:67:00:00) tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 (03:6f:72:67:00:00) tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 (6f:6e:02:63:61:00) tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 (03:6f:72:67:00:00) tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 (03:6f:72:67:00:00) tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 (03:6f:72:67:00:00) tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 (03:6f:72:67:00:00) tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548 diff --git a/tests/QinQpacket.pcap b/tests/QinQpacket.pcap deleted file mode 100644 index eeabfe4..0000000 Binary files a/tests/QinQpacket.pcap and /dev/null differ diff --git a/tests/QinQpacketv.out b/tests/QinQpacketv.out deleted file mode 100644 index 03ed7cf..0000000 --- a/tests/QinQpacketv.out +++ /dev/null @@ -1,1977 +0,0 @@ -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 51417, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x9696a090, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 51427, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x9696a090, secs 4, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 51435, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x9696a090, secs 12, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 51451, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x9696a090, secs 28, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 51482, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x9696a090, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 51486, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x9696a090, secs 4, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 51493, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x9696a090, secs 11, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 51509, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x9696a090, secs 27, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 51540, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x9696a015, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 51551, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x9696a015, secs 3, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 51558, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x9696a015, secs 10, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 51574, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x9696a015, secs 26, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 51605, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x9696a015, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 51608, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x9696a015, secs 3, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 51616, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x9696a015, secs 11, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 51632, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x9696a015, secs 27, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 51664, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x96969f99, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 51675, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x96969f99, secs 4, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 51683, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x96969f99, secs 12, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 51699, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x96969f99, secs 28, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 51731, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x96969f99, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 51734, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x96969f99, secs 3, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 51742, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x96969f99, secs 11, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 51757, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x96969f99, secs 26, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 (03:6f:72:67:00:00) tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 51788, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x96969f1d, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 (6f:6e:02:63:61:00) tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 51802, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x96969f1d, secs 4, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 51809, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x96969f1d, secs 11, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 51824, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x96969f1d, secs 26, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 51855, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x96969f1d, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 51859, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x96969f1d, secs 4, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 51867, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x96969f1d, secs 12, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 51883, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x96969f1d, secs 28, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 51915, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x96969e9e, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 51925, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x96969e9e, secs 4, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 51932, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x96969e9e, secs 11, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 51947, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x96969e9e, secs 26, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 51979, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x96969e9e, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 51983, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x96969e9e, secs 4, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 51990, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x96969e9e, secs 11, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52006, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x96969e9e, secs 27, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52037, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x96969e24, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52048, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x96969e24, secs 3, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52056, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x96969e24, secs 11, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52072, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x96969e24, secs 27, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52104, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x96969e24, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52107, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x96969e24, secs 3, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52115, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x96969e24, secs 11, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52130, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x96969e24, secs 26, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52162, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x96969da7, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52167, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x96969da7, secs 4, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52175, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x96969da7, secs 12, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52191, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x96969da7, secs 28, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52223, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x96969da7, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52227, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x96969da7, secs 4, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52234, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x96969da7, secs 11, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52250, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x96969da7, secs 27, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 (03:6f:72:67:00:00) tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 (03:6f:72:67:00:00) tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 (03:6f:72:67:00:00) tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52281, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x96969d30, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52289, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x96969d30, secs 4, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 (6f:6e:02:63:61:00) tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52297, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x96969d30, secs 12, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52312, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x96969d30, secs 27, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52343, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x96969d30, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52347, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x96969d30, secs 4, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52355, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x96969d30, secs 12, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52371, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x96969d30, secs 28, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52403, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x96969cb6, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52413, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x96969cb6, secs 4, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52420, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x96969cb6, secs 11, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52435, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x96969cb6, secs 26, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52467, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x96969cb6, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52470, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x96969cb6, secs 3, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52478, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x96969cb6, secs 11, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52493, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x96969cb6, secs 26, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52524, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x96969c3d, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52534, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x96969c3d, secs 4, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52541, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x96969c3d, secs 11, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52556, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x96969c3d, secs 26, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52588, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x96969c3d, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52591, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x96969c3d, secs 3, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52598, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x96969c3d, secs 10, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52613, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x96969c3d, secs 25, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52645, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x96969bc4, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52649, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x96969bc4, secs 3, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52656, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x96969bc4, secs 10, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52672, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x96969bc4, secs 26, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52704, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x96969bc4, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52708, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x96969bc4, secs 4, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52715, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x96969bc4, secs 11, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52731, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x96969bc4, secs 27, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 (03:6f:72:67:00:00) tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 (03:6f:72:67:00:00) tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52762, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x96969b4f, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52772, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x96969b4f, secs 3, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52779, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x96969b4f, secs 10, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52794, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x96969b4f, secs 25, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52825, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x96969b4f, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52829, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x96969b4f, secs 4, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52836, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x96969b4f, secs 11, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52851, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x96969b4f, secs 26, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52882, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x96969ad7, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52893, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x96969ad7, secs 3, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52900, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x96969ad7, secs 10, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52915, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x96969ad7, secs 25, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52947, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x96969ad7, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52950, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x96969ad7, secs 3, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52957, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x96969ad7, secs 10, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 52973, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x96969ad7, secs 26, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 53004, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x96969a5d, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 53010, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x96969a5d, secs 4, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 53018, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x96969a5d, secs 12, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 53034, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x96969a5d, secs 28, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 53065, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x96969a5d, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 53068, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x96969a5d, secs 3, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 53075, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x96969a5d, secs 10, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 53090, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x96969a5d, secs 25, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 53122, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x969699e7, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 53134, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x969699e7, secs 4, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 53141, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x969699e7, secs 11, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 53156, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x969699e7, secs 26, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 53187, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x969699e7, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 53191, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x969699e7, secs 4, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 53198, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x969699e7, secs 11, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 53214, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x969699e7, secs 27, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 (03:6f:72:67:00:00) tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 53246, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x9696996b, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 (03:6f:72:67:00:00) tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 53250, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x9696996b, secs 3, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 53257, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x9696996b, secs 10, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 53273, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x9696996b, secs 26, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 53304, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x9696996b, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 53307, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x9696996b, secs 3, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 53314, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x9696996b, secs 10, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 53329, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x9696996b, secs 25, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 53360, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x969698f9, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 53372, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x969698f9, secs 3, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 53379, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x969698f9, secs 10, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 53395, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x969698f9, secs 26, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 53426, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x969698f9, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 53430, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x969698f9, secs 4, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 53437, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x969698f9, secs 11, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 53453, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x969698f9, secs 27, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 53485, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x9696987c, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 53492, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x9696987c, secs 4, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 53499, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x9696987c, secs 11, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 344: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 53514, offset 0, flags [DF], proto UDP (17), length 326) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x9696987c, secs 26, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 64: vlan 200, p 0, ethertype ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 172.17.0.2 tell 172.17.0.20, length 46 -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 53545, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x9696987c, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 53548, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x9696987c, secs 3, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 53555, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x9696987c, secs 10, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" -00:08:5d:23:0c:3f > ff:ff:ff:ff:ff:ff, ethertype 802.1Q-QinQ (0x88a8), length 594: vlan 200, p 0, ethertype IPv4, (tos 0x0, ttl 32, id 53571, offset 0, flags [DF], proto UDP (17), length 576) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x9696987c, secs 26, Flags [none] - Client-Ethernet-Address 00:08:5d:23:0c:3f - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - MSZ Option 57, length 2: 1500 - Parameter-Request Option 55, length 9: - Subnet-Mask, Default-Gateway, Domain-Name-Server, NTP - Vendor-Option, Time-Zone, TFTP, Option 159 - Option 160 - Hostname Option 12, length 17: "6731i00085D230C3F" - Vendor-Class Option 60, length 18: "AastraIPPhone6731i" diff --git a/tests/RADIUS-RFC4675.pcap b/tests/RADIUS-RFC4675.pcap deleted file mode 100644 index a5d7505..0000000 Binary files a/tests/RADIUS-RFC4675.pcap and /dev/null differ diff --git a/tests/RADIUS-RFC5176.pcap b/tests/RADIUS-RFC5176.pcap deleted file mode 100644 index 2ef19f2..0000000 Binary files a/tests/RADIUS-RFC5176.pcap and /dev/null differ diff --git a/tests/RADIUS-port1700.pcap b/tests/RADIUS-port1700.pcap deleted file mode 100644 index aa7b24e..0000000 Binary files a/tests/RADIUS-port1700.pcap and /dev/null differ diff --git a/tests/RADIUS.pcap b/tests/RADIUS.pcap deleted file mode 100644 index 2e902e4..0000000 Binary files a/tests/RADIUS.pcap and /dev/null differ diff --git a/tests/TESTLIST b/tests/TESTLIST deleted file mode 100644 index f787a90..0000000 --- a/tests/TESTLIST +++ /dev/null @@ -1,352 +0,0 @@ -# The Option -n is useless in TESTLIST. It is already set in TESTonce. - -# Various flags applied to a TCP session. -# -# We cannot rely on, for example, "print-x.out" and -# "print-X.out" being different files - we might be running -# this on a case-insensitive file system, e.g. a Windows -# file system or a case-insensitive HFS+ file system on -# Mac OS X. -# -# Therefore, for "X" and "XX", we have "print-capX.out" -# and "print-capXX.out". -# -print-x print-flags.pcap print-x.out -t -x -print-xx print-flags.pcap print-xx.out -t -xx -print-X print-flags.pcap print-capX.out -t -X -print-XX print-flags.pcap print-capXX.out -t -XX -print-A print-flags.pcap print-A.out -t -A -print-AA print-flags.pcap print-AA.out -t -AA - -# BGP tests -bgp_vpn_attrset bgp_vpn_attrset.pcap bgp_vpn_attrset.out -t -v -mpbgp-linklocal-nexthop mpbgp-linklocal-nexthop.pcap mpbgp-linklocal-nexthop.out -t -v -bgp_infloop-v bgp-infinite-loop.pcap bgp_infloop-v.out -t -v -bgp-aigp bgp-aigp.pcap bgp-aigp.out -t -v - -# EAP tests -eapon1 eapon1.pcap eapon1.out -t - -# ESP tests -esp0 02-sunrise-sunset-esp.pcap esp0.out -t -# more ESP tests in crypto.sh - -# ISAKMP tests -isakmp1 isakmp-delete-segfault.pcap isakmp1.out -t -isakmp2 isakmp-pointer-loop.pcap isakmp2.out -t -isakmp3 isakmp-identification-segfault.pcap isakmp3.out -t -v -# isakmp4 is in crypto.sh -isakmp5-v ISAKMP_sa_setup.pcap isakmp5-v.out -t -v - -# Link Management Protocol tests -lmp lmp.pcap lmp.out -t -T lmp -# lmp-v is now conditionally handled by lmp-v.sh - -# MPLS tests -mpls-ldp-hello mpls-ldp-hello.pcap mpls-ldp-hello.out -t -v -ldp_infloop ldp-infinite-loop.pcap ldp_infloop.out -t -lspping-fec-ldp lspping-fec-ldp.pcap lspping-fec-ldp.out -t -lspping-fec-ldp-v lspping-fec-ldp.pcap lspping-fec-ldp-v.out -t -v -lspping-fec-ldp-vv lspping-fec-ldp.pcap lspping-fec-ldp-vv.out -t -vv -lspping-fec-rsvp lspping-fec-rsvp.pcap lspping-fec-rsvp.out -t -lspping-fec-rsvp-v lspping-fec-rsvp.pcap lspping-fec-rsvp-v.out -t -v -lspping-fec-rsvp-vv lspping-fec-rsvp.pcap lspping-fec-rsvp-vv.out -t -vv -mpls-traceroute mpls-traceroute.pcap mpls-traceroute.out -t -mpls-traceroute-v mpls-traceroute.pcap mpls-traceroute-v.out -t -v - -# OSPF tests -ospf-gmpls ospf-gmpls.pcap ospf-gmpls.out -t -v -ospf3_ah-vv OSPFv3_with_AH.pcap ospf3_ah-vv.out -t -v -v -ospf3_auth-vv ospf3_auth.pcap ospf3_auth-vv.out -t -v -v -ospf3_bc-vv OSPFv3_broadcast_adjacency.pcap ospf3_bc-vv.out -t -v -v -ospf3_mp-vv OSPFv3_multipoint_adjacencies.pcap ospf3_mp-vv.out -t -v -v -ospf3_nbma-vv OSPFv3_NBMA_adjacencies.pcap ospf3_nbma-vv.out -t -v -v - -# IKEv2 tests -ikev2four ikev2four.pcap ikev2four.out -t -v -ikev2fourv ikev2four.pcap ikev2fourv.out -t -v -v -v -ikev2fourv4 ikev2four.pcap ikev2fourv4.out -t -v -v -v -v -# ikev2pI2 test in crypto.sh - -# IETF ROLL RPL packets -dio02 rpl-19-pickdag.pcap rpl-19-pickdag.out -t -v -v -dio03 rpl-19-pickdag.pcap rpl-19-pickdagvvv.out -t -v -v -v -dao01 rpl-14-dao.pcap rpl-14-daovvv.out -t -v -v -v -daoack01 rpl-26-senddaoack.pcap rpl-26-senddaovv.out -t -v -v -v - -# IPNET encapsulated site -e1000g e1000g.pcap e1000g.out -t - -# IETF FORCES WG packets and printer -forces01 forces1.pcap forces1.out -t -forces01vvv forces1.pcap forces1vvv.out -t -v -v -v -forces01vvvv forces1.pcap forces1vvvv.out -t -v -v -v -v -# need new pcap file, not sure what the differences were? -#forces02 forces2.pcap forces2.out -t -#forces02v forces2.pcap forces2v.out -t -v -#forces02vv forces2.pcap forces2vv.out -t -v -v - -# 802.1ad, QinQ tests -qinq QinQpacket.pcap QinQpacket.out -t -e -qinqv QinQpacket.pcap QinQpacketv.out -t -e -v - -# now SFLOW tests -sflow1 sflow_multiple_counter_30_pdus.pcap sflow_multiple_counter_30_pdus.out -t -v -sflow2 sflow_multiple_counter_30_pdus.pcap sflow_multiple_counter_30_pdus-nv.out -t - -# AHCP and Babel tests -ahcp-vv ahcp.pcap ahcp-vv.out -t -vv -babel1 babel.pcap babel1.out -t -babel1v babel.pcap babel1v.out -t -v -babel_auth babel_auth.pcap babel_auth.out -t -v -babel_pad1 babel_pad1.pcap babel_pad1.out -t -babel_rtt babel_rtt.pcap babel_rtt.out -t -v - -# PPPoE tests -pppoe pppoe.pcap pppoe.out -t -pppoes pppoes.pcap pppoes.out -t -pppoes_id pppoes.pcap pppoes_id.out -t pppoes 0x3b - -# IGMP tests -igmpv1 IGMP_V1.pcap igmpv1.out -t -igmpv2 IGMP_V2.pcap igmpv2.out -t -igmpv3-queries igmpv3-queries.pcap igmpv3-queries.out -t -mtrace mtrace.pcap mtrace.out -t -dvmrp mrinfo_query.pcap dvmrp.out -t - -# ICMPv6 -icmpv6 icmpv6.pcap icmpv6.out -t -vv -icmpv6_opt24-v icmpv6_opt24.pcap icmpv6_opt24-v.out -t -v - -# SPB tests -spb spb.pcap spb.out -t - -# SPB BPDUv4 tests -spb_bpduv4 spb_bpduv4.pcap spb_bpduv4.out -t - -# DCB Tests -dcb_ets dcb_ets.pcap dcb_ets.out -t -vv -dcb_pfc dcb_pfc.pcap dcb_pfc.out -t -vv -dcb_qcn dcb_qcn.pcap dcb_qcn.out -t -vv - -# EVB tests -evb evb.pcap evb.out -t -vv - -# STP tests -mstp-v MSTP_Intra-Region_BPDUs.pcap mstp-v.out -t -v -stp-v 802.1D_spanning_tree.pcap stp-v.out -t -v -rstp-v 802.1w_rapid_STP.pcap rstp-v.out -t -v -rpvst-v rpvstp-trunk-native-vid5.pcap rpvst-v.out -t -v - -# RIP tests -ripv1v2 ripv1v2.pcap ripv1v2.out -t -v -ripv2_auth ripv2_auth.pcap ripv2_auth.out -t -v - -# DHCPv6 tests -dhcpv6-aftr-name dhcpv6-AFTR-Name-RFC6334.pcap dhcpv6-AFTR-Name-RFC6334.out -t -v -dhcpv6-ia-na dhcpv6-ia-na.pcap dhcpv6-ia-na.out -t -v -dhcpv6-ia-pd dhcpv6-ia-pd.pcap dhcpv6-ia-pd.out -t -v -dhcpv6-ia-ta dhcpv6-ia-ta.pcap dhcpv6-ia-ta.out -t -v -dhcpv6-ntp-server dhcpv6-ntp-server.pcap dhcpv6-ntp-server.out -t -v -dhcpv6-sip-server-d dhcpv6-sip-server-d.pcap dhcpv6-sip-server-d.out -t -v -dhcpv6-domain-list dhcpv6-domain-list.pcap dhcpv6-domain-list.out -t -v - -# ZeroMQ/PGM tests -# ZMTP/1.0 over TCP -zmtp1v zmtp1.pcap zmtp1.out -t -v -T zmtp1 -# native PGM -pgmv pgm_zmtp1.pcap pgmv.out -t -v -# UDP-encapsulated PGM -epgmv epgm_zmtp1.pcap epgmv.out -t -v -T pgm -# ZMTP/1.0 inside native PGM -pgm_zmtp1v pgm_zmtp1.pcap pgm_zmtp1v.out -t -v -T pgm_zmtp1 -# ZMTP/1.0 inside UDP-encapsulated PGM -epgm_zmtp1v epgm_zmtp1.pcap epgm_zmtp1v.out -t -v -T pgm_zmtp1 - -# MS NLB tests -msnlb msnlb.pcap msnlb.out -t -msnlb2 msnlb2.pcap msnlb2.out -t - -# MPTCP tests -mptcp mptcp.pcap mptcp.out -t -mptcp-fclose mptcp-fclose.pcap mptcp-fclose.out -t -# TFO tests -tfo tfo-5c1fa7f9ae91.pcap tfo.out -t - -# IEEE 802.11 tests -802.11_exthdr ieee802.11_exthdr.pcap ieee802.11_exthdr.out -t -v -802.11_rx-stbc ieee802.11_rx-stbc.pcap ieee802.11_rx-stbc.out -t - -# OpenFlow tests -of10_p3295-vv of10_p3295.pcap of10_p3295-vv.out -t -vv -of10_s4810-vvvv of10_s4810.pcap of10_s4810-vvvv.out -t -vvvv -of10_pf5240-vv of10_pf5240.pcap of10_pf5240-vv.out -t -vv -of10_7050q-v of10_7050q.pcap of10_7050q-v.out -t -v -of10_7050sx_bsn-vv of10_7050sx_bsn.pcap of10_7050sx_bsn-vv.out -t -vv - -# GeoNetworking and CALM FAST tests -geonet-calm-fast geonet_and_calm_fast.pcap geonet_and_calm_fast.out -t -vv - -# M3UA tests -m3ua isup.pcap isup.out -t -m3ua-vv isup.pcap isupvv.out -t -vv - -# NFLOG test case moved to nflog-e.sh - -# syslog test case -syslog-v syslog_udp.pcap syslog-v.out -t -v -# DNSSEC from https://bugzilla.redhat.com/show_bug.cgi?id=205842, -vv exposes EDNS DO -dnssec-vv dnssec.pcap dnssec-vv.out -t -vv - -#IPv6 tests -ipv6-bad-version ipv6-bad-version.pcap ipv6-bad-version.out -t -ipv6-routing-header ipv6-routing-header.pcap ipv6-routing-header.out -t -v - -# Loopback/CTP test case -loopback loopback.pcap loopback.out -t - -# DCCP partial checksums tests -dccp_partial_csum_v4_simple dccp_partial_csum_v4_simple.pcap dccp_partial_csum_v4_simple.out -t -vv -dccp_partial_csum_v4_longer dccp_partial_csum_v4_longer.pcap dccp_partial_csum_v4_longer.out -t -vv -dccp_partial_csum_v6_simple dccp_partial_csum_v6_simple.pcap dccp_partial_csum_v6_simple.out -t -vv -dccp_partial_csum_v6_longer dccp_partial_csum_v6_longer.pcap dccp_partial_csum_v6_longer.out -t -vv - -# VRRP tests -vrrp vrrp.pcap vrrp.out -t -vrrp-v vrrp.pcap vrrp-v.out -t -v - -# HSRP tests -hsrp_1 HSRP_coup.pcap hsrp_1.out -t -hsrp_1-v HSRP_coup.pcap hsrp_1-v.out -t -v -hsrp_2-v HSRP_election.pcap hsrp_2-v.out -t -v -hsrp_3-v HSRP_failover.pcap hsrp_3-v.out -t -v - -# PIMv2 tests -pimv2_dm-v PIM-DM_pruning.pcap pimv2_dm-v.out -t -v -pimv2_register-v PIM_register_register-stop.pcap pimv2_register-v.out -t -v -pimv2_sm-v PIM-SM_join_prune.pcap pimv2_sm-v.out -t -v -pimv2_bootstrap-v PIMv2_bootstrap.pcap pimv2_bootstrap-v.out -t -v -pimv2_hellos-v PIMv2_hellos.pcap pimv2_hellos-v.out -t -v - -# IS-IS tests -isis_infloop-v isis-infinite-loop.pcap isis_infloop-v.out -t -v -isis_poi-v isis_poi.pcap isis_poi.out -t -v -isis_poi2-v isis_poi2.pcap isis_poi2.out -t -v - -# RSVP tests -rsvp_infloop-v rsvp-infinite-loop.pcap rsvp_infloop-v.out -t -v - -# HDLC tests -hdlc1 chdlc-slarp.pcap hdlc1.out -t -hdlc2 chdlc-slarp-short.pcap hdlc2.out -t -hdlc3 HDLC.pcap hdlc3.out -t -hdlc4 hdlc_slarp.pcap hdlc4.out -t - -# DECnet test case -decnet DECnet_Phone.pcap decnet.out -t - -# RADIUS tests -radius-v RADIUS.pcap radius-v.out -t -v -radius-rfc4675 RADIUS-RFC4675.pcap radius-rfc4675-v.out -t -v -radius-rfc5176 RADIUS-RFC5176.pcap radius-rfc5176-v.out -t -v -radius-port1700 RADIUS-port1700.pcap radius-port1700-v.out -t -v - -# link-level protocols -dtp-v DTP.pcap dtp-v.out -t -v -lacp-ev LACP.pcap lacp-ev.out -t -e -v -lldp_cdp-ev LLDP_and_CDP.pcap lldp_cdp-ev.out -t -e -v -cdp-v 3560_CDP.pcap cdp-v.out -t -v -udld-v UDLD.pcap udld-v.out -t -v - -# EIGRP tests -eigrp1-v EIGRP_adjacency.pcap eigrp1-v.out -t -v -eigrp2-v EIGRP_goodbye.pcap eigrp2-v.out -t -v -eigrp3-v EIGRP_subnet_down.pcap eigrp3-v.out -t -v -eigrp4-v EIGRP_subnet_up.pcap eigrp4-v.out -t -v - -# IS-IS tests -isis_1 ISIS_external_lsp.pcap isis_1.out -t -isis_1-v ISIS_external_lsp.pcap isis_1-v.out -t -v -isis_2-v ISIS_level1_adjacency.pcap isis_2-v.out -t -v -isis_3-v ISIS_level2_adjacency.pcap isis_3-v.out -t -v -isis_4-v ISIS_p2p_adjacency.pcap isis_4-v.out -t -v - -# ATA-over-Ethernet tests -aoe_1 AoE_Linux.pcap aoe_1.out -t -aoe_1-v AoE_Linux.pcap aoe_1-v.out -t -v - -# Geneve tests -geneve-v geneve.pcap geneve-vv.out -t -vv -geneve-vni geneve.pcap geneve-vni.out -t geneve 0xb -geneve-tcp geneve.pcap geneve-tcp.out -t "geneve && tcp" - -# DHCP tests -dhcp-rfc3004 dhcp-rfc3004.pcap dhcp-rfc3004-v.out -t -v -dhcp-rfc5859 dhcp-rfc5859.pcap dhcp-rfc5859-v.out -t -v - -# MEDSA tests -medsa medsa.pcap medsa.out -t -medsa-e medsa.pcap medsa-e.out -t -e - -# VXLAN tests -vxlan vxlan.pcap vxlan.out -# -t -e - -# CVEs 2014 malformed packets from Steffen Bauch -cve-2014-8767-OLSR cve-2014-8767-OLSR.pcap cve-2014-8767-OLSR.out -t -v -cve-2014-8768-Geonet cve-2014-8768-Geonet.pcap cve-2014-8768-Geonet.out -t -v -cve-2014-8769-AODV cve-2014-8769-AODV.pcap cve-2014-8769-AODV.out -t -v - -# bad packets from Kevin Day -# cve-2015-2155 -- futz testing on FORCES printer -kday1 kday1.pcap kday1.out -t -v -# cve-2015-2153 -- futz testing on TCP printer -kday2 kday2.pcap kday2.out -t -v -# cve-2015-2153 -- futz testing on TCP printer -kday3 kday3.pcap kday3.out -t -v -# cve-2015-2153 -- futz testing on TCP printer -kday4 kday4.pcap kday4.out -t -v -# cve-2015-2153 -- futz testing on TCP printer -kday5 kday5.pcap kday5.out -t -v -# cve-2015-2154 -- ethernet printer -kday6 kday6.pcap kday6.out -t -v -# cve-2015-2153 -- futz testing on TCP printer -kday7 kday7.pcap kday7.out -t -v -# cve-2015-2153 -- futz testing on TCP printer -kday8 kday8.pcap kday8.out -t -v - -# bad packets from reversex86. -cve2015-0261_01 cve2015-0261-ipv6.pcap cve2015-0261-ipv6.out -t -v -cve2015-0261_02 cve2015-0261-crash.pcap cve2015-0261-crash.out -t -v - -# OLSRv1 tests -olsrv1_1 OLSRv1_HNA_sgw_1.pcap OLSRv1_HNA_sgw_1.out -t -v - -# tests with unaligned data, to make sure they work on SPARC -unaligned-nfs-1 unaligned-nfs-1.pcap unaligned-nfs-1.out -t -v - -# LISP tests -lisp_eid_notify lisp_eid_notify.pcap lisp_eid_notify.out -t -v -lisp_eid_register lisp_eid_register.pcap lisp_eid_register.out -t -v -lisp_ipv6_eid lisp_ipv6.pcap lisp_ipv6.out -t -v - -# pcap invalid versions (first: version = 1.4 ; second: version = 2.5) -pcap-invalid-version-1 pcap-invalid-version-1.pcap pcap-invalid-version-1.out -t -pcap-invalid-version-2 pcap-invalid-version-2.pcap pcap-invalid-version-2.out -t - -# pcap-ng invalid version (first: version = 0.1 ; second: version = 1.1) -pcap-ng-invalid-vers-1 pcap-ng-invalid-vers-1.pcap pcap-ng-invalid-vers-1.out -t -pcap-ng-invalid-vers-2 pcap-ng-invalid-vers-2.pcap pcap-ng-invalid-vers-2.out -t - -# NSH over VxLAN-GPE -nsh-over-vxlan-gpe nsh-over-vxlan-gpe.pcap nsh-over-vxlan-gpe.out -t -nsh-over-vxlan-gpe-v nsh-over-vxlan-gpe.pcap nsh-over-vxlan-gpe-v.out -t -v -nsh-over-vxlan-gpe-vv nsh-over-vxlan-gpe.pcap nsh-over-vxlan-gpe-vv.out -t -vv -nsh-over-vxlan-gpe-vvv nsh-over-vxlan-gpe.pcap nsh-over-vxlan-gpe-vvv.out -t -vvv - -# RESP tests -resp_1 resp_1_benchmark.pcap resp_1.out -n -t -resp_2 resp_2_inline.pcap resp_2.out -n -t -resp_3 resp_3_malicious.pcap resp_3.out -n -t - -# HNCP tests -hncp hncp.pcap hncp.out -n -vvv -t diff --git a/tests/TESTonce b/tests/TESTonce deleted file mode 100644 index 30ffccd..0000000 --- a/tests/TESTonce +++ /dev/null @@ -1,68 +0,0 @@ -#!/usr/bin/env perl - -system("mkdir -p NEW DIFF"); - -if(@ARGV != 4) { - print "Usage: TESTonce name input output options\n"; - exit 20; -} - -$name=$ARGV[0]; -$input=$ARGV[1]; -$output=$ARGV[2]; -$options=$ARGV[3]; - -my $r; - -if ($^O eq 'MSWin32') { - $r = system "..\\windump -n -r $input $options 2>NUL | sed 's/\\r//' | tee NEW/$output | diff $output - >DIFF/$output.diff"; - # need to do same as below for Cygwin. -} -else { - # we used to do this as a nice pipeline, but the problem is that $r fails to - # to be set properly if the tcpdump core dumps. - $r = system "../tcpdump 2>/dev/null -n -r $input $options >NEW/$output"; - if($r == 0x100) { - # this means tcpdump exited with code 1. - open(OUTPUT, ">>"."NEW/$output") || die "fail to open $output\n"; - printf OUTPUT "EXIT CODE %08x\n", $r; - close(OUTPUT); - $r = 0; - } - if($r == 0) { - $r = system "cat NEW/$output | diff $output - >DIFF/$output.diff"; - } - #print sprintf("END: %08x\n", $r); -} - -if($r == 0) { - printf " %-30s: passed\n", $name; - unlink "DIFF/$output.diff"; - exit 0; -} -printf " %-30s: TEST FAILED", $name; -open FOUT, '>>failure-outputs.txt'; -printf FOUT "Failed test: $name\n\n"; -close FOUT; -if(-f "DIFF/$output.diff") { - system "cat DIFF/$output.diff >> failure-outputs.txt"; -} - -if($r == -1) { - print " (failed to execute: $!)\n"; - exit 30; -} - -# this is not working right, $r == 0x8b00 when there is a core dump. -# clearly, we need some platform specific perl magic to take this apart, so look for "core" -# too. -if($r & 127 || -f "core") { - my $with = ($r & 128) ? 'with' : 'without'; - if(-f "core") { - $with = "with"; - } - printf " (terminated with signal %u, %s coredump)\n", ($r & 127), $with; - exit ($r & 128) ? 10 : 20; -} -print "\n"; -exit $r >> 8; diff --git a/tests/TESTrun.sh b/tests/TESTrun.sh deleted file mode 100644 index 4cd0440..0000000 --- a/tests/TESTrun.sh +++ /dev/null @@ -1,72 +0,0 @@ -#!/bin/sh - -mkdir -p NEW -mkdir -p DIFF -passed=0 -failed=0 -cat /dev/null > failure-outputs.txt - -runComplexTests() -{ - for i in *.sh - do - case $i in TEST*.sh) continue;; esac - if sh ./$i - then - passed=`expr $passed + 1` - else - failed=`expr $failed + 1` - fi - done -} - -runSimpleTests() -{ - only=$1 - echo $passed >.passed - echo $failed >.failed - cat TESTLIST | while read name input output options - do - case $name in - \#*) continue;; - '') continue;; - esac - rm -f core - [ "$only" != "" -a "$name" != "$only" ] && continue - if ./TESTonce $name $input $output "$options" - then - passed=`expr $passed + 1` - echo $passed >.passed - else - failed=`expr $failed + 1` - echo $failed >.failed - fi - [ "$only" != "" -a "$name" = "$only" ] && break - done - # I hate shells with their stupid, useless subshells. - passed=`cat .passed` - failed=`cat .failed` -} - -if [ $# -eq 0 ] -then - runComplexTests - runSimpleTests -elif [ $# -eq 1 ] -then - runSimpleTests $1 -else - echo "Usage: $0 [test_name]" - exit 30 -fi - -# exit with number of failing tests. -echo '------------------------------------------------' -printf "%4u tests failed\n" $failed -printf "%4u tests passed\n" $passed -echo -echo -cat failure-outputs.txt -echo -echo -exit $failed diff --git a/tests/UDLD.pcap b/tests/UDLD.pcap deleted file mode 100644 index d8d3ff6..0000000 Binary files a/tests/UDLD.pcap and /dev/null differ diff --git a/tests/ahcp-vv.out b/tests/ahcp-vv.out deleted file mode 100644 index 167dd43..0000000 --- a/tests/ahcp-vv.out +++ /dev/null @@ -1,76 +0,0 @@ -IP6 (class 0xc0, hlim 1, next-header UDP (17) payload length: 60) fe80::6aa3:c4ff:fef4:841e.5359 > ff02::cca6:c0f9:e182:5359.5359: [udp sum ok] AHCP Version 1 - Hopcount 1, Original Hopcount 1, Nonce 0x7ce31135, Source Id 6a:a3:c4:ff:fe:f4:84:1e, Destination Id ff:ff:ff:ff:ff:ff:ff:ff - Discover, Length 24 - Origin Time: 2013-11-10 07:59:42 UTC - Expires: 418s - IPv4 Address: 0.0.0.0 - IPv6 Prefix - Name Server - NTP Server -IP6 (class 0xc0, hlim 64, next-header UDP (17) payload length: 193) fe80::22cf:30ff:fe02:b052.5359 > fe80::6aa3:c4ff:fef4:841e.5359: [udp sum ok] AHCP Version 1 - Hopcount 1, Original Hopcount 1, Nonce 0x9dccbd40, Source Id 08:4b:37:1e:f3:6e:1e:dc, Destination Id 6a:a3:c4:ff:fe:f4:84:1e - Offer, Length 157 - Origin Time: 2013-11-10 07:59:44 UTC - Mandatory - Expires: 512s - IPv4 Address: 10.100.0.1 - Name Server: ::ffff:89.233.43.71, ::ffff:89.104.194.142, 2002:d596:2a92:1:71:53::, 2002:5968:c28e::53 - NTP Server: ::ffff:195.234.155.124, ::ffff:78.156.97.78, ::ffff:80.71.132.103, ::ffff:83.151.158.44 - My-IPv4-Address: 10.0.0.80 -IP6 (class 0xc0, hlim 1, next-header UDP (17) payload length: 56) fe80::6aa3:c4ff:fef4:841e.5359 > ff02::cca6:c0f9:e182:5359.5359: [udp sum ok] AHCP Version 1 - Hopcount 1, Original Hopcount 1, Nonce 0x7de31135, Source Id 6a:a3:c4:ff:fe:f4:84:1e, Destination Id 08:4b:37:1e:f3:6e:1e:dc - Request, Length 20 - Origin Time: 2013-11-10 07:59:42 UTC - Expires: 405s - IPv4 Address - IPv6 Prefix - Name Server - NTP Server -IP6 (class 0xc0, hlim 64, next-header UDP (17) payload length: 193) fe80::22cf:30ff:fe02:b052.5359 > fe80::6aa3:c4ff:fef4:841e.5359: [udp sum ok] AHCP Version 1 - Hopcount 1, Original Hopcount 1, Nonce 0x9eccbd40, Source Id 08:4b:37:1e:f3:6e:1e:dc, Destination Id 6a:a3:c4:ff:fe:f4:84:1e - Ack, Length 157 - Origin Time: 2013-11-10 07:59:44 UTC - Mandatory - Expires: 524s - IPv4 Address: 10.100.0.1 - Name Server: ::ffff:89.233.43.71, ::ffff:89.104.194.142, 2002:d596:2a92:1:71:53::, 2002:5968:c28e::53 - NTP Server: ::ffff:195.234.155.124, ::ffff:78.156.97.78, ::ffff:80.71.132.103, ::ffff:83.151.158.44 - My-IPv4-Address: 10.0.0.80 -IP6 (class 0xc0, hlim 1, next-header UDP (17) payload length: 56) fe80::6aa3:c4ff:fef4:841e.5359 > ff02::cca6:c0f9:e182:5359.5359: [udp sum ok] AHCP Version 1 - Hopcount 1, Original Hopcount 1, Nonce 0x7ee31135, Source Id 6a:a3:c4:ff:fe:f4:84:1e, Destination Id ff:ff:ff:ff:ff:ff:ff:ff - Discover, Length 20 - Origin Time: 2013-11-10 08:00:09 UTC - Expires: 415s - IPv4 Address - IPv6 Prefix - Name Server - NTP Server -IP6 (class 0xc0, hlim 64, next-header UDP (17) payload length: 193) fe80::22cf:30ff:fe02:b052.5359 > fe80::6aa3:c4ff:fef4:841e.5359: [udp sum ok] AHCP Version 1 - Hopcount 1, Original Hopcount 1, Nonce 0x9fccbd40, Source Id 08:4b:37:1e:f3:6e:1e:dc, Destination Id 6a:a3:c4:ff:fe:f4:84:1e - Offer, Length 157 - Origin Time: 2013-11-10 08:00:11 UTC - Mandatory - Expires: 505s - IPv4 Address: 10.100.0.1 - Name Server: ::ffff:89.233.43.71, ::ffff:89.104.194.142, 2002:d596:2a92:1:71:53::, 2002:5968:c28e::53 - NTP Server: ::ffff:195.234.155.124, ::ffff:78.156.97.78, ::ffff:80.71.132.103, ::ffff:83.151.158.44 - My-IPv4-Address: 10.0.0.80 -IP6 (class 0xc0, hlim 1, next-header UDP (17) payload length: 56) fe80::6aa3:c4ff:fef4:841e.5359 > ff02::cca6:c0f9:e182:5359.5359: [udp sum ok] AHCP Version 1 - Hopcount 1, Original Hopcount 1, Nonce 0x7fe31135, Source Id 6a:a3:c4:ff:fe:f4:84:1e, Destination Id 08:4b:37:1e:f3:6e:1e:dc - Request, Length 20 - Origin Time: 2013-11-10 08:00:09 UTC - Expires: 409s - IPv4 Address - IPv6 Prefix - Name Server - NTP Server -IP6 (class 0xc0, hlim 64, next-header UDP (17) payload length: 193) fe80::22cf:30ff:fe02:b052.5359 > fe80::6aa3:c4ff:fef4:841e.5359: [udp sum ok] AHCP Version 1 - Hopcount 1, Original Hopcount 1, Nonce 0xa0ccbd40, Source Id 08:4b:37:1e:f3:6e:1e:dc, Destination Id 6a:a3:c4:ff:fe:f4:84:1e - Ack, Length 157 - Origin Time: 2013-11-10 08:00:12 UTC - Mandatory - Expires: 518s - IPv4 Address: 10.100.0.1 - Name Server: ::ffff:89.233.43.71, ::ffff:89.104.194.142, 2002:d596:2a92:1:71:53::, 2002:5968:c28e::53 - NTP Server: ::ffff:195.234.155.124, ::ffff:78.156.97.78, ::ffff:80.71.132.103, ::ffff:83.151.158.44 - My-IPv4-Address: 10.0.0.80 diff --git a/tests/ahcp.pcap b/tests/ahcp.pcap deleted file mode 100644 index e3bfdf1..0000000 Binary files a/tests/ahcp.pcap and /dev/null differ diff --git a/tests/aoe_1-v.out b/tests/aoe_1-v.out deleted file mode 100644 index a85e993..0000000 --- a/tests/aoe_1-v.out +++ /dev/null @@ -1,888 +0,0 @@ -AoE length 18, Ver 1, Flags: [none] - Major: 0xffff, Minor: 0xff, Command: Query Config Information, Tag: 0x00000000 - Buffer Count: 0, Firmware Version: 0, Sector Count: 0, AoE: 0, CCmd: read config string -AoE length 46, Ver 1, Flags: [none] - Major: 0xffff, Minor: 0xff, Command: Query Config Information, Tag: 0x00000000 - Buffer Count: 0, Firmware Version: 0, Sector Count: 0, AoE: 0, CCmd: read config string -AoE length 18, Ver 0 -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x0001cd4a - AFlags: [none], Err/Feature: 0, Sector Count: 1, Cmd/Status: 236 - lba0: 0, lba1: 0, lba2: 0, lba3: 160, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 534, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x0001cd4a - AFlags: [none], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 0, lba1: 0, lba2: 0, lba3: 160, lba4: 0, lba5: 0 - Data: 512 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x0002cd63 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 0, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x0003cd63 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 2, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x0004cd63 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 4, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x0005cd64 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 6, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x0002cd63 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 0, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x0003cd63 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 2, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x0004cd63 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 4, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x0005cd64 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 6, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x0006cd68 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 8, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x0007cd68 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 10, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x0008cd68 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 12, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x0009cd68 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 14, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x0006cd68 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 8, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x0007cd68 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 10, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x0008cd68 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 12, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x0009cd68 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 14, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x000acd71 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 0, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x000acd71 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 0, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x000bcd71 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 2, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x000ccd71 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 4, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x000dcd71 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 6, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x000bcd71 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 2, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x000ccd71 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 4, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x000dcd71 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 6, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x000ecd74 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 24, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x000fcd74 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 26, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x0010cd74 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 28, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x000ecd74 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 24, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x000fcd74 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 26, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x0010cd74 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 28, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x0011cd74 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 30, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x0011cd74 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 30, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x0012cd7b - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 8, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x0013cd7b - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 10, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x0014cd7b - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 12, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x0015cd7b - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 14, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x0012cd7b - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 8, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x0013cd7b - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 10, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x0014cd7b - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 12, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x0015cd7b - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 14, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x0016cd8f - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 56, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x0017cd8f - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 58, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x0018cd8f - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 60, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x0019cd8f - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 62, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x0016cd8f - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 56, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x0017cd8f - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 58, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x0018cd8f - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 60, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x0019cd8f - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 62, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Query Config Information, Tag: 0x00000000 - Buffer Count: 0, Firmware Version: 0, Sector Count: 0, AoE: 0, CCmd: read config string -AoE length 18, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Query Config Information, Tag: 0x00000000 - Buffer Count: 16, Firmware Version: 16405, Sector Count: 2, AoE: 1, CCmd: read config string -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x001acd97 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 120, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x001bcd97 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 122, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x001ccd97 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 124, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x001dcd97 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 126, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x001acd97 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 120, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x001bcd97 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 122, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x001ccd97 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 124, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x001dcd97 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 126, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Query Config Information, Tag: 0x00000000 - Buffer Count: 0, Firmware Version: 0, Sector Count: 0, AoE: 0, CCmd: read config string -AoE length 18, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Query Config Information, Tag: 0x00000000 - Buffer Count: 16, Firmware Version: 16405, Sector Count: 2, AoE: 1, CCmd: read config string -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x001ecdfb - AFlags: [none], Err/Feature: 0, Sector Count: 1, Cmd/Status: 236 - lba0: 0, lba1: 0, lba2: 0, lba3: 160, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 534, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x001ecdfb - AFlags: [none], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 0, lba1: 0, lba2: 0, lba3: 160, lba4: 0, lba5: 0 - Data: 512 bytes -AoE length 18, Ver 1, Flags: [none] - Major: 0xffff, Minor: 0xff, Command: Query Config Information, Tag: 0x00000000 - Buffer Count: 0, Firmware Version: 0, Sector Count: 0, AoE: 0, CCmd: read config string -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x001f6eeb - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 8, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x001f6eeb - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 8, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00206eeb - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 10, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00216eeb - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 12, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00226eeb - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 14, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00206eeb - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 10, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00216eeb - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 12, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00226eeb - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 14, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00236ef0 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 0, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00236ef0 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 0, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00246ef0 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 2, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00256ef0 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 4, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00266ef0 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 6, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00246ef0 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 2, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00256ef0 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 4, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00266ef0 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 6, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00276ef3 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 24, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00286ef3 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 26, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00296ef3 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 28, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x002a6ef3 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 30, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00276ef3 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 24, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00286ef3 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 26, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00296ef3 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 28, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x002a6ef3 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 30, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x002b6ef7 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 56, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x002b6ef7 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 56, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x002c6ef7 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 58, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x002d6ef7 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 60, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x002e6ef7 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 62, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x002c6ef7 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 58, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x002d6ef7 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 60, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x002e6ef7 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 62, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x002f6efa - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 120, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00306efa - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 122, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00316efa - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 124, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00326efa - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 126, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x002f6efa - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 120, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00306efa - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 122, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00316efa - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 124, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00326efa - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 126, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00336f01 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 2, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00336f01 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 2, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00346f07 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 4, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00346f07 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 4, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00356f09 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 18, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00366f09 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 20, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00376f09 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 22, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00386f09 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 24, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00356f09 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 18, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00396f09 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 26, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x003a6f09 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 28, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x003b6f0a - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 30, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x003c6f0a - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 32, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00366f09 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 20, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00376f09 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 22, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00386f09 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 24, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00396f09 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 26, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x003a6f09 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 28, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x003b6f0a - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 30, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x003c6f0a - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 32, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x003d6f0f - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 34, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x003e6f12 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 16, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x003f6f12 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 36, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x003d6f0f - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 34, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x003e6f12 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 16, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x003f6f12 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 36, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00406f12 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 38, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00416f12 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 40, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00406f12 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 38, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00426f13 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 42, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00436f13 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 44, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00446f13 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 46, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00416f12 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 40, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00426f13 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 42, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00436f13 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 44, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00446f13 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 46, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00456f15 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 48, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00456f15 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 48, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 1046, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00466f16 - AFlags: [Ext48, Write], Err/Feature: 0, Sector Count: 2, Cmd/Status: 52 - lba0: 2, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 46, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00466f16 - AFlags: [Ext48, Write], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 2, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Query Config Information, Tag: 0x00000000 - Buffer Count: 0, Firmware Version: 0, Sector Count: 0, AoE: 0, CCmd: read config string -AoE length 18, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Query Config Information, Tag: 0x00000000 - Buffer Count: 16, Firmware Version: 16405, Sector Count: 2, AoE: 1, CCmd: read config string -AoE length 46, Ver 1, Flags: [none] - Major: 0xffff, Minor: 0xff, Command: Query Config Information, Tag: 0x00000000 - Buffer Count: 0, Firmware Version: 0, Sector Count: 0, AoE: 0, CCmd: read config string -AoE length 18, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Query Config Information, Tag: 0x00000000 - Buffer Count: 16, Firmware Version: 16405, Sector Count: 2, AoE: 1, CCmd: read config string -AoE length 1046, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x0047e470 - AFlags: [Ext48, Write], Err/Feature: 0, Sector Count: 2, Cmd/Status: 52 - lba0: 4, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 46, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x0047e470 - AFlags: [Ext48, Write], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 4, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 18, Ver 1, Flags: [none] - Major: 0xffff, Minor: 0xff, Command: Query Config Information, Tag: 0x00000000 - Buffer Count: 0, Firmware Version: 0, Sector Count: 0, AoE: 0, CCmd: read config string -AoE length 46, Ver 1, Flags: [none] - Major: 0xffff, Minor: 0xff, Command: Query Config Information, Tag: 0x00000000 - Buffer Count: 0, Firmware Version: 0, Sector Count: 0, AoE: 0, CCmd: read config string -AoE length 18, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Query Config Information, Tag: 0x00000000 - Buffer Count: 16, Firmware Version: 16405, Sector Count: 2, AoE: 1, CCmd: read config string -AoE length 18, Ver 1, Flags: [none] - Major: 0xffff, Minor: 0xff, Command: Query Config Information, Tag: 0x00000000 - Buffer Count: 0, Firmware Version: 0, Sector Count: 0, AoE: 0, CCmd: read config string -AoE length 46, Ver 1, Flags: [none] - Major: 0xffff, Minor: 0xff, Command: Query Config Information, Tag: 0x00000000 - Buffer Count: 0, Firmware Version: 0, Sector Count: 0, AoE: 0, CCmd: read config string -AoE length 18, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Query Config Information, Tag: 0x00000000 - Buffer Count: 16, Firmware Version: 16405, Sector Count: 2, AoE: 1, CCmd: read config string -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00484ae0 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 14, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00484ae0 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 14, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00494ae2 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36 - lba0: 12, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 1046, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00494ae2 - AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 12, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 1046, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x004a5ecd - AFlags: [Ext48, Write], Err/Feature: 0, Sector Count: 2, Cmd/Status: 52 - lba0: 76, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 46, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x004a5ecd - AFlags: [Ext48, Write], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 76, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 1046, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x004b5ecd - AFlags: [Ext48, Write], Err/Feature: 0, Sector Count: 2, Cmd/Status: 52 - lba0: 48, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 46, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x004b5ecd - AFlags: [Ext48, Write], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 48, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 1046, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x004c5ecd - AFlags: [Ext48, Write], Err/Feature: 0, Sector Count: 2, Cmd/Status: 52 - lba0: 12, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 46, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x004c5ecd - AFlags: [Ext48, Write], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 12, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 1046, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x004d5ecd - AFlags: [Ext48, Write], Err/Feature: 0, Sector Count: 2, Cmd/Status: 52 - lba0: 14, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 46, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x004d5ecd - AFlags: [Ext48, Write], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 14, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 1046, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x004e5ecd - AFlags: [Ext48, Write], Err/Feature: 0, Sector Count: 2, Cmd/Status: 52 - lba0: 16, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 46, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x004e5ecd - AFlags: [Ext48, Write], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 16, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 1046, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x004f5ecd - AFlags: [Ext48, Write], Err/Feature: 0, Sector Count: 2, Cmd/Status: 52 - lba0: 18, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 46, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x004f5ecd - AFlags: [Ext48, Write], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 18, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 1046, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00505ecd - AFlags: [Ext48, Write], Err/Feature: 0, Sector Count: 2, Cmd/Status: 52 - lba0: 2, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 46, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00505ecd - AFlags: [Ext48, Write], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 2, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 1046, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00515ecd - AFlags: [Ext48, Write], Err/Feature: 0, Sector Count: 2, Cmd/Status: 52 - lba0: 4, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 46, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00515ecd - AFlags: [Ext48, Write], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 4, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 1046, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00525ed2 - AFlags: [Ext48, Write], Err/Feature: 0, Sector Count: 2, Cmd/Status: 52 - lba0: 2, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 1024 bytes -AoE length 46, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00525ed2 - AFlags: [Ext48, Write], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 2, lba1: 0, lba2: 0, lba3: 0, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Query Config Information, Tag: 0x00000000 - Buffer Count: 0, Firmware Version: 0, Sector Count: 0, AoE: 0, CCmd: read config string -AoE length 18, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Query Config Information, Tag: 0x00000000 - Buffer Count: 16, Firmware Version: 16405, Sector Count: 2, AoE: 1, CCmd: read config string -AoE length 46, Ver 1, Flags: [none] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00535f2f - AFlags: [none], Err/Feature: 0, Sector Count: 1, Cmd/Status: 236 - lba0: 0, lba1: 0, lba2: 0, lba3: 160, lba4: 0, lba5: 0 - Data: 24 bytes -AoE length 534, Ver 1, Flags: [Response] - Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x00535f2f - AFlags: [none], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64 - lba0: 0, lba1: 0, lba2: 0, lba3: 160, lba4: 0, lba5: 0 - Data: 512 bytes diff --git a/tests/aoe_1.out b/tests/aoe_1.out deleted file mode 100644 index 1729195..0000000 --- a/tests/aoe_1.out +++ /dev/null @@ -1,186 +0,0 @@ -AoE length 18, Ver 1, Flags: [none] -AoE length 46, Ver 1, Flags: [none] -AoE length 18, Ver 0 -AoE length 46, Ver 1, Flags: [none] -AoE length 534, Ver 1, Flags: [Response] -AoE length 46, Ver 1, Flags: [none] -AoE length 46, Ver 1, Flags: [none] -AoE length 46, Ver 1, Flags: [none] -AoE length 46, Ver 1, Flags: [none] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 46, Ver 1, Flags: [none] -AoE length 46, Ver 1, Flags: [none] -AoE length 46, Ver 1, Flags: [none] -AoE length 46, Ver 1, Flags: [none] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 46, Ver 1, Flags: [none] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 46, Ver 1, Flags: [none] -AoE length 46, Ver 1, Flags: [none] -AoE length 46, Ver 1, Flags: [none] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 46, Ver 1, Flags: [none] -AoE length 46, Ver 1, Flags: [none] -AoE length 46, Ver 1, Flags: [none] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 46, Ver 1, Flags: [none] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 46, Ver 1, Flags: [none] -AoE length 46, Ver 1, Flags: [none] -AoE length 46, Ver 1, Flags: [none] -AoE length 46, Ver 1, Flags: [none] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 46, Ver 1, Flags: [none] -AoE length 46, Ver 1, Flags: [none] -AoE length 46, Ver 1, Flags: [none] -AoE length 46, Ver 1, Flags: [none] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 46, Ver 1, Flags: [none] -AoE length 18, Ver 1, Flags: [Response] -AoE length 46, Ver 1, Flags: [none] -AoE length 46, Ver 1, Flags: [none] -AoE length 46, Ver 1, Flags: [none] -AoE length 46, Ver 1, Flags: [none] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 46, Ver 1, Flags: [none] -AoE length 18, Ver 1, Flags: [Response] -AoE length 46, Ver 1, Flags: [none] -AoE length 534, Ver 1, Flags: [Response] -AoE length 18, Ver 1, Flags: [none] -AoE length 46, Ver 1, Flags: [none] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 46, Ver 1, Flags: [none] -AoE length 46, Ver 1, Flags: [none] -AoE length 46, Ver 1, Flags: [none] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 46, Ver 1, Flags: [none] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 46, Ver 1, Flags: [none] -AoE length 46, Ver 1, Flags: [none] -AoE length 46, Ver 1, Flags: [none] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 46, Ver 1, Flags: [none] -AoE length 46, Ver 1, Flags: [none] -AoE length 46, Ver 1, Flags: [none] -AoE length 46, Ver 1, Flags: [none] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 46, Ver 1, Flags: [none] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 46, Ver 1, Flags: [none] -AoE length 46, Ver 1, Flags: [none] -AoE length 46, Ver 1, Flags: [none] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 46, Ver 1, Flags: [none] -AoE length 46, Ver 1, Flags: [none] -AoE length 46, Ver 1, Flags: [none] -AoE length 46, Ver 1, Flags: [none] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 46, Ver 1, Flags: [none] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 46, Ver 1, Flags: [none] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 46, Ver 1, Flags: [none] -AoE length 46, Ver 1, Flags: [none] -AoE length 46, Ver 1, Flags: [none] -AoE length 46, Ver 1, Flags: [none] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 46, Ver 1, Flags: [none] -AoE length 46, Ver 1, Flags: [none] -AoE length 46, Ver 1, Flags: [none] -AoE length 46, Ver 1, Flags: [none] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 46, Ver 1, Flags: [none] -AoE length 46, Ver 1, Flags: [none] -AoE length 46, Ver 1, Flags: [none] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 46, Ver 1, Flags: [none] -AoE length 46, Ver 1, Flags: [none] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 46, Ver 1, Flags: [none] -AoE length 46, Ver 1, Flags: [none] -AoE length 46, Ver 1, Flags: [none] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 46, Ver 1, Flags: [none] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 1046, Ver 1, Flags: [none] -AoE length 46, Ver 1, Flags: [Response] -AoE length 46, Ver 1, Flags: [none] -AoE length 18, Ver 1, Flags: [Response] -AoE length 46, Ver 1, Flags: [none] -AoE length 18, Ver 1, Flags: [Response] -AoE length 1046, Ver 1, Flags: [none] -AoE length 46, Ver 1, Flags: [Response] -AoE length 18, Ver 1, Flags: [none] -AoE length 46, Ver 1, Flags: [none] -AoE length 18, Ver 1, Flags: [Response] -AoE length 18, Ver 1, Flags: [none] -AoE length 46, Ver 1, Flags: [none] -AoE length 18, Ver 1, Flags: [Response] -AoE length 46, Ver 1, Flags: [none] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 46, Ver 1, Flags: [none] -AoE length 1046, Ver 1, Flags: [Response] -AoE length 1046, Ver 1, Flags: [none] -AoE length 46, Ver 1, Flags: [Response] -AoE length 1046, Ver 1, Flags: [none] -AoE length 46, Ver 1, Flags: [Response] -AoE length 1046, Ver 1, Flags: [none] -AoE length 46, Ver 1, Flags: [Response] -AoE length 1046, Ver 1, Flags: [none] -AoE length 46, Ver 1, Flags: [Response] -AoE length 1046, Ver 1, Flags: [none] -AoE length 46, Ver 1, Flags: [Response] -AoE length 1046, Ver 1, Flags: [none] -AoE length 46, Ver 1, Flags: [Response] -AoE length 1046, Ver 1, Flags: [none] -AoE length 46, Ver 1, Flags: [Response] -AoE length 1046, Ver 1, Flags: [none] -AoE length 46, Ver 1, Flags: [Response] -AoE length 1046, Ver 1, Flags: [none] -AoE length 46, Ver 1, Flags: [Response] -AoE length 46, Ver 1, Flags: [none] -AoE length 18, Ver 1, Flags: [Response] -AoE length 46, Ver 1, Flags: [none] -AoE length 534, Ver 1, Flags: [Response] diff --git a/tests/babel.pcap b/tests/babel.pcap deleted file mode 100644 index a9ab2b8..0000000 Binary files a/tests/babel.pcap and /dev/null differ diff --git a/tests/babel1.out b/tests/babel1.out deleted file mode 100644 index de3d37e..0000000 --- a/tests/babel1.out +++ /dev/null @@ -1,25 +0,0 @@ -IP6 fe80::68d3:1235:d068:1f9e.6697 > ff02::1:6.6697: babel 2 (8) hello -IP6 fe80::3428:af91:251:d626.6697 > ff02::1:6.6697: babel 2 (8) hello -IP6 fe80::68d3:1235:d068:1f9e.6697 > ff02::1:6.6697: babel 2 (110) update/prefix/id nh update update/prefix/id update update -IP6 fe80::68d3:1235:d068:1f9e.6697 > ff02::1:6.6697: babel 2 (24) hello ihu -IP6 fe80::3428:af91:251:d626.6697 > ff02::1:6.6697: babel 2 (8) hello -IP6 fe80::68d3:1235:d068:1f9e.6697 > ff02::1:6.6697: babel 2 (8) hello -IP6 fe80::3428:af91:251:d626.6697 > ff02::1:6.6697: babel 2 (24) hello ihu -IP6 fe80::68d3:1235:d068:1f9e.6697 > ff02::1:6.6697: babel 2 (8) hello -IP6 fe80::3428:af91:251:d626.6697 > ff02::1:6.6697: babel 2 (8) hello -IP6 fe80::68d3:1235:d068:1f9e.6697 > ff02::1:6.6697: babel 2 (52) update/prefix/id update/prefix update/prefix -IP6 fe80::3428:af91:251:d626.6697 > ff02::1:6.6697: babel 2 (32) mh-request -IP6 fe80::68d3:1235:d068:1f9e.5359 > ff02::cca6:c0f9:e182:5359.5359: AHCP Version 1 -IP6 fe80::68d3:1235:d068:1f9e.5359 > ff02::cca6:c0f9:e182:5359.5359: AHCP Version 1 -IP6 fe80::3428:af91:251:d626.5359 > fe80::68d3:1235:d068:1f9e.5359: AHCP Version 1 -IP6 fe80::68d3:1235:d068:1f9e.5359 > ff02::cca6:c0f9:e182:5359.5359: AHCP Version 1 -IP6 fe80::3428:af91:251:d626.5359 > ff02::cca6:c0f9:e182:5359.5359: AHCP Version 1 -IP6 fe80::68d3:1235:d068:1f9e.6697 > ff02::1:6.6697: babel 2 (28) update/prefix/id -IP6 fe80::3428:af91:251:d626.6697 > ff02::1:6.6697: babel 2 (32) mh-request -IP6 fe80::3428:af91:251:d626.5359 > fe80::68d3:1235:d068:1f9e.5359: AHCP Version 1 -IP6 fe80::68d3:1235:d068:1f9e.5359 > ff02::cca6:c0f9:e182:5359.5359: AHCP Version 1 -IP6 fe80::68d3:1235:d068:1f9e.6697 > ff02::1:6.6697: babel 2 (24) hello ihu -IP6 fe80::68d3:1235:d068:1f9e.6697 > ff02::1:6.6697: babel 2 (28) update/prefix/id -IP6 fe80::3428:af91:251:d626.6697 > ff02::1:6.6697: babel 2 (32) mh-request -IP6 fe80::3428:af91:251:d626.5359 > fe80::68d3:1235:d068:1f9e.5359: AHCP Version 1 -IP6 fe80::68d3:1235:d068:1f9e > ff02::16: HBH ICMP6, multicast listener report v2, 2 group record(s), length 48 diff --git a/tests/babel1v.out b/tests/babel1v.out deleted file mode 100644 index d483a14..0000000 --- a/tests/babel1v.out +++ /dev/null @@ -1,67 +0,0 @@ -IP6 (hlim 1, next-header UDP (17) payload length: 20) fe80::68d3:1235:d068:1f9e.6697 > ff02::1:6.6697: [udp sum ok] babel 2 (8) - Hello seqno 8042 interval 20.00s -IP6 (hlim 1, next-header UDP (17) payload length: 20) fe80::3428:af91:251:d626.6697 > ff02::1:6.6697: [udp sum ok] babel 2 (8) - Hello seqno 40102 interval 20.00s -IP6 (hlim 1, next-header UDP (17) payload length: 122) fe80::68d3:1235:d068:1f9e.6697 > ff02::1:6.6697: [udp sum ok] babel 2 (110) - Update/prefix/id 2001:660:3301:8063:218:84ff:fe1a:615d/128 metric 1 seqno 32272 interval 80.00s sub-diversity 6 - Next Hop 192.168.4.25 - Update 192.168.4.195/32 metric 1 seqno 32272 interval 80.00s sub-diversity 6 - Update/prefix/id 2001:660:3301:8063:218:f3ff:fea9:914e/128 metric 0 seqno 40149 interval 80.00s sub-diversity empty - Update ::/0 metric 196 seqno 40149 interval 80.00s sub-diversity empty - Update 192.168.4.25/32 metric 0 seqno 40149 interval 80.00s sub-diversity empty -IP6 (hlim 1, next-header UDP (17) payload length: 36) fe80::68d3:1235:d068:1f9e.6697 > ff02::1:6.6697: [udp sum ok] babel 2 (24) - Hello seqno 8043 interval 20.00s - IHU fe80::3428:af91:251:d626 txcost 96 interval 60.00s -IP6 (hlim 1, next-header UDP (17) payload length: 20) fe80::3428:af91:251:d626.6697 > ff02::1:6.6697: [udp sum ok] babel 2 (8) - Hello seqno 40103 interval 20.00s -IP6 (hlim 1, next-header UDP (17) payload length: 20) fe80::68d3:1235:d068:1f9e.6697 > ff02::1:6.6697: [udp sum ok] babel 2 (8) - Hello seqno 8044 interval 20.00s -IP6 (hlim 1, next-header UDP (17) payload length: 36) fe80::3428:af91:251:d626.6697 > ff02::1:6.6697: [udp sum ok] babel 2 (24) - Hello seqno 40104 interval 20.00s - IHU fe80::68d3:1235:d068:1f9e txcost 96 interval 60.00s -IP6 (hlim 1, next-header UDP (17) payload length: 20) fe80::68d3:1235:d068:1f9e.6697 > ff02::1:6.6697: [udp sum ok] babel 2 (8) - Hello seqno 8045 interval 20.00s -IP6 (hlim 1, next-header UDP (17) payload length: 20) fe80::3428:af91:251:d626.6697 > ff02::1:6.6697: [udp sum ok] babel 2 (8) - Hello seqno 40105 interval 20.00s -IP6 (hlim 1, next-header UDP (17) payload length: 64) fe80::68d3:1235:d068:1f9e.6697 > ff02::1:6.6697: [udp sum ok] babel 2 (52) - Update/prefix/id 2001:660:3301:8063:218:f3ff:fea9:914e/128 metric 65535 seqno 40149 interval 80.00s - Update/prefix 2001:660:3301:8063:218:f3ff:fea9:914e/128 metric 65535 seqno 40149 interval 80.00s - Update/prefix 2001:660:3301:8063:218:f3ff:fea9:914e/128 metric 65535 seqno 40149 interval 80.00s -IP6 (hlim 1, next-header UDP (17) payload length: 44) fe80::3428:af91:251:d626.6697 > ff02::1:6.6697: [udp sum ok] babel 2 (32) - MH-Request (127 hops) for 2001:660:3301:8063:218:f3ff:fea9:914e/128 seqno 40150 id 02:18:f3:ff:fe:a9:91:4e -IP6 (hlim 1, next-header UDP (17) payload length: 50) fe80::68d3:1235:d068:1f9e.5359 > ff02::cca6:c0f9:e182:5359.5359: [udp sum ok] AHCP Version 1 - Hopcount 1, Original Hopcount 1, Nonce 0xde3e5127, Source Id 02:18:f3:ff:fe:a9:91:4e, Destination Id ff:ff:ff:ff:ff:ff:ff:ff - Discover, Length 14 -IP6 (hlim 1, next-header UDP (17) payload length: 50) fe80::68d3:1235:d068:1f9e.5359 > ff02::cca6:c0f9:e182:5359.5359: [udp sum ok] AHCP Version 1 - Hopcount 2, Original Hopcount 2, Nonce 0xdf3e5127, Source Id 02:18:f3:ff:fe:a9:91:4e, Destination Id ff:ff:ff:ff:ff:ff:ff:ff - Discover, Length 14 -IP6 (hlim 64, next-header UDP (17) payload length: 188) fe80::3428:af91:251:d626.5359 > fe80::68d3:1235:d068:1f9e.5359: [udp sum ok] AHCP Version 1 - Hopcount 1, Original Hopcount 1, Nonce 0xc9b83d0d, Source Id 79:40:14:7f:b6:6d:c3:29, Destination Id 02:18:f3:ff:fe:a9:91:4e - Offer, Length 152 -IP6 (hlim 1, next-header UDP (17) payload length: 50) fe80::68d3:1235:d068:1f9e.5359 > ff02::cca6:c0f9:e182:5359.5359: [udp sum ok] AHCP Version 1 - Hopcount 1, Original Hopcount 1, Nonce 0xe03e5127, Source Id 02:18:f3:ff:fe:a9:91:4e, Destination Id 79:40:14:7f:b6:6d:c3:29 - Request, Length 14 -IP6 (hlim 1, next-header UDP (17) payload length: 50) fe80::3428:af91:251:d626.5359 > ff02::cca6:c0f9:e182:5359.5359: [udp sum ok] AHCP Version 1 - Hopcount 1, Original Hopcount 2, Nonce 0xdf3e5127, Source Id 02:18:f3:ff:fe:a9:91:4e, Destination Id ff:ff:ff:ff:ff:ff:ff:ff - Discover, Length 14 -IP6 (hlim 1, next-header UDP (17) payload length: 40) fe80::68d3:1235:d068:1f9e.6697 > ff02::1:6.6697: [udp sum ok] babel 2 (28) - Update/prefix/id 2001:660:3301:8063:218:f3ff:fea9:914e/128 metric 65535 seqno 40149 interval 80.00s -IP6 (hlim 1, next-header UDP (17) payload length: 44) fe80::3428:af91:251:d626.6697 > ff02::1:6.6697: [udp sum ok] babel 2 (32) - MH-Request (127 hops) for 2001:660:3301:8063:218:f3ff:fea9:914e/128 seqno 40150 id 02:18:f3:ff:fe:a9:91:4e -IP6 (hlim 64, next-header UDP (17) payload length: 188) fe80::3428:af91:251:d626.5359 > fe80::68d3:1235:d068:1f9e.5359: [udp sum ok] AHCP Version 1 - Hopcount 2, Original Hopcount 2, Nonce 0xcab83d0d, Source Id 79:40:14:7f:b6:6d:c3:29, Destination Id 02:18:f3:ff:fe:a9:91:4e - Offer, Length 152 -IP6 (hlim 1, next-header UDP (17) payload length: 50) fe80::68d3:1235:d068:1f9e.5359 > ff02::cca6:c0f9:e182:5359.5359: [udp sum ok] AHCP Version 1 - Hopcount 1, Original Hopcount 1, Nonce 0xe13e5127, Source Id 02:18:f3:ff:fe:a9:91:4e, Destination Id 79:40:14:7f:b6:6d:c3:29 - Request, Length 14 -IP6 (hlim 1, next-header UDP (17) payload length: 36) fe80::68d3:1235:d068:1f9e.6697 > ff02::1:6.6697: [udp sum ok] babel 2 (24) - Hello seqno 8046 interval 20.00s - IHU fe80::3428:af91:251:d626 txcost 96 interval 60.00s -IP6 (hlim 1, next-header UDP (17) payload length: 40) fe80::68d3:1235:d068:1f9e.6697 > ff02::1:6.6697: [udp sum ok] babel 2 (28) - Update/prefix/id 2001:660:3301:8063:218:f3ff:fea9:914e/128 metric 65535 seqno 40149 interval 80.00s -IP6 (hlim 1, next-header UDP (17) payload length: 44) fe80::3428:af91:251:d626.6697 > ff02::1:6.6697: [udp sum ok] babel 2 (32) - MH-Request (127 hops) for 2001:660:3301:8063:218:f3ff:fea9:914e/128 seqno 40150 id 02:18:f3:ff:fe:a9:91:4e -IP6 (hlim 64, next-header UDP (17) payload length: 188) fe80::3428:af91:251:d626.5359 > fe80::68d3:1235:d068:1f9e.5359: [udp sum ok] AHCP Version 1 - Hopcount 1, Original Hopcount 1, Nonce 0xcbb83d0d, Source Id 79:40:14:7f:b6:6d:c3:29, Destination Id 02:18:f3:ff:fe:a9:91:4e - Ack, Length 152 -IP6 (hlim 1, next-header Options (0) payload length: 56) fe80::68d3:1235:d068:1f9e > ff02::16: HBH (rtalert: 0x0000) (padn) [icmp6 sum ok] ICMP6, multicast listener report v2, 2 group record(s) [gaddr ff02::1:6 to_ex, 0 source(s)] [gaddr ff02::cca6:c0f9:e182:5359 to_ex, 0 source(s)] diff --git a/tests/babel_auth.out b/tests/babel_auth.out deleted file mode 100644 index c918495..0000000 --- a/tests/babel_auth.out +++ /dev/null @@ -1,13 +0,0 @@ -IP6 (class 0xc0, hlim 1, next-header UDP (17) payload length: 436) fe80::b299:28ff:fec8:d646.6696 > ff02::1:6.6696: [udp sum ok] babel 2 (424) - Hello seqno 58134 interval 4.00s - Update/id ::/0 metric 65535 seqno 41391 interval infinity - Request for any - TS/PC timestamp 1339081200 packetcounter 2 - HMAC key-id 30 digest-20 AD0FA7CD8D5A1898EC5409C8EDDA68B3ACA21B80 - HMAC key-id 50 digest-32 8239F283D985047FA4B88597FDE3246455C6E4DD917B1441C2F3A82B9F737674 - HMAC key-id 1000 digest-64 6718CB4C2BB0976C127AB3CCCBFA1105A1D158F035BC9FAD86B0610A7ACD27E5A3D5A3090FFB0312D7CBB31834E5D3EA2B68CD1FEC3CFB9CE731D16BA8FEBA8C - HMAC key-id 1000 digest-48 D2A5B80FF9D006907E3B6601C0C255D7D12D6EC61815E413A334E2A0D9271C75AFBC086C070C714E3EFF3496C20C56FB - HMAC key-id 100 digest-20 7213CED66FE7154034EC64CD14AE4142A092DF33 - HMAC key-id 2000 digest-64 2A5D9D55393B19E440FAC49BDA521E18A7FE77F7AB4A90377009E46E2FFE49336435C7E4E7BE215996DF4F59C167EA1CCCDB4FF788DA29A30E34D974307ADFF4 - HMAC key-id 2000 digest-48 FE91AF27EEE137EF489F37FEE449100CDA8CCB3E794D0C4A225D12724A8CE2FFC85811B879CC566FD172269847091ED1 - HMAC key-id 3000 digest-64 38C4D82883A5778500D728D1E243E7579DE96FA726C9DB7F0805C52E96FEFDCE7A5FB9AF2CB845703926EAAB43C3E44989D6CCB158FC06DB455E9F8D0550B54F diff --git a/tests/babel_auth.pcap b/tests/babel_auth.pcap deleted file mode 100644 index 941e628..0000000 Binary files a/tests/babel_auth.pcap and /dev/null differ diff --git a/tests/babel_pad1.out b/tests/babel_pad1.out deleted file mode 100644 index c42f2eb..0000000 --- a/tests/babel_pad1.out +++ /dev/null @@ -1,2 +0,0 @@ -IP6 fe80::b299:28ff:fec8:d646.6696 > ff02::1:6.6696: babel 2 (9) hello pad1 -IP6 fe80::b299:28ff:fec8:d646.6696 > ff02::1:6.6696: babel 2 (60) hello pad1 nh pad1 router-id pad1 update pad1 update pad1 diff --git a/tests/babel_pad1.pcap b/tests/babel_pad1.pcap deleted file mode 100644 index 0e87911..0000000 Binary files a/tests/babel_pad1.pcap and /dev/null differ diff --git a/tests/babel_rtt.out b/tests/babel_rtt.out deleted file mode 100644 index a95829a..0000000 --- a/tests/babel_rtt.out +++ /dev/null @@ -1,25 +0,0 @@ -IP6 (class 0xc0, hlim 1, next-header UDP (17) payload length: 26) fe80::5054:ff:fe85:5da9.6696 > ff02::1:6.6696: [udp sum ok] babel 2 (14) - Hello seqno 58805 interval 4.00s sub-timestamp 2222.954827s -IP6 (class 0xc0, hlim 1, next-header UDP (17) payload length: 52) fe80::5054:ff:fe23:4567.6696 > ff02::1:6.6696: [udp sum ok] babel 2 (40) - Hello seqno 15585 interval 4.00s sub-timestamp 94.665527s - IHU fe80::5054:ff:fe85:5da9 txcost 96 interval 12.00s sub-timestamp 2222.954827s|91.378052s -IP6 (class 0xc0, hlim 1, next-header UDP (17) payload length: 52) fe80::5054:ff:fe85:5da9.6696 > ff02::1:6.6696: [udp sum ok] babel 2 (40) - Hello seqno 58806 interval 4.00s sub-timestamp 2226.449854s - IHU fe80::5054:ff:fe23:4567 txcost 96 interval 12.00s sub-timestamp 90.173759s|2222.137366s -IP6 (class 0xc0, hlim 1, next-header UDP (17) payload length: 26) fe80::5054:ff:fe85:5da9.6696 > ff02::1:6.6696: [udp sum ok] babel 2 (14) - Hello seqno 58807 interval 4.00s sub-timestamp 2229.725353s -IP6 (class 0xc0, hlim 1, next-header UDP (17) payload length: 26) fe80::5054:ff:fe23:4567.6696 > ff02::1:6.6696: [udp sum ok] babel 2 (14) - Hello seqno 15586 interval 4.00s sub-timestamp 98.956759s -IP6 (class 0xc0, hlim 1, next-header UDP (17) payload length: 26) fe80::5054:ff:fe23:4567.6696 > ff02::1:6.6696: [udp sum ok] babel 2 (14) - Hello seqno 15587 interval 4.00s sub-timestamp 102.558329s -IP6 (class 0xc0, hlim 1, next-header UDP (17) payload length: 26) fe80::5054:ff:fe85:5da9.6696 > ff02::1:6.6696: [udp sum ok] babel 2 (14) - Hello seqno 58808 interval 4.00s sub-timestamp 2234.612063s -IP6 (class 0xc0, hlim 1, next-header UDP (17) payload length: 52) fe80::5054:ff:fe23:4567.6696 > ff02::1:6.6696: [udp sum ok] babel 2 (40) - Hello seqno 15588 interval 4.00s sub-timestamp 106.492002s - IHU fe80::5054:ff:fe85:5da9 txcost 96 interval 12.00s sub-timestamp 2234.612063s|103.034525s -IP6 (class 0xc0, hlim 1, next-header UDP (17) payload length: 88) fe80::5054:ff:fe85:5da9.6696 > ff02::1:6.6696: [udp sum ok] babel 2 (76) - Hello seqno 58809 interval 4.00s sub-timestamp 2239.274046s - IHU fe80::5054:ff:fe23:4567 txcost 96 interval 12.00s sub-timestamp 98.956759s|2230.863572s - Next Hop 192.168.42.1 - Router Id 48:5f:08:26:dc:36:6d:ad - Update 192.168.42.1/32 metric 0 seqno 61070 interval 16.00s diff --git a/tests/babel_rtt.pcap b/tests/babel_rtt.pcap deleted file mode 100644 index b48d161..0000000 Binary files a/tests/babel_rtt.pcap and /dev/null differ diff --git a/tests/bgp-aigp.out b/tests/bgp-aigp.out deleted file mode 100644 index 3fd6678..0000000 --- a/tests/bgp-aigp.out +++ /dev/null @@ -1,20 +0,0 @@ -IP (tos 0xc0, ttl 64, id 35063, offset 0, flags [none], proto TCP (6), length 182) - 172.16.20.5.59631 > 172.16.20.3.179: Flags [P.], cksum 0xe112 (correct), seq 3923783171:3923783301, ack 3341773693, win 16384, options [nop,nop,TS val 32734022 ecr 32695671], length 130: BGP - Update Message (2), length: 100 - Origin (1), length: 1, Flags [T]: Incomplete - AS Path (2), length: 0, Flags [T]: empty - Multi Exit Discriminator (4), length: 4, Flags [O]: 0 - Local Preference (5), length: 4, Flags [T]: 100 - Community (8), length: 4, Flags [OT]: 65000:11201 - Originator ID (9), length: 4, Flags [O]: 172.16.21.4 - Cluster List (10), length: 4, Flags [O]: 172.16.20.5 - Accumulated IGP Metric (26), length: 11, Flags [O]: - AIGP TLV (1), length 11, metric 2000 - Multi-Protocol Reach NLRI (14), length: 17, Flags [OE]: - AFI: IPv4 (1), SAFI: labeled Unicast (4) - nexthop: 172.16.20.5, nh-length: 4, no SNPA - 172.16.21.4/32, label:300096 (bottom) - Update Message (2), length: 30 - Multi-Protocol Unreach NLRI (15), length: 3, Flags [OE]: - AFI: IPv4 (1), SAFI: labeled Unicast (4) - End-of-Rib Marker (empty NLRI) diff --git a/tests/bgp-aigp.pcap b/tests/bgp-aigp.pcap deleted file mode 100644 index 1e55e19..0000000 Binary files a/tests/bgp-aigp.pcap and /dev/null differ diff --git a/tests/bgp-infinite-loop.pcap b/tests/bgp-infinite-loop.pcap deleted file mode 100644 index 9f07d41..0000000 Binary files a/tests/bgp-infinite-loop.pcap and /dev/null differ diff --git a/tests/bgp_infloop-v.out b/tests/bgp_infloop-v.out deleted file mode 100644 index d79a6aa..0000000 --- a/tests/bgp_infloop-v.out +++ /dev/null @@ -1,15 +0,0 @@ -IP (tos 0x0, ttl 128, id 1467, offset 0, flags [DF], proto TCP (6), length 74) - 196.59.48.65.14214 > 192.168.1.1.179: Flags [P.], cksum 0xbec1 (correct), seq 2470159403:2470159437, ack 160570221, win 8192, length 34: BGP - Update Message (2), length: 19[|BGP] -IP (tos 0x0, ttl 64, id 39449, offset 0, flags [DF], proto TCP (6), length 74) - 235.101.90.12.60082 > 192.168.1.1.179: Flags [P.], cksum 0x742d (correct), seq 1978178:1978212, ack 2473062416, win 4096, length 34: BGP - Update Message (2), length: 19[|BGP] -IP (tos 0x0, ttl 128, id 43331, offset 0, flags [DF], proto TCP (6), length 74) - 179.110.109.87.40936 > 192.168.1.1.179: Flags [P.], cksum 0xd82d (correct), seq 3014673177:3014673211, ack 1498443316, win 4096, length 34: BGP - Update Message (2), length: 19[|BGP] -IP (tos 0x0, ttl 64, id 51082, offset 0, flags [DF], proto TCP (6), length 74) - 114.227.144.98.32757 > 192.168.1.1.179: Flags [P.], cksum 0xb456 (correct), seq 1117364848:1117364882, ack 3778435416, win 4096, length 34: BGP - Update Message (2), length: 19[|BGP] -IP (tos 0x0, ttl 64, id 51082, offset 0, flags [DF], proto TCP (6), length 74) - 114.227.144.98.32757 > 192.168.1.1.179: Flags [P.], cksum 0xb456 (correct), seq 0:34, ack 1, win 4096, length 34: BGP - Update Message (2), length: 19[|BGP] diff --git a/tests/bgp_vpn_attrset.out b/tests/bgp_vpn_attrset.out deleted file mode 100644 index c62c8d5..0000000 --- a/tests/bgp_vpn_attrset.out +++ /dev/null @@ -1,19 +0,0 @@ -IP (tos 0xc0, ttl 62, id 58628, offset 0, flags [none], proto TCP (6), length 173) - 12.4.4.4.2051 > 12.1.1.1.179: Flags [P.], cksum 0xcf18 (correct), seq 3293077573:3293077694, ack 3348108582, win 16384, options [nop,nop,TS val 383131 ecr 890299], length 121: BGP - Update Message (2), length: 121 - Origin (1), length: 1, Flags [T]: IGP - AS Path (2), length: 0, Flags [T]: empty - Local Preference (5), length: 4, Flags [T]: 100 - Extended Community (16), length: 8, Flags [OT]: - target (0x0002), Flags [none]: 300:300 (= 0.0.1.44) - Attribute Set (128), length: 36, Flags [OT]: - Origin AS: 65001 - Origin (1), length: 1, Flags [T]: IGP - AS Path (2), length: 4, Flags [T]: 5555 - Local Preference (5), length: 4, Flags [T]: 44 - Originator ID (9), length: 4, Flags [O]: 22.5.5.5 - Cluster List (10), length: 4, Flags [O]: 22.5.5.5 - Multi-Protocol Reach NLRI (14), length: 30, Flags [OE]: - AFI: IPv4 (1), SAFI: labeled VPN Unicast (128) - nexthop: RD: 0:0 (= 0.0.0.0), 12.4.4.4, nh-length: 12, no SNPA - RD: 500:500 (= 0.0.1.244), 133.0.0.0/8, label:100208 (bottom) diff --git a/tests/bgp_vpn_attrset.pcap b/tests/bgp_vpn_attrset.pcap deleted file mode 100644 index e60aff5..0000000 Binary files a/tests/bgp_vpn_attrset.pcap and /dev/null differ diff --git a/tests/cdp-v.out b/tests/cdp-v.out deleted file mode 100644 index eb578bf..0000000 --- a/tests/cdp-v.out +++ /dev/null @@ -1,57 +0,0 @@ -CDPv2, ttl: 180s, checksum: 0xb0bd (unverified), length 378 - Device-ID (0x01), value length: 6 bytes: 'Switch' - Version String (0x05), value length: 192 bytes: - Cisco IOS Software, C3560 Software (C3560-ADVIPSERVICESK9-M), Version 12.2(25)SEB4, RELEASE SOFTWARE (fc1) - Copyright (c) 1986-2005 by Cisco Systems, Inc. - Compiled Tue 30-Aug-05 17:56 by yenanh - Platform (0x06), value length: 20 bytes: 'cisco WS-C3560G-24PS' - Address (0x02), value length: 13 bytes: IPv4 (1) 192.168.0.1 - Port-ID (0x03), value length: 18 bytes: 'GigabitEthernet0/5' - Capability (0x04), value length: 4 bytes: (0x00000028): L2 Switch, IGMP snooping - Protocol-Hello option (0x08), value length: 32 bytes: - VTP Management Domain (0x09), value length: 3 bytes: 'Lab' - Native VLAN ID (0x0a), value length: 2 bytes: 1 - Duplex (0x0b), value length: 1 byte: full - AVVID trust bitmap (0x12), value length: 1 byte: 0x00 - AVVID untrusted ports CoS (0x13), value length: 1 byte: 0x00 - Management Addresses (0x16), value length: 13 bytes: IPv4 (1) 192.168.0.1 - unknown field type (0x1a), value length: 12 bytes: - 0x0000: 0000 0001 0000 0000 ffff ffff -CDPv2, ttl: 180s, checksum: 0xb0bd (unverified), length 378 - Device-ID (0x01), value length: 6 bytes: 'Switch' - Version String (0x05), value length: 192 bytes: - Cisco IOS Software, C3560 Software (C3560-ADVIPSERVICESK9-M), Version 12.2(25)SEB4, RELEASE SOFTWARE (fc1) - Copyright (c) 1986-2005 by Cisco Systems, Inc. - Compiled Tue 30-Aug-05 17:56 by yenanh - Platform (0x06), value length: 20 bytes: 'cisco WS-C3560G-24PS' - Address (0x02), value length: 13 bytes: IPv4 (1) 192.168.0.1 - Port-ID (0x03), value length: 18 bytes: 'GigabitEthernet0/5' - Capability (0x04), value length: 4 bytes: (0x00000028): L2 Switch, IGMP snooping - Protocol-Hello option (0x08), value length: 32 bytes: - VTP Management Domain (0x09), value length: 3 bytes: 'Lab' - Native VLAN ID (0x0a), value length: 2 bytes: 1 - Duplex (0x0b), value length: 1 byte: full - AVVID trust bitmap (0x12), value length: 1 byte: 0x00 - AVVID untrusted ports CoS (0x13), value length: 1 byte: 0x00 - Management Addresses (0x16), value length: 13 bytes: IPv4 (1) 192.168.0.1 - unknown field type (0x1a), value length: 12 bytes: - 0x0000: 0000 0001 0000 0000 ffff ffff -CDPv2, ttl: 180s, checksum: 0xb0bd (unverified), length 378 - Device-ID (0x01), value length: 6 bytes: 'Switch' - Version String (0x05), value length: 192 bytes: - Cisco IOS Software, C3560 Software (C3560-ADVIPSERVICESK9-M), Version 12.2(25)SEB4, RELEASE SOFTWARE (fc1) - Copyright (c) 1986-2005 by Cisco Systems, Inc. - Compiled Tue 30-Aug-05 17:56 by yenanh - Platform (0x06), value length: 20 bytes: 'cisco WS-C3560G-24PS' - Address (0x02), value length: 13 bytes: IPv4 (1) 192.168.0.1 - Port-ID (0x03), value length: 18 bytes: 'GigabitEthernet0/5' - Capability (0x04), value length: 4 bytes: (0x00000028): L2 Switch, IGMP snooping - Protocol-Hello option (0x08), value length: 32 bytes: - VTP Management Domain (0x09), value length: 3 bytes: 'Lab' - Native VLAN ID (0x0a), value length: 2 bytes: 1 - Duplex (0x0b), value length: 1 byte: full - AVVID trust bitmap (0x12), value length: 1 byte: 0x00 - AVVID untrusted ports CoS (0x13), value length: 1 byte: 0x00 - Management Addresses (0x16), value length: 13 bytes: IPv4 (1) 192.168.0.1 - unknown field type (0x1a), value length: 12 bytes: - 0x0000: 0000 0001 0000 0000 ffff ffff diff --git a/tests/chdlc-slarp-short.pcap b/tests/chdlc-slarp-short.pcap deleted file mode 100644 index 41313dc..0000000 Binary files a/tests/chdlc-slarp-short.pcap and /dev/null differ diff --git a/tests/chdlc-slarp.pcap b/tests/chdlc-slarp.pcap deleted file mode 100644 index 1521443..0000000 Binary files a/tests/chdlc-slarp.pcap and /dev/null differ diff --git a/tests/crypto.sh b/tests/crypto.sh deleted file mode 100644 index bd41921..0000000 --- a/tests/crypto.sh +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/sh - -# Only attempt OpenSSL-specific tests when compiled with the library. - -if grep '^#define HAVE_LIBCRYPTO 1$' ../config.h >/dev/null -then - ./TESTonce esp1 02-sunrise-sunset-esp.pcap esp1.out '-t -E "0x12345678@192.1.2.45 3des-cbc-hmac96:0x4043434545464649494a4a4c4c4f4f515152525454575758"' - ./TESTonce esp2 08-sunrise-sunset-esp2.pcap esp2.out '-t -E "0x12345678@192.1.2.45 3des-cbc-hmac96:0x43434545464649494a4a4c4c4f4f51515252545457575840,0xabcdabcd@192.0.1.1 3des-cbc-hmac96:0x434545464649494a4a4c4c4f4f5151525254545757584043"' - ./TESTonce esp3 02-sunrise-sunset-esp.pcap esp1.out '-t -E "3des-cbc-hmac96:0x4043434545464649494a4a4c4c4f4f515152525454575758"' - # Reading the secret(s) from a file does not work with Capsicum. - if grep '^#define HAVE_CAPSICUM 1$' ../config.h >/dev/null - then - FORMAT=' %-30s: TEST SKIPPED (compiled w/Capsicum)\n' - printf "$FORMAT" esp4 - printf "$FORMAT" esp5 - printf "$FORMAT" espudp1 - printf "$FORMAT" ikev2pI2 - printf "$FORMAT" isakmp4 - else - ./TESTonce esp4 08-sunrise-sunset-esp2.pcap esp2.out '-t -E "file esp-secrets.txt"' - ./TESTonce esp5 08-sunrise-sunset-aes.pcap esp5.out '-t -E "file esp-secrets.txt"' - ./TESTonce espudp1 espudp1.pcap espudp1.out '-nnnn -t -E "file esp-secrets.txt"' - ./TESTonce ikev2pI2 ikev2pI2.pcap ikev2pI2.out '-t -E "file ikev2pI2-secrets.txt" -v -v -v -v' - ./TESTonce isakmp4 isakmp4500.pcap isakmp4.out '-t -E "file esp-secrets.txt"' - fi -else - FORMAT=' %-30s: TEST SKIPPED (compiled w/o OpenSSL)\n' - printf "$FORMAT" esp1 - printf "$FORMAT" esp2 - printf "$FORMAT" esp3 - printf "$FORMAT" esp4 - printf "$FORMAT" esp5 - printf "$FORMAT" espudp1 - printf "$FORMAT" ikev2pI2 - printf "$FORMAT" isakmp4 -fi diff --git a/tests/cve-2014-8767-OLSR.out b/tests/cve-2014-8767-OLSR.out deleted file mode 100644 index edfb067..0000000 --- a/tests/cve-2014-8767-OLSR.out +++ /dev/null @@ -1,4 +0,0 @@ -IP (tos 0x15,ECT(1), ttl 77, id 62335, offset 0, flags [DF], proto UDP (17), length 61, bad cksum 30c6 (->22af)!) - 10.1.1.104.698 > 10.2.2.2.514: OLSRv4, seq 0x0202, length 33 - TC Message (0x02), originator 2.2.2.2, ttl 2, hop 2 - vtime 0.070s, msg-seq 0x0202, length 2 (invalid) diff --git a/tests/cve-2014-8767-OLSR.pcap b/tests/cve-2014-8767-OLSR.pcap deleted file mode 100644 index 67036ed..0000000 Binary files a/tests/cve-2014-8767-OLSR.pcap and /dev/null differ diff --git a/tests/cve-2014-8768-Geonet.out b/tests/cve-2014-8768-Geonet.out deleted file mode 100644 index 4b7182d..0000000 --- a/tests/cve-2014-8768-Geonet.out +++ /dev/null @@ -1 +0,0 @@ -GeoNet src:07:07:07:07:07:07; v:12 NH:6-Unknown HT:5-1-TopoScopeBcast-MH HopLim:7 Payload:1799 GN_ADDR:ef:06:07:35:97:00:24:8c lat:4521984 lon:1039368000 Malformed (small) diff --git a/tests/cve-2014-8768-Geonet.pcap b/tests/cve-2014-8768-Geonet.pcap deleted file mode 100644 index 345ed24..0000000 Binary files a/tests/cve-2014-8768-Geonet.pcap and /dev/null differ diff --git a/tests/cve-2014-8769-AODV.out b/tests/cve-2014-8769-AODV.out deleted file mode 100644 index 0bb70b4..0000000 --- a/tests/cve-2014-8769-AODV.out +++ /dev/null @@ -1,2 +0,0 @@ -IP truncated-ip - 58880 bytes missing! (tos 0x0, ttl 64, id 62335, offset 0, flags [DF], proto UDP (17), length 58941, bad cksum 30c6 (->49c3)!) - 10.1.1.104.654 > 10.2.2.2.3328: aodv rerr [items 0] [19192]: diff --git a/tests/cve-2014-8769-AODV.pcap b/tests/cve-2014-8769-AODV.pcap deleted file mode 100644 index 3cd1569..0000000 Binary files a/tests/cve-2014-8769-AODV.pcap and /dev/null differ diff --git a/tests/cve2015-0261-crash.out b/tests/cve2015-0261-crash.out deleted file mode 100644 index 1946280..0000000 --- a/tests/cve2015-0261-crash.out +++ /dev/null @@ -1 +0,0 @@ -IP6 (class 0x03, flowlabel 0x03030, hlim 48, next-header Options (0) payload length: 12336) 3030:3030:3030:3030:3030:3030:3030:3030 > 130:3030:3030:3030:3030:3030:3030:3030: HBH [trunc] (header length 8 is too small for type 1)[|MOBILITY] diff --git a/tests/cve2015-0261-crash.pcap b/tests/cve2015-0261-crash.pcap deleted file mode 100644 index 01cd381..0000000 Binary files a/tests/cve2015-0261-crash.pcap and /dev/null differ diff --git a/tests/cve2015-0261-ipv6.out b/tests/cve2015-0261-ipv6.out deleted file mode 100644 index 4674ada..0000000 --- a/tests/cve2015-0261-ipv6.out +++ /dev/null @@ -1,3 +0,0 @@ -IP6 truncated-ip6 - 26325 bytes missing!(class 0x76, flowlabel 0x76767, hlim 103, next-header Mobility (135) payload length: 26470) 6767:6767:6767:6767:6767:6767:6767:6767 > 6767:6767:6767:6767:6767:6767:6767:6705: mobility: BU seq#=26471 HL lifetime=105884(type-0x67: len=103)[trunc] -IP6 truncated-ip6 - 26325 bytes missing!(class 0x76, flowlabel 0x76767, hlim 103, next-header Mobility (135) payload length: 26470) 6767:6767:6767:6767:6767:6767:6767:6767 > 6767:6767:4f67:6767:6767:6767:6767:6767: (header length 8 is too small for type 6)[|MOBILITY] -EXIT CODE 00000100 diff --git a/tests/cve2015-0261-ipv6.pcap b/tests/cve2015-0261-ipv6.pcap deleted file mode 100644 index a8a32ba..0000000 Binary files a/tests/cve2015-0261-ipv6.pcap and /dev/null differ diff --git a/tests/dcb_ets.out b/tests/dcb_ets.out deleted file mode 100644 index c9a94a7..0000000 --- a/tests/dcb_ets.out +++ /dev/null @@ -1,1923 +0,0 @@ -IP6 (hlim 1, next-header Options (0) payload length: 36) fe80::a00:27ff:fe46:e884 > ff02::16: HBH (rtalert: 0x0000) (padn) [icmp6 sum ok] ICMP6, multicast listener report v2, 1 group record(s) [gaddr ff02::1:ff00:0 to_ex { }] -IP (tos 0x10, ttl 128, id 0, offset 0, flags [none], proto UDP (17), length 328) - 0.0.0.0.68 > 255.255.255.255.67: [udp sum ok] BOOTP/DHCP, Request from 08:00:27:46:e8:84, length 300, xid 0xd60c7466, secs 13, Flags [none] (0x0000) - Client-Ethernet-Address 08:00:27:46:e8:84 - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - Parameter-Request Option 55, length 17: - Subnet-Mask, BR, Time-Zone, Classless-Static-Route - Domain-Name, Domain-Name-Server, Hostname, YD - YS, NTP, MTU, Option 119 - Default-Gateway, Classless-Static-Route, Classless-Static-Route-Microsoft, Option 252 - NTP -LLDP, length 135 - Chassis ID TLV (1), length 7 - Subtype MAC address (4): 08:00:27:0d:f1:3c - 0x0000: 0408 0027 0df1 3c - Port ID TLV (2), length 7 - Subtype MAC address (3): 08:00:27:0d:f1:3c - 0x0000: 0308 0027 0df1 3c - Time to Live TLV (3), length 2: TTL 120s - 0x0000: 0078 - Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) - Port VLAN Id Subtype (1) - port vlan id (PVID): 1 - 0x0000: 0080 c201 0001 - Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2) - Port and Protocol VLAN ID Subtype (2) - port and protocol vlan id (PPVID): 0, flags [supported] (0x02) - 0x0000: 0080 c202 0200 00 - Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2) - VLAN name Subtype (3) - vlan id (VID): 1 - vlan name: default - 0x0000: 0080 c203 0001 0764 6566 6175 6c74 - Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2) - Protocol Identity Subtype (4) - protocol identity: - 0x0000: 0080 c204 0800 0042 4203 0000 00 - Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) - ETS Configuration Subtype (9) - Willing:0, CBS:0, RES:0, Max TCs:0 - Priority Assignment Table - Priority : 0 1 2 3 4 5 6 7 - Value : 15 4 1 1 15 4 1 4 - TC Bandwidth Table - TC% : 0 1 2 3 4 5 6 7 - Value : 0 50 0 0 50 0 0 0 - TSA Assignment Table - Traffic Class: 0 1 2 3 4 5 6 7 - Value : 0 2 0 0 2 0 0 0 - 0x0000: 0080 c209 00f4 11f4 1400 3200 0032 0000 - 0x0010: 0000 0200 0002 0000 00 - Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) - ETS Recommendation Subtype (10) - RES: 0 - Priority Assignment Table - Priority : 0 1 2 3 4 5 6 7 - Value : 15 4 1 1 15 4 1 4 - TC Bandwidth Table - TC% : 0 1 2 3 4 5 6 7 - Value : 0 50 0 0 50 0 0 0 - TSA Assignment Table - Traffic Class: 0 1 2 3 4 5 6 7 - Value : 0 2 0 0 2 0 0 0 - 0x0000: 0080 c20a 00f4 11f4 1400 3200 0032 0000 - 0x0010: 0000 0200 0002 0000 00 - End TLV (0), length 0 -IP (tos 0x10, ttl 128, id 0, offset 0, flags [none], proto UDP (17), length 328) - 0.0.0.0.68 > 255.255.255.255.67: [udp sum ok] BOOTP/DHCP, Request from 08:00:27:46:e8:84, length 300, xid 0xd60c7466, secs 24, Flags [none] (0x0000) - Client-Ethernet-Address 08:00:27:46:e8:84 - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - Parameter-Request Option 55, length 17: - Subnet-Mask, BR, Time-Zone, Classless-Static-Route - Domain-Name, Domain-Name-Server, Hostname, YD - YS, NTP, MTU, Option 119 - Default-Gateway, Classless-Static-Route, Classless-Static-Route-Microsoft, Option 252 - NTP -IP (tos 0x10, ttl 128, id 0, offset 0, flags [none], proto UDP (17), length 328) - 0.0.0.0.68 > 255.255.255.255.67: [udp sum ok] BOOTP/DHCP, Request from 08:00:27:46:e8:84, length 300, xid 0xd60c7466, secs 36, Flags [none] (0x0000) - Client-Ethernet-Address 08:00:27:46:e8:84 - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - Parameter-Request Option 55, length 17: - Subnet-Mask, BR, Time-Zone, Classless-Static-Route - Domain-Name, Domain-Name-Server, Hostname, YD - YS, NTP, MTU, Option 119 - Default-Gateway, Classless-Static-Route, Classless-Static-Route-Microsoft, Option 252 - NTP -IP6 (hlim 1, next-header Options (0) payload length: 76) :: > ff02::16: HBH (rtalert: 0x0000) (padn) [icmp6 sum ok] ICMP6, multicast listener report v2, 3 group record(s) [gaddr ff02::1:ff46:e884 to_ex { }] [gaddr ff02::2 to_ex { }] [gaddr ff02::202 to_ex { }] -IP (tos 0x10, ttl 128, id 0, offset 0, flags [none], proto UDP (17), length 328) - 0.0.0.0.68 > 255.255.255.255.67: [udp sum ok] BOOTP/DHCP, Request from 08:00:27:46:e8:84, length 300, xid 0x3c41e764, Flags [none] (0x0000) - Client-Ethernet-Address 08:00:27:46:e8:84 - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - Parameter-Request Option 55, length 17: - Subnet-Mask, BR, Time-Zone, Classless-Static-Route - Domain-Name, Domain-Name-Server, Hostname, YD - YS, NTP, MTU, Option 119 - Default-Gateway, Classless-Static-Route, Classless-Static-Route-Microsoft, Option 252 - NTP -IP6 (hlim 255, next-header ICMPv6 (58) payload length: 24) :: > ff02::1:ff46:e884: [icmp6 sum ok] ICMP6, neighbor solicitation, length 24, who has fe80::a00:27ff:fe46:e884 -IP6 (hlim 255, next-header ICMPv6 (58) payload length: 16) fe80::a00:27ff:fe46:e884 > ff02::2: [icmp6 sum ok] ICMP6, router solicitation, length 16 - source link-address option (1), length 8 (1): 08:00:27:46:e8:84 - 0x0000: 0800 2746 e884 -IP6 (hlim 1, next-header Options (0) payload length: 96) fe80::a00:27ff:fe46:e884 > ff02::16: HBH (rtalert: 0x0000) (padn) [icmp6 sum ok] ICMP6, multicast listener report v2, 4 group record(s) [gaddr ff02::1:ff00:0 to_ex { }] [gaddr ff02::1:ff46:e884 to_ex { }] [gaddr ff02::2 to_ex { }] [gaddr ff02::202 to_ex { }] -LLDP, length 135 - Chassis ID TLV (1), length 7 - Subtype MAC address (4): 08:00:27:0d:f1:3c - 0x0000: 0408 0027 0df1 3c - Port ID TLV (2), length 7 - Subtype MAC address (3): 08:00:27:0d:f1:3c - 0x0000: 0308 0027 0df1 3c - Time to Live TLV (3), length 2: TTL 120s - 0x0000: 0078 - Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) - Port VLAN Id Subtype (1) - port vlan id (PVID): 1 - 0x0000: 0080 c201 0001 - Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2) - Port and Protocol VLAN ID Subtype (2) - port and protocol vlan id (PPVID): 0, flags [supported] (0x02) - 0x0000: 0080 c202 0200 00 - Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2) - VLAN name Subtype (3) - vlan id (VID): 1 - vlan name: default - 0x0000: 0080 c203 0001 0764 6566 6175 6c74 - Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2) - Protocol Identity Subtype (4) - protocol identity: - 0x0000: 0080 c204 0800 0042 4203 0000 00 - Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) - ETS Configuration Subtype (9) - Willing:0, CBS:0, RES:0, Max TCs:0 - Priority Assignment Table - Priority : 0 1 2 3 4 5 6 7 - Value : 15 4 1 1 15 4 1 4 - TC Bandwidth Table - TC% : 0 1 2 3 4 5 6 7 - Value : 0 50 0 0 50 0 0 0 - TSA Assignment Table - Traffic Class: 0 1 2 3 4 5 6 7 - Value : 0 2 0 0 2 0 0 0 - 0x0000: 0080 c209 00f4 11f4 1400 3200 0032 0000 - 0x0010: 0000 0200 0002 0000 00 - Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) - ETS Recommendation Subtype (10) - RES: 0 - Priority Assignment Table - Priority : 0 1 2 3 4 5 6 7 - Value : 15 4 1 1 15 4 1 4 - TC Bandwidth Table - TC% : 0 1 2 3 4 5 6 7 - Value : 0 50 0 0 50 0 0 0 - TSA Assignment Table - Traffic Class: 0 1 2 3 4 5 6 7 - Value : 0 2 0 0 2 0 0 0 - 0x0000: 0080 c20a 00f4 11f4 1400 3200 0032 0000 - 0x0010: 0000 0200 0002 0000 00 - End TLV (0), length 0 -IP6 (hlim 1, next-header Options (0) payload length: 76) :: > ff02::16: HBH (rtalert: 0x0000) (padn) [icmp6 sum ok] ICMP6, multicast listener report v2, 3 group record(s) [gaddr ff02::1:ff42:ba59 to_ex { }] [gaddr ff02::2 to_ex { }] [gaddr ff02::202 to_ex { }] -IP6 (hlim 255, next-header ICMPv6 (58) payload length: 24) :: > ff02::1:ff42:ba59: [icmp6 sum ok] ICMP6, neighbor solicitation, length 24, who has fe80::a00:27ff:fe42:ba59 -IP6 (hlim 1, next-header Options (0) payload length: 96) fe80::a00:27ff:fe42:ba59 > ff02::16: HBH (rtalert: 0x0000) (padn) [icmp6 sum ok] ICMP6, multicast listener report v2, 4 group record(s) [gaddr ff02::1:ff00:0 to_ex { }] [gaddr ff02::1:ff42:ba59 to_ex { }] [gaddr ff02::2 to_ex { }] [gaddr ff02::202 to_ex { }] -IP6 (hlim 1, next-header Options (0) payload length: 36) fe80::a00:27ff:fe46:e884 > ff02::16: HBH (rtalert: 0x0000) (padn) [icmp6 sum ok] ICMP6, multicast listener report v2, 1 group record(s) [gaddr ff02::1:ff00:0 to_ex { }] -IP (tos 0x10, ttl 128, id 0, offset 0, flags [none], proto UDP (17), length 328) - 0.0.0.0.68 > 255.255.255.255.67: [udp sum ok] BOOTP/DHCP, Request from 08:00:27:46:e8:84, length 300, xid 0x3c41e764, secs 8, Flags [none] (0x0000) - Client-Ethernet-Address 08:00:27:46:e8:84 - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - Parameter-Request Option 55, length 17: - Subnet-Mask, BR, Time-Zone, Classless-Static-Route - Domain-Name, Domain-Name-Server, Hostname, YD - YS, NTP, MTU, Option 119 - Default-Gateway, Classless-Static-Route, Classless-Static-Route-Microsoft, Option 252 - NTP -IP6 (hlim 1, next-header Options (0) payload length: 36) fe80::a00:27ff:fe42:ba59 > ff02::16: HBH (rtalert: 0x0000) (padn) [icmp6 sum ok] ICMP6, multicast listener report v2, 1 group record(s) [gaddr ff02::1:ff00:0 to_ex { }] -IP (tos 0x10, ttl 128, id 0, offset 0, flags [none], proto UDP (17), length 328) - 0.0.0.0.68 > 255.255.255.255.67: [udp sum ok] BOOTP/DHCP, Request from 08:00:27:46:e8:84, length 300, xid 0x3c41e764, secs 20, Flags [none] (0x0000) - Client-Ethernet-Address 08:00:27:46:e8:84 - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - Parameter-Request Option 55, length 17: - Subnet-Mask, BR, Time-Zone, Classless-Static-Route - Domain-Name, Domain-Name-Server, Hostname, YD - YS, NTP, MTU, Option 119 - Default-Gateway, Classless-Static-Route, Classless-Static-Route-Microsoft, Option 252 - NTP -LLDP, length 135 - Chassis ID TLV (1), length 7 - Subtype MAC address (4): 08:00:27:0d:f1:3c - 0x0000: 0408 0027 0df1 3c - Port ID TLV (2), length 7 - Subtype MAC address (3): 08:00:27:0d:f1:3c - 0x0000: 0308 0027 0df1 3c - Time to Live TLV (3), length 2: TTL 120s - 0x0000: 0078 - Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) - Port VLAN Id Subtype (1) - port vlan id (PVID): 1 - 0x0000: 0080 c201 0001 - Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2) - Port and Protocol VLAN ID Subtype (2) - port and protocol vlan id (PPVID): 0, flags [supported] (0x02) - 0x0000: 0080 c202 0200 00 - Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2) - VLAN name Subtype (3) - vlan id (VID): 1 - vlan name: default - 0x0000: 0080 c203 0001 0764 6566 6175 6c74 - Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2) - Protocol Identity Subtype (4) - protocol identity: - 0x0000: 0080 c204 0800 0042 4203 0000 00 - Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) - ETS Configuration Subtype (9) - Willing:0, CBS:0, RES:0, Max TCs:0 - Priority Assignment Table - Priority : 0 1 2 3 4 5 6 7 - Value : 15 4 1 1 15 4 1 4 - TC Bandwidth Table - TC% : 0 1 2 3 4 5 6 7 - Value : 0 50 0 0 50 0 0 0 - TSA Assignment Table - Traffic Class: 0 1 2 3 4 5 6 7 - Value : 0 2 0 0 2 0 0 0 - 0x0000: 0080 c209 00f4 11f4 1400 3200 0032 0000 - 0x0010: 0000 0200 0002 0000 00 - Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) - ETS Recommendation Subtype (10) - RES: 0 - Priority Assignment Table - Priority : 0 1 2 3 4 5 6 7 - Value : 15 4 1 1 15 4 1 4 - TC Bandwidth Table - TC% : 0 1 2 3 4 5 6 7 - Value : 0 50 0 0 50 0 0 0 - TSA Assignment Table - Traffic Class: 0 1 2 3 4 5 6 7 - Value : 0 2 0 0 2 0 0 0 - 0x0000: 0080 c20a 00f4 11f4 1400 3200 0032 0000 - 0x0010: 0000 0200 0002 0000 00 - End TLV (0), length 0 -IP (tos 0x10, ttl 128, id 0, offset 0, flags [none], proto UDP (17), length 328) - 0.0.0.0.68 > 255.255.255.255.67: [udp sum ok] BOOTP/DHCP, Request from 08:00:27:46:e8:84, length 300, xid 0x3c41e764, secs 41, Flags [none] (0x0000) - Client-Ethernet-Address 08:00:27:46:e8:84 - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - Parameter-Request Option 55, length 17: - Subnet-Mask, BR, Time-Zone, Classless-Static-Route - Domain-Name, Domain-Name-Server, Hostname, YD - YS, NTP, MTU, Option 119 - Default-Gateway, Classless-Static-Route, Classless-Static-Route-Microsoft, Option 252 - NTP -IP6 (hlim 1, next-header Options (0) payload length: 76) :: > ff02::16: HBH (rtalert: 0x0000) (padn) [icmp6 sum ok] ICMP6, multicast listener report v2, 3 group record(s) [gaddr ff02::1:ff46:e884 to_ex { }] [gaddr ff02::2 to_ex { }] [gaddr ff02::202 to_ex { }] -IP (tos 0x10, ttl 128, id 0, offset 0, flags [none], proto UDP (17), length 328) - 0.0.0.0.68 > 255.255.255.255.67: [udp sum ok] BOOTP/DHCP, Request from 08:00:27:46:e8:84, length 300, xid 0xc1fb0d77, Flags [none] (0x0000) - Client-Ethernet-Address 08:00:27:46:e8:84 - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - Parameter-Request Option 55, length 17: - Subnet-Mask, BR, Time-Zone, Classless-Static-Route - Domain-Name, Domain-Name-Server, Hostname, YD - YS, NTP, MTU, Option 119 - Default-Gateway, Classless-Static-Route, Classless-Static-Route-Microsoft, Option 252 - NTP -IP6 (hlim 255, next-header ICMPv6 (58) payload length: 24) :: > ff02::1:ff46:e884: [icmp6 sum ok] ICMP6, neighbor solicitation, length 24, who has fe80::a00:27ff:fe46:e884 -IP6 (hlim 255, next-header ICMPv6 (58) payload length: 16) fe80::a00:27ff:fe46:e884 > ff02::2: [icmp6 sum ok] ICMP6, router solicitation, length 16 - source link-address option (1), length 8 (1): 08:00:27:46:e8:84 - 0x0000: 0800 2746 e884 -IP6 (hlim 1, next-header Options (0) payload length: 96) fe80::a00:27ff:fe46:e884 > ff02::16: HBH (rtalert: 0x0000) (padn) [icmp6 sum ok] ICMP6, multicast listener report v2, 4 group record(s) [gaddr ff02::1:ff00:0 to_ex { }] [gaddr ff02::1:ff46:e884 to_ex { }] [gaddr ff02::2 to_ex { }] [gaddr ff02::202 to_ex { }] -IP (tos 0x10, ttl 128, id 0, offset 0, flags [none], proto UDP (17), length 328) - 0.0.0.0.68 > 255.255.255.255.67: [udp sum ok] BOOTP/DHCP, Request from 08:00:27:46:e8:84, length 300, xid 0xc1fb0d77, secs 3, Flags [none] (0x0000) - Client-Ethernet-Address 08:00:27:46:e8:84 - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - Parameter-Request Option 55, length 17: - Subnet-Mask, BR, Time-Zone, Classless-Static-Route - Domain-Name, Domain-Name-Server, Hostname, YD - YS, NTP, MTU, Option 119 - Default-Gateway, Classless-Static-Route, Classless-Static-Route-Microsoft, Option 252 - NTP -IP6 (hlim 1, next-header Options (0) payload length: 36) fe80::a00:27ff:fe46:e884 > ff02::16: HBH (rtalert: 0x0000) (padn) [icmp6 sum ok] ICMP6, multicast listener report v2, 1 group record(s) [gaddr ff02::1:ff00:0 to_ex { }] -LLDP, length 135 - Chassis ID TLV (1), length 7 - Subtype MAC address (4): 08:00:27:42:ba:59 - 0x0000: 0408 0027 42ba 59 - Port ID TLV (2), length 7 - Subtype MAC address (3): 08:00:27:42:ba:59 - 0x0000: 0308 0027 42ba 59 - Time to Live TLV (3), length 2: TTL 120s - 0x0000: 0078 - Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) - Port VLAN Id Subtype (1) - port vlan id (PVID): 1 - 0x0000: 0080 c201 0001 - Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2) - Port and Protocol VLAN ID Subtype (2) - port and protocol vlan id (PPVID): 0, flags [supported] (0x02) - 0x0000: 0080 c202 0200 00 - Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2) - VLAN name Subtype (3) - vlan id (VID): 1 - vlan name: default - 0x0000: 0080 c203 0001 0764 6566 6175 6c74 - Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2) - Protocol Identity Subtype (4) - protocol identity: - 0x0000: 0080 c204 0800 0042 4203 0000 00 - Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) - ETS Configuration Subtype (9) - Willing:0, CBS:0, RES:0, Max TCs:0 - Priority Assignment Table - Priority : 0 1 2 3 4 5 6 7 - Value : 15 15 15 15 15 15 15 15 - TC Bandwidth Table - TC% : 0 1 2 3 4 5 6 7 - Value : 0 0 0 0 0 0 0 0 - TSA Assignment Table - Traffic Class: 0 1 2 3 4 5 6 7 - Value : 0 0 0 0 0 0 0 0 - 0x0000: 0080 c209 00ff ffff ff00 0000 0000 0000 - 0x0010: 0000 0000 0000 0000 00 - Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) - ETS Recommendation Subtype (10) - RES: 0 - Priority Assignment Table - Priority : 0 1 2 3 4 5 6 7 - Value : 15 15 15 15 15 15 15 15 - TC Bandwidth Table - TC% : 0 1 2 3 4 5 6 7 - Value : 0 0 0 0 0 0 0 0 - TSA Assignment Table - Traffic Class: 0 1 2 3 4 5 6 7 - Value : 0 0 0 0 0 0 0 0 - 0x0000: 0080 c20a 00ff ffff ff00 0000 0000 0000 - 0x0010: 0000 0000 0000 0000 00 - End TLV (0), length 0 -LLDP, length 135 - Chassis ID TLV (1), length 7 - Subtype MAC address (4): 08:00:27:42:ba:59 - 0x0000: 0408 0027 42ba 59 - Port ID TLV (2), length 7 - Subtype MAC address (3): 08:00:27:42:ba:59 - 0x0000: 0308 0027 42ba 59 - Time to Live TLV (3), length 2: TTL 120s - 0x0000: 0078 - Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) - Port VLAN Id Subtype (1) - port vlan id (PVID): 1 - 0x0000: 0080 c201 0001 - Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2) - Port and Protocol VLAN ID Subtype (2) - port and protocol vlan id (PPVID): 0, flags [supported] (0x02) - 0x0000: 0080 c202 0200 00 - Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2) - VLAN name Subtype (3) - vlan id (VID): 1 - vlan name: default - 0x0000: 0080 c203 0001 0764 6566 6175 6c74 - Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2) - Protocol Identity Subtype (4) - protocol identity: - 0x0000: 0080 c204 0800 0042 4203 0000 00 - Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) - ETS Configuration Subtype (9) - Willing:0, CBS:0, RES:0, Max TCs:0 - Priority Assignment Table - Priority : 0 1 2 3 4 5 6 7 - Value : 15 15 15 15 15 15 15 15 - TC Bandwidth Table - TC% : 0 1 2 3 4 5 6 7 - Value : 0 0 0 0 0 0 0 0 - TSA Assignment Table - Traffic Class: 0 1 2 3 4 5 6 7 - Value : 0 0 0 0 0 0 0 0 - 0x0000: 0080 c209 00ff ffff ff00 0000 0000 0000 - 0x0010: 0000 0000 0000 0000 00 - Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) - ETS Recommendation Subtype (10) - RES: 0 - Priority Assignment Table - Priority : 0 1 2 3 4 5 6 7 - Value : 15 15 15 15 15 15 15 15 - TC Bandwidth Table - TC% : 0 1 2 3 4 5 6 7 - Value : 0 0 0 0 0 0 0 0 - TSA Assignment Table - Traffic Class: 0 1 2 3 4 5 6 7 - Value : 0 0 0 0 0 0 0 0 - 0x0000: 0080 c20a 00ff ffff ff00 0000 0000 0000 - 0x0010: 0000 0000 0000 0000 00 - End TLV (0), length 0 -IP (tos 0x10, ttl 128, id 0, offset 0, flags [none], proto UDP (17), length 328) - 0.0.0.0.68 > 255.255.255.255.67: [udp sum ok] BOOTP/DHCP, Request from 08:00:27:46:e8:84, length 300, xid 0xc1fb0d77, secs 11, Flags [none] (0x0000) - Client-Ethernet-Address 08:00:27:46:e8:84 - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - Parameter-Request Option 55, length 17: - Subnet-Mask, BR, Time-Zone, Classless-Static-Route - Domain-Name, Domain-Name-Server, Hostname, YD - YS, NTP, MTU, Option 119 - Default-Gateway, Classless-Static-Route, Classless-Static-Route-Microsoft, Option 252 - NTP -LLDP, length 135 - Chassis ID TLV (1), length 7 - Subtype MAC address (4): 08:00:27:0d:f1:3c - 0x0000: 0408 0027 0df1 3c - Port ID TLV (2), length 7 - Subtype MAC address (3): 08:00:27:0d:f1:3c - 0x0000: 0308 0027 0df1 3c - Time to Live TLV (3), length 2: TTL 120s - 0x0000: 0078 - Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) - Port VLAN Id Subtype (1) - port vlan id (PVID): 1 - 0x0000: 0080 c201 0001 - Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2) - Port and Protocol VLAN ID Subtype (2) - port and protocol vlan id (PPVID): 0, flags [supported] (0x02) - 0x0000: 0080 c202 0200 00 - Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2) - VLAN name Subtype (3) - vlan id (VID): 1 - vlan name: default - 0x0000: 0080 c203 0001 0764 6566 6175 6c74 - Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2) - Protocol Identity Subtype (4) - protocol identity: - 0x0000: 0080 c204 0800 0042 4203 0000 00 - Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) - ETS Configuration Subtype (9) - Willing:0, CBS:0, RES:0, Max TCs:0 - Priority Assignment Table - Priority : 0 1 2 3 4 5 6 7 - Value : 15 4 1 1 15 4 1 4 - TC Bandwidth Table - TC% : 0 1 2 3 4 5 6 7 - Value : 0 50 0 0 50 0 0 0 - TSA Assignment Table - Traffic Class: 0 1 2 3 4 5 6 7 - Value : 0 2 0 0 2 0 0 0 - 0x0000: 0080 c209 00f4 11f4 1400 3200 0032 0000 - 0x0010: 0000 0200 0002 0000 00 - Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) - ETS Recommendation Subtype (10) - RES: 0 - Priority Assignment Table - Priority : 0 1 2 3 4 5 6 7 - Value : 15 4 1 1 15 4 1 4 - TC Bandwidth Table - TC% : 0 1 2 3 4 5 6 7 - Value : 0 50 0 0 50 0 0 0 - TSA Assignment Table - Traffic Class: 0 1 2 3 4 5 6 7 - Value : 0 2 0 0 2 0 0 0 - 0x0000: 0080 c20a 00f4 11f4 1400 3200 0032 0000 - 0x0010: 0000 0200 0002 0000 00 - End TLV (0), length 0 -LLDP, length 135 - Chassis ID TLV (1), length 7 - Subtype MAC address (4): 08:00:27:0d:f1:3c - 0x0000: 0408 0027 0df1 3c - Port ID TLV (2), length 7 - Subtype MAC address (3): 08:00:27:0d:f1:3c - 0x0000: 0308 0027 0df1 3c - Time to Live TLV (3), length 2: TTL 120s - 0x0000: 0078 - Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) - Port VLAN Id Subtype (1) - port vlan id (PVID): 1 - 0x0000: 0080 c201 0001 - Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2) - Port and Protocol VLAN ID Subtype (2) - port and protocol vlan id (PPVID): 0, flags [supported] (0x02) - 0x0000: 0080 c202 0200 00 - Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2) - VLAN name Subtype (3) - vlan id (VID): 1 - vlan name: default - 0x0000: 0080 c203 0001 0764 6566 6175 6c74 - Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2) - Protocol Identity Subtype (4) - protocol identity: - 0x0000: 0080 c204 0800 0042 4203 0000 00 - Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) - ETS Configuration Subtype (9) - Willing:0, CBS:0, RES:0, Max TCs:0 - Priority Assignment Table - Priority : 0 1 2 3 4 5 6 7 - Value : 15 4 1 1 15 4 1 4 - TC Bandwidth Table - TC% : 0 1 2 3 4 5 6 7 - Value : 0 50 0 0 50 0 0 0 - TSA Assignment Table - Traffic Class: 0 1 2 3 4 5 6 7 - Value : 0 2 0 0 2 0 0 0 - 0x0000: 0080 c209 00f4 11f4 1400 3200 0032 0000 - 0x0010: 0000 0200 0002 0000 00 - Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) - ETS Recommendation Subtype (10) - RES: 0 - Priority Assignment Table - Priority : 0 1 2 3 4 5 6 7 - Value : 15 4 1 1 15 4 1 4 - TC Bandwidth Table - TC% : 0 1 2 3 4 5 6 7 - Value : 0 50 0 0 50 0 0 0 - TSA Assignment Table - Traffic Class: 0 1 2 3 4 5 6 7 - Value : 0 2 0 0 2 0 0 0 - 0x0000: 0080 c20a 00f4 11f4 1400 3200 0032 0000 - 0x0010: 0000 0200 0002 0000 00 - End TLV (0), length 0 -IP (tos 0x10, ttl 128, id 0, offset 0, flags [none], proto UDP (17), length 328) - 0.0.0.0.68 > 255.255.255.255.67: [udp sum ok] BOOTP/DHCP, Request from 08:00:27:46:e8:84, length 300, xid 0xc1fb0d77, secs 23, Flags [none] (0x0000) - Client-Ethernet-Address 08:00:27:46:e8:84 - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - Parameter-Request Option 55, length 17: - Subnet-Mask, BR, Time-Zone, Classless-Static-Route - Domain-Name, Domain-Name-Server, Hostname, YD - YS, NTP, MTU, Option 119 - Default-Gateway, Classless-Static-Route, Classless-Static-Route-Microsoft, Option 252 - NTP -IP (tos 0x10, ttl 128, id 0, offset 0, flags [none], proto UDP (17), length 328) - 0.0.0.0.68 > 255.255.255.255.67: [udp sum ok] BOOTP/DHCP, Request from 08:00:27:46:e8:84, length 300, xid 0xc1fb0d77, secs 36, Flags [none] (0x0000) - Client-Ethernet-Address 08:00:27:46:e8:84 - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - Parameter-Request Option 55, length 17: - Subnet-Mask, BR, Time-Zone, Classless-Static-Route - Domain-Name, Domain-Name-Server, Hostname, YD - YS, NTP, MTU, Option 119 - Default-Gateway, Classless-Static-Route, Classless-Static-Route-Microsoft, Option 252 - NTP -LLDP, length 135 - Chassis ID TLV (1), length 7 - Subtype MAC address (4): 08:00:27:42:ba:59 - 0x0000: 0408 0027 42ba 59 - Port ID TLV (2), length 7 - Subtype MAC address (3): 08:00:27:42:ba:59 - 0x0000: 0308 0027 42ba 59 - Time to Live TLV (3), length 2: TTL 120s - 0x0000: 0078 - Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) - Port VLAN Id Subtype (1) - port vlan id (PVID): 1 - 0x0000: 0080 c201 0001 - Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2) - Port and Protocol VLAN ID Subtype (2) - port and protocol vlan id (PPVID): 0, flags [supported] (0x02) - 0x0000: 0080 c202 0200 00 - Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2) - VLAN name Subtype (3) - vlan id (VID): 1 - vlan name: default - 0x0000: 0080 c203 0001 0764 6566 6175 6c74 - Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2) - Protocol Identity Subtype (4) - protocol identity: - 0x0000: 0080 c204 0800 0042 4203 0000 00 - Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) - ETS Configuration Subtype (9) - Willing:0, CBS:0, RES:0, Max TCs:0 - Priority Assignment Table - Priority : 0 1 2 3 4 5 6 7 - Value : 15 1 15 15 15 1 15 1 - TC Bandwidth Table - TC% : 0 1 2 3 4 5 6 7 - Value : 0 0 0 0 0 0 0 0 - TSA Assignment Table - Traffic Class: 0 1 2 3 4 5 6 7 - Value : 0 0 0 0 0 0 0 0 - 0x0000: 0080 c209 00f1 fff1 f100 0000 0000 0000 - 0x0010: 0000 0000 0000 0000 00 - Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) - ETS Recommendation Subtype (10) - RES: 0 - Priority Assignment Table - Priority : 0 1 2 3 4 5 6 7 - Value : 15 1 15 15 15 1 15 1 - TC Bandwidth Table - TC% : 0 1 2 3 4 5 6 7 - Value : 0 0 0 0 0 0 0 0 - TSA Assignment Table - Traffic Class: 0 1 2 3 4 5 6 7 - Value : 0 0 0 0 0 0 0 0 - 0x0000: 0080 c20a 00f1 fff1 f100 0000 0000 0000 - 0x0010: 0000 0000 0000 0000 00 - End TLV (0), length 0 -LLDP, length 135 - Chassis ID TLV (1), length 7 - Subtype MAC address (4): 08:00:27:42:ba:59 - 0x0000: 0408 0027 42ba 59 - Port ID TLV (2), length 7 - Subtype MAC address (3): 08:00:27:42:ba:59 - 0x0000: 0308 0027 42ba 59 - Time to Live TLV (3), length 2: TTL 120s - 0x0000: 0078 - Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) - Port VLAN Id Subtype (1) - port vlan id (PVID): 1 - 0x0000: 0080 c201 0001 - Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2) - Port and Protocol VLAN ID Subtype (2) - port and protocol vlan id (PPVID): 0, flags [supported] (0x02) - 0x0000: 0080 c202 0200 00 - Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2) - VLAN name Subtype (3) - vlan id (VID): 1 - vlan name: default - 0x0000: 0080 c203 0001 0764 6566 6175 6c74 - Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2) - Protocol Identity Subtype (4) - protocol identity: - 0x0000: 0080 c204 0800 0042 4203 0000 00 - Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) - ETS Configuration Subtype (9) - Willing:0, CBS:0, RES:0, Max TCs:0 - Priority Assignment Table - Priority : 0 1 2 3 4 5 6 7 - Value : 15 1 15 15 15 1 15 1 - TC Bandwidth Table - TC% : 0 1 2 3 4 5 6 7 - Value : 0 0 0 0 0 0 0 0 - TSA Assignment Table - Traffic Class: 0 1 2 3 4 5 6 7 - Value : 0 0 0 0 0 0 0 0 - 0x0000: 0080 c209 00f1 fff1 f100 0000 0000 0000 - 0x0010: 0000 0000 0000 0000 00 - Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) - ETS Recommendation Subtype (10) - RES: 0 - Priority Assignment Table - Priority : 0 1 2 3 4 5 6 7 - Value : 15 1 15 15 15 1 15 1 - TC Bandwidth Table - TC% : 0 1 2 3 4 5 6 7 - Value : 0 0 0 0 0 0 0 0 - TSA Assignment Table - Traffic Class: 0 1 2 3 4 5 6 7 - Value : 0 0 0 0 0 0 0 0 - 0x0000: 0080 c20a 00f1 fff1 f100 0000 0000 0000 - 0x0010: 0000 0000 0000 0000 00 - End TLV (0), length 0 -LLDP, length 135 - Chassis ID TLV (1), length 7 - Subtype MAC address (4): 08:00:27:0d:f1:3c - 0x0000: 0408 0027 0df1 3c - Port ID TLV (2), length 7 - Subtype MAC address (3): 08:00:27:0d:f1:3c - 0x0000: 0308 0027 0df1 3c - Time to Live TLV (3), length 2: TTL 120s - 0x0000: 0078 - Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) - Port VLAN Id Subtype (1) - port vlan id (PVID): 1 - 0x0000: 0080 c201 0001 - Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2) - Port and Protocol VLAN ID Subtype (2) - port and protocol vlan id (PPVID): 0, flags [supported] (0x02) - 0x0000: 0080 c202 0200 00 - Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2) - VLAN name Subtype (3) - vlan id (VID): 1 - vlan name: default - 0x0000: 0080 c203 0001 0764 6566 6175 6c74 - Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2) - Protocol Identity Subtype (4) - protocol identity: - 0x0000: 0080 c204 0800 0042 4203 0000 00 - Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) - ETS Configuration Subtype (9) - Willing:0, CBS:0, RES:0, Max TCs:0 - Priority Assignment Table - Priority : 0 1 2 3 4 5 6 7 - Value : 15 4 1 1 15 4 1 4 - TC Bandwidth Table - TC% : 0 1 2 3 4 5 6 7 - Value : 0 50 0 0 50 0 0 0 - TSA Assignment Table - Traffic Class: 0 1 2 3 4 5 6 7 - Value : 0 2 0 0 2 0 0 0 - 0x0000: 0080 c209 00f4 11f4 1400 3200 0032 0000 - 0x0010: 0000 0200 0002 0000 00 - Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) - ETS Recommendation Subtype (10) - RES: 0 - Priority Assignment Table - Priority : 0 1 2 3 4 5 6 7 - Value : 15 4 1 1 15 4 1 4 - TC Bandwidth Table - TC% : 0 1 2 3 4 5 6 7 - Value : 0 50 0 0 50 0 0 0 - TSA Assignment Table - Traffic Class: 0 1 2 3 4 5 6 7 - Value : 0 2 0 0 2 0 0 0 - 0x0000: 0080 c20a 00f4 11f4 1400 3200 0032 0000 - 0x0010: 0000 0200 0002 0000 00 - End TLV (0), length 0 -LLDP, length 135 - Chassis ID TLV (1), length 7 - Subtype MAC address (4): 08:00:27:0d:f1:3c - 0x0000: 0408 0027 0df1 3c - Port ID TLV (2), length 7 - Subtype MAC address (3): 08:00:27:0d:f1:3c - 0x0000: 0308 0027 0df1 3c - Time to Live TLV (3), length 2: TTL 120s - 0x0000: 0078 - Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) - Port VLAN Id Subtype (1) - port vlan id (PVID): 1 - 0x0000: 0080 c201 0001 - Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2) - Port and Protocol VLAN ID Subtype (2) - port and protocol vlan id (PPVID): 0, flags [supported] (0x02) - 0x0000: 0080 c202 0200 00 - Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2) - VLAN name Subtype (3) - vlan id (VID): 1 - vlan name: default - 0x0000: 0080 c203 0001 0764 6566 6175 6c74 - Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2) - Protocol Identity Subtype (4) - protocol identity: - 0x0000: 0080 c204 0800 0042 4203 0000 00 - Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) - ETS Configuration Subtype (9) - Willing:0, CBS:0, RES:0, Max TCs:0 - Priority Assignment Table - Priority : 0 1 2 3 4 5 6 7 - Value : 15 4 1 1 15 4 1 4 - TC Bandwidth Table - TC% : 0 1 2 3 4 5 6 7 - Value : 0 50 0 0 50 0 0 0 - TSA Assignment Table - Traffic Class: 0 1 2 3 4 5 6 7 - Value : 0 2 0 0 2 0 0 0 - 0x0000: 0080 c209 00f4 11f4 1400 3200 0032 0000 - 0x0010: 0000 0200 0002 0000 00 - Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) - ETS Recommendation Subtype (10) - RES: 0 - Priority Assignment Table - Priority : 0 1 2 3 4 5 6 7 - Value : 15 4 1 1 15 4 1 4 - TC Bandwidth Table - TC% : 0 1 2 3 4 5 6 7 - Value : 0 50 0 0 50 0 0 0 - TSA Assignment Table - Traffic Class: 0 1 2 3 4 5 6 7 - Value : 0 2 0 0 2 0 0 0 - 0x0000: 0080 c20a 00f4 11f4 1400 3200 0032 0000 - 0x0010: 0000 0200 0002 0000 00 - End TLV (0), length 0 -IP6 (hlim 1, next-header Options (0) payload length: 76) :: > ff02::16: HBH (rtalert: 0x0000) (padn) [icmp6 sum ok] ICMP6, multicast listener report v2, 3 group record(s) [gaddr ff02::1:ff46:e884 to_ex { }] [gaddr ff02::2 to_ex { }] [gaddr ff02::202 to_ex { }] -IP6 (hlim 255, next-header ICMPv6 (58) payload length: 24) :: > ff02::1:ff46:e884: [icmp6 sum ok] ICMP6, neighbor solicitation, length 24, who has fe80::a00:27ff:fe46:e884 -IP (tos 0x10, ttl 128, id 0, offset 0, flags [none], proto UDP (17), length 328) - 0.0.0.0.68 > 255.255.255.255.67: [udp sum ok] BOOTP/DHCP, Request from 08:00:27:46:e8:84, length 300, xid 0xf0059f6c, Flags [none] (0x0000) - Client-Ethernet-Address 08:00:27:46:e8:84 - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - Parameter-Request Option 55, length 17: - Subnet-Mask, BR, Time-Zone, Classless-Static-Route - Domain-Name, Domain-Name-Server, Hostname, YD - YS, NTP, MTU, Option 119 - Default-Gateway, Classless-Static-Route, Classless-Static-Route-Microsoft, Option 252 - NTP -IP6 (hlim 255, next-header ICMPv6 (58) payload length: 16) fe80::a00:27ff:fe46:e884 > ff02::2: [icmp6 sum ok] ICMP6, router solicitation, length 16 - source link-address option (1), length 8 (1): 08:00:27:46:e8:84 - 0x0000: 0800 2746 e884 -IP6 (hlim 1, next-header Options (0) payload length: 96) fe80::a00:27ff:fe46:e884 > ff02::16: HBH (rtalert: 0x0000) (padn) [icmp6 sum ok] ICMP6, multicast listener report v2, 4 group record(s) [gaddr ff02::1:ff00:0 to_ex { }] [gaddr ff02::1:ff46:e884 to_ex { }] [gaddr ff02::2 to_ex { }] [gaddr ff02::202 to_ex { }] -IP6 (hlim 1, next-header Options (0) payload length: 36) fe80::a00:27ff:fe46:e884 > ff02::16: HBH (rtalert: 0x0000) (padn) [icmp6 sum ok] ICMP6, multicast listener report v2, 1 group record(s) [gaddr ff02::1:ff00:0 to_ex { }] -IP (tos 0x10, ttl 128, id 0, offset 0, flags [none], proto UDP (17), length 328) - 0.0.0.0.68 > 255.255.255.255.67: [udp sum ok] BOOTP/DHCP, Request from 08:00:27:46:e8:84, length 300, xid 0xf0059f6c, secs 5, Flags [none] (0x0000) - Client-Ethernet-Address 08:00:27:46:e8:84 - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - Parameter-Request Option 55, length 17: - Subnet-Mask, BR, Time-Zone, Classless-Static-Route - Domain-Name, Domain-Name-Server, Hostname, YD - YS, NTP, MTU, Option 119 - Default-Gateway, Classless-Static-Route, Classless-Static-Route-Microsoft, Option 252 - NTP -IP (tos 0x10, ttl 128, id 0, offset 0, flags [none], proto UDP (17), length 328) - 0.0.0.0.68 > 255.255.255.255.67: [udp sum ok] BOOTP/DHCP, Request from 08:00:27:46:e8:84, length 300, xid 0xf0059f6c, secs 17, Flags [none] (0x0000) - Client-Ethernet-Address 08:00:27:46:e8:84 - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - Parameter-Request Option 55, length 17: - Subnet-Mask, BR, Time-Zone, Classless-Static-Route - Domain-Name, Domain-Name-Server, Hostname, YD - YS, NTP, MTU, Option 119 - Default-Gateway, Classless-Static-Route, Classless-Static-Route-Microsoft, Option 252 - NTP -LLDP, length 135 - Chassis ID TLV (1), length 7 - Subtype MAC address (4): 08:00:27:42:ba:59 - 0x0000: 0408 0027 42ba 59 - Port ID TLV (2), length 7 - Subtype MAC address (3): 08:00:27:42:ba:59 - 0x0000: 0308 0027 42ba 59 - Time to Live TLV (3), length 2: TTL 120s - 0x0000: 0078 - Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) - Port VLAN Id Subtype (1) - port vlan id (PVID): 1 - 0x0000: 0080 c201 0001 - Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2) - Port and Protocol VLAN ID Subtype (2) - port and protocol vlan id (PPVID): 0, flags [supported] (0x02) - 0x0000: 0080 c202 0200 00 - Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2) - VLAN name Subtype (3) - vlan id (VID): 1 - vlan name: default - 0x0000: 0080 c203 0001 0764 6566 6175 6c74 - Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2) - Protocol Identity Subtype (4) - protocol identity: - 0x0000: 0080 c204 0800 0042 4203 0000 00 - Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) - ETS Configuration Subtype (9) - Willing:0, CBS:0, RES:0, Max TCs:0 - Priority Assignment Table - Priority : 0 1 2 3 4 5 6 7 - Value : 15 15 15 15 15 15 15 15 - TC Bandwidth Table - TC% : 0 1 2 3 4 5 6 7 - Value : 0 0 0 0 0 0 0 0 - TSA Assignment Table - Traffic Class: 0 1 2 3 4 5 6 7 - Value : 0 0 0 0 0 0 0 0 - 0x0000: 0080 c209 00ff ffff ff00 0000 0000 0000 - 0x0010: 0000 0000 0000 0000 00 - Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) - ETS Recommendation Subtype (10) - RES: 0 - Priority Assignment Table - Priority : 0 1 2 3 4 5 6 7 - Value : 15 15 15 15 15 15 15 15 - TC Bandwidth Table - TC% : 0 1 2 3 4 5 6 7 - Value : 0 0 0 0 0 0 0 0 - TSA Assignment Table - Traffic Class: 0 1 2 3 4 5 6 7 - Value : 0 0 0 0 0 0 0 0 - 0x0000: 0080 c20a 00ff ffff ff00 0000 0000 0000 - 0x0010: 0000 0000 0000 0000 00 - End TLV (0), length 0 -LLDP, length 135 - Chassis ID TLV (1), length 7 - Subtype MAC address (4): 08:00:27:42:ba:59 - 0x0000: 0408 0027 42ba 59 - Port ID TLV (2), length 7 - Subtype MAC address (3): 08:00:27:42:ba:59 - 0x0000: 0308 0027 42ba 59 - Time to Live TLV (3), length 2: TTL 120s - 0x0000: 0078 - Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) - Port VLAN Id Subtype (1) - port vlan id (PVID): 1 - 0x0000: 0080 c201 0001 - Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2) - Port and Protocol VLAN ID Subtype (2) - port and protocol vlan id (PPVID): 0, flags [supported] (0x02) - 0x0000: 0080 c202 0200 00 - Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2) - VLAN name Subtype (3) - vlan id (VID): 1 - vlan name: default - 0x0000: 0080 c203 0001 0764 6566 6175 6c74 - Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2) - Protocol Identity Subtype (4) - protocol identity: - 0x0000: 0080 c204 0800 0042 4203 0000 00 - Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) - ETS Configuration Subtype (9) - Willing:0, CBS:0, RES:0, Max TCs:0 - Priority Assignment Table - Priority : 0 1 2 3 4 5 6 7 - Value : 15 15 15 15 15 15 15 15 - TC Bandwidth Table - TC% : 0 1 2 3 4 5 6 7 - Value : 0 0 0 0 0 0 0 0 - TSA Assignment Table - Traffic Class: 0 1 2 3 4 5 6 7 - Value : 0 0 0 0 0 0 0 0 - 0x0000: 0080 c209 00ff ffff ff00 0000 0000 0000 - 0x0010: 0000 0000 0000 0000 00 - Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) - ETS Recommendation Subtype (10) - RES: 0 - Priority Assignment Table - Priority : 0 1 2 3 4 5 6 7 - Value : 15 15 15 15 15 15 15 15 - TC Bandwidth Table - TC% : 0 1 2 3 4 5 6 7 - Value : 0 0 0 0 0 0 0 0 - TSA Assignment Table - Traffic Class: 0 1 2 3 4 5 6 7 - Value : 0 0 0 0 0 0 0 0 - 0x0000: 0080 c20a 00ff ffff ff00 0000 0000 0000 - 0x0010: 0000 0000 0000 0000 00 - End TLV (0), length 0 -LLDP, length 135 - Chassis ID TLV (1), length 7 - Subtype MAC address (4): 08:00:27:0d:f1:3c - 0x0000: 0408 0027 0df1 3c - Port ID TLV (2), length 7 - Subtype MAC address (3): 08:00:27:0d:f1:3c - 0x0000: 0308 0027 0df1 3c - Time to Live TLV (3), length 2: TTL 120s - 0x0000: 0078 - Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) - Port VLAN Id Subtype (1) - port vlan id (PVID): 1 - 0x0000: 0080 c201 0001 - Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2) - Port and Protocol VLAN ID Subtype (2) - port and protocol vlan id (PPVID): 0, flags [supported] (0x02) - 0x0000: 0080 c202 0200 00 - Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2) - VLAN name Subtype (3) - vlan id (VID): 1 - vlan name: default - 0x0000: 0080 c203 0001 0764 6566 6175 6c74 - Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2) - Protocol Identity Subtype (4) - protocol identity: - 0x0000: 0080 c204 0800 0042 4203 0000 00 - Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) - ETS Configuration Subtype (9) - Willing:0, CBS:0, RES:0, Max TCs:0 - Priority Assignment Table - Priority : 0 1 2 3 4 5 6 7 - Value : 15 4 1 1 15 4 1 4 - TC Bandwidth Table - TC% : 0 1 2 3 4 5 6 7 - Value : 0 50 0 0 50 0 0 0 - TSA Assignment Table - Traffic Class: 0 1 2 3 4 5 6 7 - Value : 0 2 0 0 2 0 0 0 - 0x0000: 0080 c209 00f4 11f4 1400 3200 0032 0000 - 0x0010: 0000 0200 0002 0000 00 - Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) - ETS Recommendation Subtype (10) - RES: 0 - Priority Assignment Table - Priority : 0 1 2 3 4 5 6 7 - Value : 15 4 1 1 15 4 1 4 - TC Bandwidth Table - TC% : 0 1 2 3 4 5 6 7 - Value : 0 50 0 0 50 0 0 0 - TSA Assignment Table - Traffic Class: 0 1 2 3 4 5 6 7 - Value : 0 2 0 0 2 0 0 0 - 0x0000: 0080 c20a 00f4 11f4 1400 3200 0032 0000 - 0x0010: 0000 0200 0002 0000 00 - End TLV (0), length 0 -LLDP, length 135 - Chassis ID TLV (1), length 7 - Subtype MAC address (4): 08:00:27:0d:f1:3c - 0x0000: 0408 0027 0df1 3c - Port ID TLV (2), length 7 - Subtype MAC address (3): 08:00:27:0d:f1:3c - 0x0000: 0308 0027 0df1 3c - Time to Live TLV (3), length 2: TTL 120s - 0x0000: 0078 - Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) - Port VLAN Id Subtype (1) - port vlan id (PVID): 1 - 0x0000: 0080 c201 0001 - Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2) - Port and Protocol VLAN ID Subtype (2) - port and protocol vlan id (PPVID): 0, flags [supported] (0x02) - 0x0000: 0080 c202 0200 00 - Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2) - VLAN name Subtype (3) - vlan id (VID): 1 - vlan name: default - 0x0000: 0080 c203 0001 0764 6566 6175 6c74 - Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2) - Protocol Identity Subtype (4) - protocol identity: - 0x0000: 0080 c204 0800 0042 4203 0000 00 - Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) - ETS Configuration Subtype (9) - Willing:0, CBS:0, RES:0, Max TCs:0 - Priority Assignment Table - Priority : 0 1 2 3 4 5 6 7 - Value : 15 4 1 1 15 4 1 4 - TC Bandwidth Table - TC% : 0 1 2 3 4 5 6 7 - Value : 0 50 0 0 50 0 0 0 - TSA Assignment Table - Traffic Class: 0 1 2 3 4 5 6 7 - Value : 0 2 0 0 2 0 0 0 - 0x0000: 0080 c209 00f4 11f4 1400 3200 0032 0000 - 0x0010: 0000 0200 0002 0000 00 - Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) - ETS Recommendation Subtype (10) - RES: 0 - Priority Assignment Table - Priority : 0 1 2 3 4 5 6 7 - Value : 15 4 1 1 15 4 1 4 - TC Bandwidth Table - TC% : 0 1 2 3 4 5 6 7 - Value : 0 50 0 0 50 0 0 0 - TSA Assignment Table - Traffic Class: 0 1 2 3 4 5 6 7 - Value : 0 2 0 0 2 0 0 0 - 0x0000: 0080 c20a 00f4 11f4 1400 3200 0032 0000 - 0x0010: 0000 0200 0002 0000 00 - End TLV (0), length 0 -IP (tos 0x10, ttl 128, id 0, offset 0, flags [none], proto UDP (17), length 328) - 0.0.0.0.68 > 255.255.255.255.67: [udp sum ok] BOOTP/DHCP, Request from 08:00:27:46:e8:84, length 300, xid 0xf0059f6c, secs 36, Flags [none] (0x0000) - Client-Ethernet-Address 08:00:27:46:e8:84 - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - Parameter-Request Option 55, length 17: - Subnet-Mask, BR, Time-Zone, Classless-Static-Route - Domain-Name, Domain-Name-Server, Hostname, YD - YS, NTP, MTU, Option 119 - Default-Gateway, Classless-Static-Route, Classless-Static-Route-Microsoft, Option 252 - NTP -LLDP, length 135 - Chassis ID TLV (1), length 7 - Subtype MAC address (4): 08:00:27:42:ba:59 - 0x0000: 0408 0027 42ba 59 - Port ID TLV (2), length 7 - Subtype MAC address (3): 08:00:27:42:ba:59 - 0x0000: 0308 0027 42ba 59 - Time to Live TLV (3), length 2: TTL 120s - 0x0000: 0078 - Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) - Port VLAN Id Subtype (1) - port vlan id (PVID): 1 - 0x0000: 0080 c201 0001 - Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2) - Port and Protocol VLAN ID Subtype (2) - port and protocol vlan id (PPVID): 0, flags [supported] (0x02) - 0x0000: 0080 c202 0200 00 - Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2) - VLAN name Subtype (3) - vlan id (VID): 1 - vlan name: default - 0x0000: 0080 c203 0001 0764 6566 6175 6c74 - Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2) - Protocol Identity Subtype (4) - protocol identity: - 0x0000: 0080 c204 0800 0042 4203 0000 00 - Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) - ETS Configuration Subtype (9) - Willing:0, CBS:0, RES:0, Max TCs:0 - Priority Assignment Table - Priority : 0 1 2 3 4 5 6 7 - Value : 15 15 1 1 15 15 1 15 - TC Bandwidth Table - TC% : 0 1 2 3 4 5 6 7 - Value : 0 0 0 0 0 0 0 0 - TSA Assignment Table - Traffic Class: 0 1 2 3 4 5 6 7 - Value : 0 0 0 0 0 0 0 0 - 0x0000: 0080 c209 00ff 11ff 1f00 0000 0000 0000 - 0x0010: 0000 0000 0000 0000 00 - Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) - ETS Recommendation Subtype (10) - RES: 0 - Priority Assignment Table - Priority : 0 1 2 3 4 5 6 7 - Value : 15 15 1 1 15 15 1 15 - TC Bandwidth Table - TC% : 0 1 2 3 4 5 6 7 - Value : 0 0 0 0 0 0 0 0 - TSA Assignment Table - Traffic Class: 0 1 2 3 4 5 6 7 - Value : 0 0 0 0 0 0 0 0 - 0x0000: 0080 c20a 00ff 11ff 1f00 0000 0000 0000 - 0x0010: 0000 0000 0000 0000 00 - End TLV (0), length 0 -LLDP, length 135 - Chassis ID TLV (1), length 7 - Subtype MAC address (4): 08:00:27:42:ba:59 - 0x0000: 0408 0027 42ba 59 - Port ID TLV (2), length 7 - Subtype MAC address (3): 08:00:27:42:ba:59 - 0x0000: 0308 0027 42ba 59 - Time to Live TLV (3), length 2: TTL 120s - 0x0000: 0078 - Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) - Port VLAN Id Subtype (1) - port vlan id (PVID): 1 - 0x0000: 0080 c201 0001 - Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2) - Port and Protocol VLAN ID Subtype (2) - port and protocol vlan id (PPVID): 0, flags [supported] (0x02) - 0x0000: 0080 c202 0200 00 - Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2) - VLAN name Subtype (3) - vlan id (VID): 1 - vlan name: default - 0x0000: 0080 c203 0001 0764 6566 6175 6c74 - Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2) - Protocol Identity Subtype (4) - protocol identity: - 0x0000: 0080 c204 0800 0042 4203 0000 00 - Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) - ETS Configuration Subtype (9) - Willing:0, CBS:0, RES:0, Max TCs:0 - Priority Assignment Table - Priority : 0 1 2 3 4 5 6 7 - Value : 15 15 1 1 15 15 1 15 - TC Bandwidth Table - TC% : 0 1 2 3 4 5 6 7 - Value : 0 0 0 0 0 0 0 0 - TSA Assignment Table - Traffic Class: 0 1 2 3 4 5 6 7 - Value : 0 0 0 0 0 0 0 0 - 0x0000: 0080 c209 00ff 11ff 1f00 0000 0000 0000 - 0x0010: 0000 0000 0000 0000 00 - Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) - ETS Recommendation Subtype (10) - RES: 0 - Priority Assignment Table - Priority : 0 1 2 3 4 5 6 7 - Value : 15 15 1 1 15 15 1 15 - TC Bandwidth Table - TC% : 0 1 2 3 4 5 6 7 - Value : 0 0 0 0 0 0 0 0 - TSA Assignment Table - Traffic Class: 0 1 2 3 4 5 6 7 - Value : 0 0 0 0 0 0 0 0 - 0x0000: 0080 c20a 00ff 11ff 1f00 0000 0000 0000 - 0x0010: 0000 0000 0000 0000 00 - End TLV (0), length 0 -LLDP, length 135 - Chassis ID TLV (1), length 7 - Subtype MAC address (4): 08:00:27:0d:f1:3c - 0x0000: 0408 0027 0df1 3c - Port ID TLV (2), length 7 - Subtype MAC address (3): 08:00:27:0d:f1:3c - 0x0000: 0308 0027 0df1 3c - Time to Live TLV (3), length 2: TTL 120s - 0x0000: 0078 - Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) - Port VLAN Id Subtype (1) - port vlan id (PVID): 1 - 0x0000: 0080 c201 0001 - Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2) - Port and Protocol VLAN ID Subtype (2) - port and protocol vlan id (PPVID): 0, flags [supported] (0x02) - 0x0000: 0080 c202 0200 00 - Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2) - VLAN name Subtype (3) - vlan id (VID): 1 - vlan name: default - 0x0000: 0080 c203 0001 0764 6566 6175 6c74 - Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2) - Protocol Identity Subtype (4) - protocol identity: - 0x0000: 0080 c204 0800 0042 4203 0000 00 - Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) - ETS Configuration Subtype (9) - Willing:0, CBS:0, RES:0, Max TCs:0 - Priority Assignment Table - Priority : 0 1 2 3 4 5 6 7 - Value : 15 4 1 1 15 4 1 4 - TC Bandwidth Table - TC% : 0 1 2 3 4 5 6 7 - Value : 0 50 0 0 50 0 0 0 - TSA Assignment Table - Traffic Class: 0 1 2 3 4 5 6 7 - Value : 0 2 0 0 2 0 0 0 - 0x0000: 0080 c209 00f4 11f4 1400 3200 0032 0000 - 0x0010: 0000 0200 0002 0000 00 - Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) - ETS Recommendation Subtype (10) - RES: 0 - Priority Assignment Table - Priority : 0 1 2 3 4 5 6 7 - Value : 15 4 1 1 15 4 1 4 - TC Bandwidth Table - TC% : 0 1 2 3 4 5 6 7 - Value : 0 50 0 0 50 0 0 0 - TSA Assignment Table - Traffic Class: 0 1 2 3 4 5 6 7 - Value : 0 2 0 0 2 0 0 0 - 0x0000: 0080 c20a 00f4 11f4 1400 3200 0032 0000 - 0x0010: 0000 0200 0002 0000 00 - End TLV (0), length 0 -LLDP, length 135 - Chassis ID TLV (1), length 7 - Subtype MAC address (4): 08:00:27:0d:f1:3c - 0x0000: 0408 0027 0df1 3c - Port ID TLV (2), length 7 - Subtype MAC address (3): 08:00:27:0d:f1:3c - 0x0000: 0308 0027 0df1 3c - Time to Live TLV (3), length 2: TTL 120s - 0x0000: 0078 - Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) - Port VLAN Id Subtype (1) - port vlan id (PVID): 1 - 0x0000: 0080 c201 0001 - Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2) - Port and Protocol VLAN ID Subtype (2) - port and protocol vlan id (PPVID): 0, flags [supported] (0x02) - 0x0000: 0080 c202 0200 00 - Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2) - VLAN name Subtype (3) - vlan id (VID): 1 - vlan name: default - 0x0000: 0080 c203 0001 0764 6566 6175 6c74 - Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2) - Protocol Identity Subtype (4) - protocol identity: - 0x0000: 0080 c204 0800 0042 4203 0000 00 - Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) - ETS Configuration Subtype (9) - Willing:0, CBS:0, RES:0, Max TCs:0 - Priority Assignment Table - Priority : 0 1 2 3 4 5 6 7 - Value : 15 4 1 1 15 4 1 4 - TC Bandwidth Table - TC% : 0 1 2 3 4 5 6 7 - Value : 0 50 0 0 50 0 0 0 - TSA Assignment Table - Traffic Class: 0 1 2 3 4 5 6 7 - Value : 0 2 0 0 2 0 0 0 - 0x0000: 0080 c209 00f4 11f4 1400 3200 0032 0000 - 0x0010: 0000 0200 0002 0000 00 - Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) - ETS Recommendation Subtype (10) - RES: 0 - Priority Assignment Table - Priority : 0 1 2 3 4 5 6 7 - Value : 15 4 1 1 15 4 1 4 - TC Bandwidth Table - TC% : 0 1 2 3 4 5 6 7 - Value : 0 50 0 0 50 0 0 0 - TSA Assignment Table - Traffic Class: 0 1 2 3 4 5 6 7 - Value : 0 2 0 0 2 0 0 0 - 0x0000: 0080 c20a 00f4 11f4 1400 3200 0032 0000 - 0x0010: 0000 0200 0002 0000 00 - End TLV (0), length 0 -LLDP, length 135 - Chassis ID TLV (1), length 7 - Subtype MAC address (4): 08:00:27:42:ba:59 - 0x0000: 0408 0027 42ba 59 - Port ID TLV (2), length 7 - Subtype MAC address (3): 08:00:27:42:ba:59 - 0x0000: 0308 0027 42ba 59 - Time to Live TLV (3), length 2: TTL 120s - 0x0000: 0078 - Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) - Port VLAN Id Subtype (1) - port vlan id (PVID): 1 - 0x0000: 0080 c201 0001 - Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2) - Port and Protocol VLAN ID Subtype (2) - port and protocol vlan id (PPVID): 0, flags [supported] (0x02) - 0x0000: 0080 c202 0200 00 - Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2) - VLAN name Subtype (3) - vlan id (VID): 1 - vlan name: default - 0x0000: 0080 c203 0001 0764 6566 6175 6c74 - Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2) - Protocol Identity Subtype (4) - protocol identity: - 0x0000: 0080 c204 0800 0042 4203 0000 00 - Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) - ETS Configuration Subtype (9) - Willing:0, CBS:0, RES:0, Max TCs:0 - Priority Assignment Table - Priority : 0 1 2 3 4 5 6 7 - Value : 15 4 1 1 15 4 1 4 - TC Bandwidth Table - TC% : 0 1 2 3 4 5 6 7 - Value : 0 50 0 0 50 0 0 0 - TSA Assignment Table - Traffic Class: 0 1 2 3 4 5 6 7 - Value : 0 2 0 0 2 0 0 0 - 0x0000: 0080 c209 00f4 11f4 1400 3200 0032 0000 - 0x0010: 0000 0200 0002 0000 00 - Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) - ETS Recommendation Subtype (10) - RES: 0 - Priority Assignment Table - Priority : 0 1 2 3 4 5 6 7 - Value : 15 4 1 1 15 4 1 4 - TC Bandwidth Table - TC% : 0 1 2 3 4 5 6 7 - Value : 0 50 0 0 50 0 0 0 - TSA Assignment Table - Traffic Class: 0 1 2 3 4 5 6 7 - Value : 0 2 0 0 2 0 0 0 - 0x0000: 0080 c20a 00f4 11f4 1400 3200 0032 0000 - 0x0010: 0000 0200 0002 0000 00 - End TLV (0), length 0 -LLDP, length 135 - Chassis ID TLV (1), length 7 - Subtype MAC address (4): 08:00:27:42:ba:59 - 0x0000: 0408 0027 42ba 59 - Port ID TLV (2), length 7 - Subtype MAC address (3): 08:00:27:42:ba:59 - 0x0000: 0308 0027 42ba 59 - Time to Live TLV (3), length 2: TTL 120s - 0x0000: 0078 - Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) - Port VLAN Id Subtype (1) - port vlan id (PVID): 1 - 0x0000: 0080 c201 0001 - Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2) - Port and Protocol VLAN ID Subtype (2) - port and protocol vlan id (PPVID): 0, flags [supported] (0x02) - 0x0000: 0080 c202 0200 00 - Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2) - VLAN name Subtype (3) - vlan id (VID): 1 - vlan name: default - 0x0000: 0080 c203 0001 0764 6566 6175 6c74 - Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2) - Protocol Identity Subtype (4) - protocol identity: - 0x0000: 0080 c204 0800 0042 4203 0000 00 - Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) - ETS Configuration Subtype (9) - Willing:0, CBS:0, RES:0, Max TCs:0 - Priority Assignment Table - Priority : 0 1 2 3 4 5 6 7 - Value : 15 4 1 1 15 4 1 4 - TC Bandwidth Table - TC% : 0 1 2 3 4 5 6 7 - Value : 0 50 0 0 50 0 0 0 - TSA Assignment Table - Traffic Class: 0 1 2 3 4 5 6 7 - Value : 0 2 0 0 2 0 0 0 - 0x0000: 0080 c209 00f4 11f4 1400 3200 0032 0000 - 0x0010: 0000 0200 0002 0000 00 - Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) - ETS Recommendation Subtype (10) - RES: 0 - Priority Assignment Table - Priority : 0 1 2 3 4 5 6 7 - Value : 15 4 1 1 15 4 1 4 - TC Bandwidth Table - TC% : 0 1 2 3 4 5 6 7 - Value : 0 50 0 0 50 0 0 0 - TSA Assignment Table - Traffic Class: 0 1 2 3 4 5 6 7 - Value : 0 2 0 0 2 0 0 0 - 0x0000: 0080 c20a 00f4 11f4 1400 3200 0032 0000 - 0x0010: 0000 0200 0002 0000 00 - End TLV (0), length 0 -LLDP, length 135 - Chassis ID TLV (1), length 7 - Subtype MAC address (4): 08:00:27:0d:f1:3c - 0x0000: 0408 0027 0df1 3c - Port ID TLV (2), length 7 - Subtype MAC address (3): 08:00:27:0d:f1:3c - 0x0000: 0308 0027 0df1 3c - Time to Live TLV (3), length 2: TTL 120s - 0x0000: 0078 - Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) - Port VLAN Id Subtype (1) - port vlan id (PVID): 1 - 0x0000: 0080 c201 0001 - Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2) - Port and Protocol VLAN ID Subtype (2) - port and protocol vlan id (PPVID): 0, flags [supported] (0x02) - 0x0000: 0080 c202 0200 00 - Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2) - VLAN name Subtype (3) - vlan id (VID): 1 - vlan name: default - 0x0000: 0080 c203 0001 0764 6566 6175 6c74 - Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2) - Protocol Identity Subtype (4) - protocol identity: - 0x0000: 0080 c204 0800 0042 4203 0000 00 - Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) - ETS Configuration Subtype (9) - Willing:0, CBS:0, RES:0, Max TCs:0 - Priority Assignment Table - Priority : 0 1 2 3 4 5 6 7 - Value : 15 4 1 1 15 4 1 4 - TC Bandwidth Table - TC% : 0 1 2 3 4 5 6 7 - Value : 0 50 0 0 50 0 0 0 - TSA Assignment Table - Traffic Class: 0 1 2 3 4 5 6 7 - Value : 0 2 0 0 2 0 0 0 - 0x0000: 0080 c209 00f4 11f4 1400 3200 0032 0000 - 0x0010: 0000 0200 0002 0000 00 - Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) - ETS Recommendation Subtype (10) - RES: 0 - Priority Assignment Table - Priority : 0 1 2 3 4 5 6 7 - Value : 15 4 1 1 15 4 1 4 - TC Bandwidth Table - TC% : 0 1 2 3 4 5 6 7 - Value : 0 50 0 0 50 0 0 0 - TSA Assignment Table - Traffic Class: 0 1 2 3 4 5 6 7 - Value : 0 2 0 0 2 0 0 0 - 0x0000: 0080 c20a 00f4 11f4 1400 3200 0032 0000 - 0x0010: 0000 0200 0002 0000 00 - End TLV (0), length 0 -LLDP, length 135 - Chassis ID TLV (1), length 7 - Subtype MAC address (4): 08:00:27:0d:f1:3c - 0x0000: 0408 0027 0df1 3c - Port ID TLV (2), length 7 - Subtype MAC address (3): 08:00:27:0d:f1:3c - 0x0000: 0308 0027 0df1 3c - Time to Live TLV (3), length 2: TTL 120s - 0x0000: 0078 - Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) - Port VLAN Id Subtype (1) - port vlan id (PVID): 1 - 0x0000: 0080 c201 0001 - Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2) - Port and Protocol VLAN ID Subtype (2) - port and protocol vlan id (PPVID): 0, flags [supported] (0x02) - 0x0000: 0080 c202 0200 00 - Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2) - VLAN name Subtype (3) - vlan id (VID): 1 - vlan name: default - 0x0000: 0080 c203 0001 0764 6566 6175 6c74 - Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2) - Protocol Identity Subtype (4) - protocol identity: - 0x0000: 0080 c204 0800 0042 4203 0000 00 - Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) - ETS Configuration Subtype (9) - Willing:0, CBS:0, RES:0, Max TCs:0 - Priority Assignment Table - Priority : 0 1 2 3 4 5 6 7 - Value : 15 4 1 1 15 4 1 4 - TC Bandwidth Table - TC% : 0 1 2 3 4 5 6 7 - Value : 0 50 0 0 50 0 0 0 - TSA Assignment Table - Traffic Class: 0 1 2 3 4 5 6 7 - Value : 0 2 0 0 2 0 0 0 - 0x0000: 0080 c209 00f4 11f4 1400 3200 0032 0000 - 0x0010: 0000 0200 0002 0000 00 - Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) - ETS Recommendation Subtype (10) - RES: 0 - Priority Assignment Table - Priority : 0 1 2 3 4 5 6 7 - Value : 15 4 1 1 15 4 1 4 - TC Bandwidth Table - TC% : 0 1 2 3 4 5 6 7 - Value : 0 50 0 0 50 0 0 0 - TSA Assignment Table - Traffic Class: 0 1 2 3 4 5 6 7 - Value : 0 2 0 0 2 0 0 0 - 0x0000: 0080 c20a 00f4 11f4 1400 3200 0032 0000 - 0x0010: 0000 0200 0002 0000 00 - End TLV (0), length 0 -LLDP, length 135 - Chassis ID TLV (1), length 7 - Subtype MAC address (4): 08:00:27:42:ba:59 - 0x0000: 0408 0027 42ba 59 - Port ID TLV (2), length 7 - Subtype MAC address (3): 08:00:27:42:ba:59 - 0x0000: 0308 0027 42ba 59 - Time to Live TLV (3), length 2: TTL 120s - 0x0000: 0078 - Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) - Port VLAN Id Subtype (1) - port vlan id (PVID): 1 - 0x0000: 0080 c201 0001 - Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2) - Port and Protocol VLAN ID Subtype (2) - port and protocol vlan id (PPVID): 0, flags [supported] (0x02) - 0x0000: 0080 c202 0200 00 - Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2) - VLAN name Subtype (3) - vlan id (VID): 1 - vlan name: default - 0x0000: 0080 c203 0001 0764 6566 6175 6c74 - Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2) - Protocol Identity Subtype (4) - protocol identity: - 0x0000: 0080 c204 0800 0042 4203 0000 00 - Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) - ETS Configuration Subtype (9) - Willing:0, CBS:0, RES:0, Max TCs:0 - Priority Assignment Table - Priority : 0 1 2 3 4 5 6 7 - Value : 15 4 1 1 15 4 1 4 - TC Bandwidth Table - TC% : 0 1 2 3 4 5 6 7 - Value : 0 50 0 0 50 0 0 0 - TSA Assignment Table - Traffic Class: 0 1 2 3 4 5 6 7 - Value : 0 2 0 0 2 0 0 0 - 0x0000: 0080 c209 00f4 11f4 1400 3200 0032 0000 - 0x0010: 0000 0200 0002 0000 00 - Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) - ETS Recommendation Subtype (10) - RES: 0 - Priority Assignment Table - Priority : 0 1 2 3 4 5 6 7 - Value : 15 4 1 1 15 4 1 4 - TC Bandwidth Table - TC% : 0 1 2 3 4 5 6 7 - Value : 0 50 0 0 50 0 0 0 - TSA Assignment Table - Traffic Class: 0 1 2 3 4 5 6 7 - Value : 0 2 0 0 2 0 0 0 - 0x0000: 0080 c20a 00f4 11f4 1400 3200 0032 0000 - 0x0010: 0000 0200 0002 0000 00 - End TLV (0), length 0 -LLDP, length 135 - Chassis ID TLV (1), length 7 - Subtype MAC address (4): 08:00:27:42:ba:59 - 0x0000: 0408 0027 42ba 59 - Port ID TLV (2), length 7 - Subtype MAC address (3): 08:00:27:42:ba:59 - 0x0000: 0308 0027 42ba 59 - Time to Live TLV (3), length 2: TTL 120s - 0x0000: 0078 - Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) - Port VLAN Id Subtype (1) - port vlan id (PVID): 1 - 0x0000: 0080 c201 0001 - Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2) - Port and Protocol VLAN ID Subtype (2) - port and protocol vlan id (PPVID): 0, flags [supported] (0x02) - 0x0000: 0080 c202 0200 00 - Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2) - VLAN name Subtype (3) - vlan id (VID): 1 - vlan name: default - 0x0000: 0080 c203 0001 0764 6566 6175 6c74 - Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2) - Protocol Identity Subtype (4) - protocol identity: - 0x0000: 0080 c204 0800 0042 4203 0000 00 - Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) - ETS Configuration Subtype (9) - Willing:0, CBS:0, RES:0, Max TCs:0 - Priority Assignment Table - Priority : 0 1 2 3 4 5 6 7 - Value : 15 4 1 1 15 4 1 4 - TC Bandwidth Table - TC% : 0 1 2 3 4 5 6 7 - Value : 0 50 0 0 50 0 0 0 - TSA Assignment Table - Traffic Class: 0 1 2 3 4 5 6 7 - Value : 0 2 0 0 2 0 0 0 - 0x0000: 0080 c209 00f4 11f4 1400 3200 0032 0000 - 0x0010: 0000 0200 0002 0000 00 - Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) - ETS Recommendation Subtype (10) - RES: 0 - Priority Assignment Table - Priority : 0 1 2 3 4 5 6 7 - Value : 15 4 1 1 15 4 1 4 - TC Bandwidth Table - TC% : 0 1 2 3 4 5 6 7 - Value : 0 50 0 0 50 0 0 0 - TSA Assignment Table - Traffic Class: 0 1 2 3 4 5 6 7 - Value : 0 2 0 0 2 0 0 0 - 0x0000: 0080 c20a 00f4 11f4 1400 3200 0032 0000 - 0x0010: 0000 0200 0002 0000 00 - End TLV (0), length 0 -LLDP, length 135 - Chassis ID TLV (1), length 7 - Subtype MAC address (4): 08:00:27:0d:f1:3c - 0x0000: 0408 0027 0df1 3c - Port ID TLV (2), length 7 - Subtype MAC address (3): 08:00:27:0d:f1:3c - 0x0000: 0308 0027 0df1 3c - Time to Live TLV (3), length 2: TTL 120s - 0x0000: 0078 - Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) - Port VLAN Id Subtype (1) - port vlan id (PVID): 1 - 0x0000: 0080 c201 0001 - Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2) - Port and Protocol VLAN ID Subtype (2) - port and protocol vlan id (PPVID): 0, flags [supported] (0x02) - 0x0000: 0080 c202 0200 00 - Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2) - VLAN name Subtype (3) - vlan id (VID): 1 - vlan name: default - 0x0000: 0080 c203 0001 0764 6566 6175 6c74 - Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2) - Protocol Identity Subtype (4) - protocol identity: - 0x0000: 0080 c204 0800 0042 4203 0000 00 - Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) - ETS Configuration Subtype (9) - Willing:0, CBS:0, RES:0, Max TCs:0 - Priority Assignment Table - Priority : 0 1 2 3 4 5 6 7 - Value : 15 4 1 1 15 4 1 4 - TC Bandwidth Table - TC% : 0 1 2 3 4 5 6 7 - Value : 0 50 0 0 50 0 0 0 - TSA Assignment Table - Traffic Class: 0 1 2 3 4 5 6 7 - Value : 0 2 0 0 2 0 0 0 - 0x0000: 0080 c209 00f4 11f4 1400 3200 0032 0000 - 0x0010: 0000 0200 0002 0000 00 - Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) - ETS Recommendation Subtype (10) - RES: 0 - Priority Assignment Table - Priority : 0 1 2 3 4 5 6 7 - Value : 15 4 1 1 15 4 1 4 - TC Bandwidth Table - TC% : 0 1 2 3 4 5 6 7 - Value : 0 50 0 0 50 0 0 0 - TSA Assignment Table - Traffic Class: 0 1 2 3 4 5 6 7 - Value : 0 2 0 0 2 0 0 0 - 0x0000: 0080 c20a 00f4 11f4 1400 3200 0032 0000 - 0x0010: 0000 0200 0002 0000 00 - End TLV (0), length 0 -LLDP, length 135 - Chassis ID TLV (1), length 7 - Subtype MAC address (4): 08:00:27:0d:f1:3c - 0x0000: 0408 0027 0df1 3c - Port ID TLV (2), length 7 - Subtype MAC address (3): 08:00:27:0d:f1:3c - 0x0000: 0308 0027 0df1 3c - Time to Live TLV (3), length 2: TTL 120s - 0x0000: 0078 - Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) - Port VLAN Id Subtype (1) - port vlan id (PVID): 1 - 0x0000: 0080 c201 0001 - Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2) - Port and Protocol VLAN ID Subtype (2) - port and protocol vlan id (PPVID): 0, flags [supported] (0x02) - 0x0000: 0080 c202 0200 00 - Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2) - VLAN name Subtype (3) - vlan id (VID): 1 - vlan name: default - 0x0000: 0080 c203 0001 0764 6566 6175 6c74 - Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2) - Protocol Identity Subtype (4) - protocol identity: - 0x0000: 0080 c204 0800 0042 4203 0000 00 - Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) - ETS Configuration Subtype (9) - Willing:0, CBS:0, RES:0, Max TCs:0 - Priority Assignment Table - Priority : 0 1 2 3 4 5 6 7 - Value : 15 4 1 1 15 4 1 4 - TC Bandwidth Table - TC% : 0 1 2 3 4 5 6 7 - Value : 0 50 0 0 50 0 0 0 - TSA Assignment Table - Traffic Class: 0 1 2 3 4 5 6 7 - Value : 0 2 0 0 2 0 0 0 - 0x0000: 0080 c209 00f4 11f4 1400 3200 0032 0000 - 0x0010: 0000 0200 0002 0000 00 - Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) - ETS Recommendation Subtype (10) - RES: 0 - Priority Assignment Table - Priority : 0 1 2 3 4 5 6 7 - Value : 15 4 1 1 15 4 1 4 - TC Bandwidth Table - TC% : 0 1 2 3 4 5 6 7 - Value : 0 50 0 0 50 0 0 0 - TSA Assignment Table - Traffic Class: 0 1 2 3 4 5 6 7 - Value : 0 2 0 0 2 0 0 0 - 0x0000: 0080 c20a 00f4 11f4 1400 3200 0032 0000 - 0x0010: 0000 0200 0002 0000 00 - End TLV (0), length 0 -LLDP, length 135 - Chassis ID TLV (1), length 7 - Subtype MAC address (4): 08:00:27:42:ba:59 - 0x0000: 0408 0027 42ba 59 - Port ID TLV (2), length 7 - Subtype MAC address (3): 08:00:27:42:ba:59 - 0x0000: 0308 0027 42ba 59 - Time to Live TLV (3), length 2: TTL 120s - 0x0000: 0078 - Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) - Port VLAN Id Subtype (1) - port vlan id (PVID): 1 - 0x0000: 0080 c201 0001 - Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2) - Port and Protocol VLAN ID Subtype (2) - port and protocol vlan id (PPVID): 0, flags [supported] (0x02) - 0x0000: 0080 c202 0200 00 - Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2) - VLAN name Subtype (3) - vlan id (VID): 1 - vlan name: default - 0x0000: 0080 c203 0001 0764 6566 6175 6c74 - Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2) - Protocol Identity Subtype (4) - protocol identity: - 0x0000: 0080 c204 0800 0042 4203 0000 00 - Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) - ETS Configuration Subtype (9) - Willing:0, CBS:0, RES:0, Max TCs:0 - Priority Assignment Table - Priority : 0 1 2 3 4 5 6 7 - Value : 15 4 1 1 15 4 1 4 - TC Bandwidth Table - TC% : 0 1 2 3 4 5 6 7 - Value : 0 50 0 0 50 0 0 0 - TSA Assignment Table - Traffic Class: 0 1 2 3 4 5 6 7 - Value : 0 2 0 0 2 0 0 0 - 0x0000: 0080 c209 00f4 11f4 1400 3200 0032 0000 - 0x0010: 0000 0200 0002 0000 00 - Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) - ETS Recommendation Subtype (10) - RES: 0 - Priority Assignment Table - Priority : 0 1 2 3 4 5 6 7 - Value : 15 4 1 1 15 4 1 4 - TC Bandwidth Table - TC% : 0 1 2 3 4 5 6 7 - Value : 0 50 0 0 50 0 0 0 - TSA Assignment Table - Traffic Class: 0 1 2 3 4 5 6 7 - Value : 0 2 0 0 2 0 0 0 - 0x0000: 0080 c20a 00f4 11f4 1400 3200 0032 0000 - 0x0010: 0000 0200 0002 0000 00 - End TLV (0), length 0 -LLDP, length 135 - Chassis ID TLV (1), length 7 - Subtype MAC address (4): 08:00:27:42:ba:59 - 0x0000: 0408 0027 42ba 59 - Port ID TLV (2), length 7 - Subtype MAC address (3): 08:00:27:42:ba:59 - 0x0000: 0308 0027 42ba 59 - Time to Live TLV (3), length 2: TTL 120s - 0x0000: 0078 - Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) - Port VLAN Id Subtype (1) - port vlan id (PVID): 1 - 0x0000: 0080 c201 0001 - Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2) - Port and Protocol VLAN ID Subtype (2) - port and protocol vlan id (PPVID): 0, flags [supported] (0x02) - 0x0000: 0080 c202 0200 00 - Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2) - VLAN name Subtype (3) - vlan id (VID): 1 - vlan name: default - 0x0000: 0080 c203 0001 0764 6566 6175 6c74 - Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2) - Protocol Identity Subtype (4) - protocol identity: - 0x0000: 0080 c204 0800 0042 4203 0000 00 - Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) - ETS Configuration Subtype (9) - Willing:0, CBS:0, RES:0, Max TCs:0 - Priority Assignment Table - Priority : 0 1 2 3 4 5 6 7 - Value : 15 4 1 1 15 4 1 4 - TC Bandwidth Table - TC% : 0 1 2 3 4 5 6 7 - Value : 0 50 0 0 50 0 0 0 - TSA Assignment Table - Traffic Class: 0 1 2 3 4 5 6 7 - Value : 0 2 0 0 2 0 0 0 - 0x0000: 0080 c209 00f4 11f4 1400 3200 0032 0000 - 0x0010: 0000 0200 0002 0000 00 - Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) - ETS Recommendation Subtype (10) - RES: 0 - Priority Assignment Table - Priority : 0 1 2 3 4 5 6 7 - Value : 15 4 1 1 15 4 1 4 - TC Bandwidth Table - TC% : 0 1 2 3 4 5 6 7 - Value : 0 50 0 0 50 0 0 0 - TSA Assignment Table - Traffic Class: 0 1 2 3 4 5 6 7 - Value : 0 2 0 0 2 0 0 0 - 0x0000: 0080 c20a 00f4 11f4 1400 3200 0032 0000 - 0x0010: 0000 0200 0002 0000 00 - End TLV (0), length 0 -LLDP, length 135 - Chassis ID TLV (1), length 7 - Subtype MAC address (4): 08:00:27:0d:f1:3c - 0x0000: 0408 0027 0df1 3c - Port ID TLV (2), length 7 - Subtype MAC address (3): 08:00:27:0d:f1:3c - 0x0000: 0308 0027 0df1 3c - Time to Live TLV (3), length 2: TTL 120s - 0x0000: 0078 - Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) - Port VLAN Id Subtype (1) - port vlan id (PVID): 1 - 0x0000: 0080 c201 0001 - Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2) - Port and Protocol VLAN ID Subtype (2) - port and protocol vlan id (PPVID): 0, flags [supported] (0x02) - 0x0000: 0080 c202 0200 00 - Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2) - VLAN name Subtype (3) - vlan id (VID): 1 - vlan name: default - 0x0000: 0080 c203 0001 0764 6566 6175 6c74 - Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2) - Protocol Identity Subtype (4) - protocol identity: - 0x0000: 0080 c204 0800 0042 4203 0000 00 - Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) - ETS Configuration Subtype (9) - Willing:0, CBS:0, RES:0, Max TCs:0 - Priority Assignment Table - Priority : 0 1 2 3 4 5 6 7 - Value : 15 4 1 1 15 4 1 4 - TC Bandwidth Table - TC% : 0 1 2 3 4 5 6 7 - Value : 0 50 0 0 50 0 0 0 - TSA Assignment Table - Traffic Class: 0 1 2 3 4 5 6 7 - Value : 0 2 0 0 2 0 0 0 - 0x0000: 0080 c209 00f4 11f4 1400 3200 0032 0000 - 0x0010: 0000 0200 0002 0000 00 - Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) - ETS Recommendation Subtype (10) - RES: 0 - Priority Assignment Table - Priority : 0 1 2 3 4 5 6 7 - Value : 15 4 1 1 15 4 1 4 - TC Bandwidth Table - TC% : 0 1 2 3 4 5 6 7 - Value : 0 50 0 0 50 0 0 0 - TSA Assignment Table - Traffic Class: 0 1 2 3 4 5 6 7 - Value : 0 2 0 0 2 0 0 0 - 0x0000: 0080 c20a 00f4 11f4 1400 3200 0032 0000 - 0x0010: 0000 0200 0002 0000 00 - End TLV (0), length 0 -LLDP, length 135 - Chassis ID TLV (1), length 7 - Subtype MAC address (4): 08:00:27:0d:f1:3c - 0x0000: 0408 0027 0df1 3c - Port ID TLV (2), length 7 - Subtype MAC address (3): 08:00:27:0d:f1:3c - 0x0000: 0308 0027 0df1 3c - Time to Live TLV (3), length 2: TTL 120s - 0x0000: 0078 - Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) - Port VLAN Id Subtype (1) - port vlan id (PVID): 1 - 0x0000: 0080 c201 0001 - Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2) - Port and Protocol VLAN ID Subtype (2) - port and protocol vlan id (PPVID): 0, flags [supported] (0x02) - 0x0000: 0080 c202 0200 00 - Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2) - VLAN name Subtype (3) - vlan id (VID): 1 - vlan name: default - 0x0000: 0080 c203 0001 0764 6566 6175 6c74 - Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2) - Protocol Identity Subtype (4) - protocol identity: - 0x0000: 0080 c204 0800 0042 4203 0000 00 - Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) - ETS Configuration Subtype (9) - Willing:0, CBS:0, RES:0, Max TCs:0 - Priority Assignment Table - Priority : 0 1 2 3 4 5 6 7 - Value : 15 4 1 1 15 4 1 4 - TC Bandwidth Table - TC% : 0 1 2 3 4 5 6 7 - Value : 0 50 0 0 50 0 0 0 - TSA Assignment Table - Traffic Class: 0 1 2 3 4 5 6 7 - Value : 0 2 0 0 2 0 0 0 - 0x0000: 0080 c209 00f4 11f4 1400 3200 0032 0000 - 0x0010: 0000 0200 0002 0000 00 - Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) - ETS Recommendation Subtype (10) - RES: 0 - Priority Assignment Table - Priority : 0 1 2 3 4 5 6 7 - Value : 15 4 1 1 15 4 1 4 - TC Bandwidth Table - TC% : 0 1 2 3 4 5 6 7 - Value : 0 50 0 0 50 0 0 0 - TSA Assignment Table - Traffic Class: 0 1 2 3 4 5 6 7 - Value : 0 2 0 0 2 0 0 0 - 0x0000: 0080 c20a 00f4 11f4 1400 3200 0032 0000 - 0x0010: 0000 0200 0002 0000 00 - End TLV (0), length 0 diff --git a/tests/dcb_ets.pcap b/tests/dcb_ets.pcap deleted file mode 100644 index 995887b..0000000 Binary files a/tests/dcb_ets.pcap and /dev/null differ diff --git a/tests/dcb_pfc.out b/tests/dcb_pfc.out deleted file mode 100644 index 005b0c1..0000000 --- a/tests/dcb_pfc.out +++ /dev/null @@ -1,148 +0,0 @@ -IP (tos 0x10, ttl 128, id 0, offset 0, flags [none], proto UDP (17), length 328) - 0.0.0.0.68 > 255.255.255.255.67: [udp sum ok] BOOTP/DHCP, Request from 08:00:27:46:e8:84, length 300, xid 0x85bfaf7d, secs 31, Flags [none] (0x0000) - Client-Ethernet-Address 08:00:27:46:e8:84 - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - Parameter-Request Option 55, length 17: - Subnet-Mask, BR, Time-Zone, Classless-Static-Route - Domain-Name, Domain-Name-Server, Hostname, YD - YS, NTP, MTU, Option 119 - Default-Gateway, Classless-Static-Route, Classless-Static-Route-Microsoft, Option 252 - NTP -LLDP, length 87 - Chassis ID TLV (1), length 7 - Subtype MAC address (4): 08:00:27:42:ba:59 - 0x0000: 0408 0027 42ba 59 - Port ID TLV (2), length 7 - Subtype MAC address (3): 08:00:27:42:ba:59 - 0x0000: 0308 0027 42ba 59 - Time to Live TLV (3), length 2: TTL 120s - 0x0000: 0078 - Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) - Port VLAN Id Subtype (1) - port vlan id (PVID): 1 - 0x0000: 0080 c201 0001 - Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2) - Port and Protocol VLAN ID Subtype (2) - port and protocol vlan id (PPVID): 0, flags [supported] (0x02) - 0x0000: 0080 c202 0200 00 - Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2) - VLAN name Subtype (3) - vlan id (VID): 1 - vlan name: default - 0x0000: 0080 c203 0001 0764 6566 6175 6c74 - Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2) - Protocol Identity Subtype (4) - protocol identity: - 0x0000: 0080 c204 0800 0042 4203 0000 00 - Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) - Priority Flow Control Configuration Subtype (11) - Willing: 0, MBC: 0, RES: 0, PFC cap:4 - PFC Enable - Priority : 0 1 2 3 4 5 6 7 - Value : 0 0 1 0 1 1 0 0 - 0x0000: 0080 c20b 0434 - End TLV (0), length 0 -LLDP, length 87 - Chassis ID TLV (1), length 7 - Subtype MAC address (4): 08:00:27:42:ba:59 - 0x0000: 0408 0027 42ba 59 - Port ID TLV (2), length 7 - Subtype MAC address (3): 08:00:27:42:ba:59 - 0x0000: 0308 0027 42ba 59 - Time to Live TLV (3), length 2: TTL 120s - 0x0000: 0078 - Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) - Port VLAN Id Subtype (1) - port vlan id (PVID): 1 - 0x0000: 0080 c201 0001 - Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2) - Port and Protocol VLAN ID Subtype (2) - port and protocol vlan id (PPVID): 0, flags [supported] (0x02) - 0x0000: 0080 c202 0200 00 - Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2) - VLAN name Subtype (3) - vlan id (VID): 1 - vlan name: default - 0x0000: 0080 c203 0001 0764 6566 6175 6c74 - Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2) - Protocol Identity Subtype (4) - protocol identity: - 0x0000: 0080 c204 0800 0042 4203 0000 00 - Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) - Priority Flow Control Configuration Subtype (11) - Willing: 0, MBC: 0, RES: 0, PFC cap:4 - PFC Enable - Priority : 0 1 2 3 4 5 6 7 - Value : 0 0 1 0 1 1 0 0 - 0x0000: 0080 c20b 0434 - End TLV (0), length 0 -LLDP, length 87 - Chassis ID TLV (1), length 7 - Subtype MAC address (4): 08:00:27:0d:f1:3c - 0x0000: 0408 0027 0df1 3c - Port ID TLV (2), length 7 - Subtype MAC address (3): 08:00:27:0d:f1:3c - 0x0000: 0308 0027 0df1 3c - Time to Live TLV (3), length 2: TTL 120s - 0x0000: 0078 - Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) - Port VLAN Id Subtype (1) - port vlan id (PVID): 1 - 0x0000: 0080 c201 0001 - Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2) - Port and Protocol VLAN ID Subtype (2) - port and protocol vlan id (PPVID): 0, flags [supported] (0x02) - 0x0000: 0080 c202 0200 00 - Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2) - VLAN name Subtype (3) - vlan id (VID): 1 - vlan name: default - 0x0000: 0080 c203 0001 0764 6566 6175 6c74 - Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2) - Protocol Identity Subtype (4) - protocol identity: - 0x0000: 0080 c204 0800 0042 4203 0000 00 - Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) - Priority Flow Control Configuration Subtype (11) - Willing: 0, MBC: 0, RES: 0, PFC cap:4 - PFC Enable - Priority : 0 1 2 3 4 5 6 7 - Value : 0 0 1 0 1 1 0 0 - 0x0000: 0080 c20b 0434 - End TLV (0), length 0 -LLDP, length 87 - Chassis ID TLV (1), length 7 - Subtype MAC address (4): 08:00:27:0d:f1:3c - 0x0000: 0408 0027 0df1 3c - Port ID TLV (2), length 7 - Subtype MAC address (3): 08:00:27:0d:f1:3c - 0x0000: 0308 0027 0df1 3c - Time to Live TLV (3), length 2: TTL 120s - 0x0000: 0078 - Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) - Port VLAN Id Subtype (1) - port vlan id (PVID): 1 - 0x0000: 0080 c201 0001 - Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2) - Port and Protocol VLAN ID Subtype (2) - port and protocol vlan id (PPVID): 0, flags [supported] (0x02) - 0x0000: 0080 c202 0200 00 - Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2) - VLAN name Subtype (3) - vlan id (VID): 1 - vlan name: default - 0x0000: 0080 c203 0001 0764 6566 6175 6c74 - Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2) - Protocol Identity Subtype (4) - protocol identity: - 0x0000: 0080 c204 0800 0042 4203 0000 00 - Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) - Priority Flow Control Configuration Subtype (11) - Willing: 0, MBC: 0, RES: 0, PFC cap:4 - PFC Enable - Priority : 0 1 2 3 4 5 6 7 - Value : 0 0 1 0 1 1 0 0 - 0x0000: 0080 c20b 0434 - End TLV (0), length 0 diff --git a/tests/dcb_pfc.pcap b/tests/dcb_pfc.pcap deleted file mode 100644 index c777a33..0000000 Binary files a/tests/dcb_pfc.pcap and /dev/null differ diff --git a/tests/dcb_qcn.out b/tests/dcb_qcn.out deleted file mode 100644 index 747df9b..0000000 --- a/tests/dcb_qcn.out +++ /dev/null @@ -1,363 +0,0 @@ -IP (tos 0x10, ttl 128, id 0, offset 0, flags [none], proto UDP (17), length 328) - 0.0.0.0.68 > 255.255.255.255.67: [udp sum ok] BOOTP/DHCP, Request from 08:00:27:46:e8:84, length 300, xid 0xfddb5251, secs 7, Flags [none] (0x0000) - Client-Ethernet-Address 08:00:27:46:e8:84 - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - Parameter-Request Option 55, length 17: - Subnet-Mask, BR, Time-Zone, Classless-Static-Route - Domain-Name, Domain-Name-Server, Hostname, YD - YS, NTP, MTU, Option 119 - Default-Gateway, Classless-Static-Route, Classless-Static-Route-Microsoft, Option 252 - NTP -IP (tos 0x10, ttl 128, id 0, offset 0, flags [none], proto UDP (17), length 328) - 0.0.0.0.68 > 255.255.255.255.67: [udp sum ok] BOOTP/DHCP, Request from 08:00:27:46:e8:84, length 300, xid 0xfddb5251, secs 17, Flags [none] (0x0000) - Client-Ethernet-Address 08:00:27:46:e8:84 - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - Parameter-Request Option 55, length 17: - Subnet-Mask, BR, Time-Zone, Classless-Static-Route - Domain-Name, Domain-Name-Server, Hostname, YD - YS, NTP, MTU, Option 119 - Default-Gateway, Classless-Static-Route, Classless-Static-Route-Microsoft, Option 252 - NTP -LLDP, length 86 - Chassis ID TLV (1), length 7 - Subtype MAC address (4): 08:00:27:42:ba:59 - 0x0000: 0408 0027 42ba 59 - Port ID TLV (2), length 7 - Subtype MAC address (3): 08:00:27:42:ba:59 - 0x0000: 0308 0027 42ba 59 - Time to Live TLV (3), length 2: TTL 120s - 0x0000: 0078 - Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) - Port VLAN Id Subtype (1) - port vlan id (PVID): 1 - 0x0000: 0080 c201 0001 - Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2) - Port and Protocol VLAN ID Subtype (2) - port and protocol vlan id (PPVID): 0, flags [supported] (0x02) - 0x0000: 0080 c202 0200 00 - Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2) - VLAN name Subtype (3) - vlan id (VID): 1 - vlan name: default - 0x0000: 0080 c203 0001 0764 6566 6175 6c74 - Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2) - Protocol Identity Subtype (4) - protocol identity: - 0x0000: 0080 c204 0800 0042 4203 0000 00 - Organization specific TLV (127), length 5: OUI Ethernet bridged (0x0080c2) - Application Priority Subtype (12) - RES: 0 - 0x0000: 0080 c20c 00 - End TLV (0), length 0 -LLDP, length 86 - Chassis ID TLV (1), length 7 - Subtype MAC address (4): 08:00:27:42:ba:59 - 0x0000: 0408 0027 42ba 59 - Port ID TLV (2), length 7 - Subtype MAC address (3): 08:00:27:42:ba:59 - 0x0000: 0308 0027 42ba 59 - Time to Live TLV (3), length 2: TTL 120s - 0x0000: 0078 - Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) - Port VLAN Id Subtype (1) - port vlan id (PVID): 1 - 0x0000: 0080 c201 0001 - Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2) - Port and Protocol VLAN ID Subtype (2) - port and protocol vlan id (PPVID): 0, flags [supported] (0x02) - 0x0000: 0080 c202 0200 00 - Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2) - VLAN name Subtype (3) - vlan id (VID): 1 - vlan name: default - 0x0000: 0080 c203 0001 0764 6566 6175 6c74 - Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2) - Protocol Identity Subtype (4) - protocol identity: - 0x0000: 0080 c204 0800 0042 4203 0000 00 - Organization specific TLV (127), length 5: OUI Ethernet bridged (0x0080c2) - Application Priority Subtype (12) - RES: 0 - 0x0000: 0080 c20c 00 - End TLV (0), length 0 -IP (tos 0x10, ttl 128, id 0, offset 0, flags [none], proto UDP (17), length 328) - 0.0.0.0.68 > 255.255.255.255.67: [udp sum ok] BOOTP/DHCP, Request from 08:00:27:46:e8:84, length 300, xid 0xfddb5251, secs 25, Flags [none] (0x0000) - Client-Ethernet-Address 08:00:27:46:e8:84 - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - Parameter-Request Option 55, length 17: - Subnet-Mask, BR, Time-Zone, Classless-Static-Route - Domain-Name, Domain-Name-Server, Hostname, YD - YS, NTP, MTU, Option 119 - Default-Gateway, Classless-Static-Route, Classless-Static-Route-Microsoft, Option 252 - NTP -LLDP, length 94 - Chassis ID TLV (1), length 7 - Subtype MAC address (4): 08:00:27:0d:f1:3c - 0x0000: 0408 0027 0df1 3c - Port ID TLV (2), length 7 - Subtype MAC address (3): 08:00:27:0d:f1:3c - 0x0000: 0308 0027 0df1 3c - Time to Live TLV (3), length 2: TTL 120s - 0x0000: 0078 - Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) - Port VLAN Id Subtype (1) - port vlan id (PVID): 1 - 0x0000: 0080 c201 0001 - Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2) - Port and Protocol VLAN ID Subtype (2) - port and protocol vlan id (PPVID): 0, flags [supported] (0x02) - 0x0000: 0080 c202 0200 00 - Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2) - VLAN name Subtype (3) - vlan id (VID): 1 - vlan name: default - 0x0000: 0080 c203 0001 0764 6566 6175 6c74 - Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2) - Protocol Identity Subtype (4) - protocol identity: - 0x0000: 0080 c204 0800 0042 4203 0000 00 - Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) - Congestion Notification Subtype (8) - Pre-Priority CNPV Indicator - Priority : 0 1 2 3 4 5 6 7 - Value : 0 0 0 0 0 1 0 0 - Pre-Priority Ready Indicator - Priority : 0 1 2 3 4 5 6 7 - Value : 0 0 0 0 0 0 0 0 - 0x0000: 0080 c208 2000 - Organization specific TLV (127), length 5: OUI Ethernet bridged (0x0080c2) - Application Priority Subtype (12) - RES: 0 - 0x0000: 0080 c20c 00 - End TLV (0), length 0 -LLDP, length 94 - Chassis ID TLV (1), length 7 - Subtype MAC address (4): 08:00:27:0d:f1:3c - 0x0000: 0408 0027 0df1 3c - Port ID TLV (2), length 7 - Subtype MAC address (3): 08:00:27:0d:f1:3c - 0x0000: 0308 0027 0df1 3c - Time to Live TLV (3), length 2: TTL 120s - 0x0000: 0078 - Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) - Port VLAN Id Subtype (1) - port vlan id (PVID): 1 - 0x0000: 0080 c201 0001 - Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2) - Port and Protocol VLAN ID Subtype (2) - port and protocol vlan id (PPVID): 0, flags [supported] (0x02) - 0x0000: 0080 c202 0200 00 - Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2) - VLAN name Subtype (3) - vlan id (VID): 1 - vlan name: default - 0x0000: 0080 c203 0001 0764 6566 6175 6c74 - Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2) - Protocol Identity Subtype (4) - protocol identity: - 0x0000: 0080 c204 0800 0042 4203 0000 00 - Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) - Congestion Notification Subtype (8) - Pre-Priority CNPV Indicator - Priority : 0 1 2 3 4 5 6 7 - Value : 0 0 0 0 0 1 0 0 - Pre-Priority Ready Indicator - Priority : 0 1 2 3 4 5 6 7 - Value : 0 0 0 0 0 0 0 0 - 0x0000: 0080 c208 2000 - Organization specific TLV (127), length 5: OUI Ethernet bridged (0x0080c2) - Application Priority Subtype (12) - RES: 0 - 0x0000: 0080 c20c 00 - End TLV (0), length 0 -IP (tos 0x10, ttl 128, id 0, offset 0, flags [none], proto UDP (17), length 328) - 0.0.0.0.68 > 255.255.255.255.67: [udp sum ok] BOOTP/DHCP, Request from 08:00:27:46:e8:84, length 300, xid 0xfddb5251, secs 40, Flags [none] (0x0000) - Client-Ethernet-Address 08:00:27:46:e8:84 - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - Parameter-Request Option 55, length 17: - Subnet-Mask, BR, Time-Zone, Classless-Static-Route - Domain-Name, Domain-Name-Server, Hostname, YD - YS, NTP, MTU, Option 119 - Default-Gateway, Classless-Static-Route, Classless-Static-Route-Microsoft, Option 252 - NTP -IP6 (hlim 1, next-header Options (0) payload length: 76) :: > ff02::16: HBH (rtalert: 0x0000) (padn) [icmp6 sum ok] ICMP6, multicast listener report v2, 3 group record(s) [gaddr ff02::1:ff46:e884 to_ex { }] [gaddr ff02::2 to_ex { }] [gaddr ff02::202 to_ex { }] -IP (tos 0x10, ttl 128, id 0, offset 0, flags [none], proto UDP (17), length 328) - 0.0.0.0.68 > 255.255.255.255.67: [udp sum ok] BOOTP/DHCP, Request from 08:00:27:46:e8:84, length 300, xid 0xbb58bf40, Flags [none] (0x0000) - Client-Ethernet-Address 08:00:27:46:e8:84 - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - Parameter-Request Option 55, length 17: - Subnet-Mask, BR, Time-Zone, Classless-Static-Route - Domain-Name, Domain-Name-Server, Hostname, YD - YS, NTP, MTU, Option 119 - Default-Gateway, Classless-Static-Route, Classless-Static-Route-Microsoft, Option 252 - NTP -IP6 (hlim 255, next-header ICMPv6 (58) payload length: 24) :: > ff02::1:ff46:e884: [icmp6 sum ok] ICMP6, neighbor solicitation, length 24, who has fe80::a00:27ff:fe46:e884 -IP6 (hlim 255, next-header ICMPv6 (58) payload length: 16) fe80::a00:27ff:fe46:e884 > ff02::2: [icmp6 sum ok] ICMP6, router solicitation, length 16 - source link-address option (1), length 8 (1): 08:00:27:46:e8:84 - 0x0000: 0800 2746 e884 -IP6 (hlim 1, next-header Options (0) payload length: 96) fe80::a00:27ff:fe46:e884 > ff02::16: HBH (rtalert: 0x0000) (padn) [icmp6 sum ok] ICMP6, multicast listener report v2, 4 group record(s) [gaddr ff02::1:ff00:0 to_ex { }] [gaddr ff02::1:ff46:e884 to_ex { }] [gaddr ff02::2 to_ex { }] [gaddr ff02::202 to_ex { }] -LLDP, length 86 - Chassis ID TLV (1), length 7 - Subtype MAC address (4): 08:00:27:42:ba:59 - 0x0000: 0408 0027 42ba 59 - Port ID TLV (2), length 7 - Subtype MAC address (3): 08:00:27:42:ba:59 - 0x0000: 0308 0027 42ba 59 - Time to Live TLV (3), length 2: TTL 120s - 0x0000: 0078 - Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) - Port VLAN Id Subtype (1) - port vlan id (PVID): 1 - 0x0000: 0080 c201 0001 - Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2) - Port and Protocol VLAN ID Subtype (2) - port and protocol vlan id (PPVID): 0, flags [supported] (0x02) - 0x0000: 0080 c202 0200 00 - Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2) - VLAN name Subtype (3) - vlan id (VID): 1 - vlan name: default - 0x0000: 0080 c203 0001 0764 6566 6175 6c74 - Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2) - Protocol Identity Subtype (4) - protocol identity: - 0x0000: 0080 c204 0800 0042 4203 0000 00 - Organization specific TLV (127), length 5: OUI Ethernet bridged (0x0080c2) - Application Priority Subtype (12) - RES: 0 - 0x0000: 0080 c20c 00 - End TLV (0), length 0 -LLDP, length 86 - Chassis ID TLV (1), length 7 - Subtype MAC address (4): 08:00:27:42:ba:59 - 0x0000: 0408 0027 42ba 59 - Port ID TLV (2), length 7 - Subtype MAC address (3): 08:00:27:42:ba:59 - 0x0000: 0308 0027 42ba 59 - Time to Live TLV (3), length 2: TTL 120s - 0x0000: 0078 - Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) - Port VLAN Id Subtype (1) - port vlan id (PVID): 1 - 0x0000: 0080 c201 0001 - Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2) - Port and Protocol VLAN ID Subtype (2) - port and protocol vlan id (PPVID): 0, flags [supported] (0x02) - 0x0000: 0080 c202 0200 00 - Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2) - VLAN name Subtype (3) - vlan id (VID): 1 - vlan name: default - 0x0000: 0080 c203 0001 0764 6566 6175 6c74 - Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2) - Protocol Identity Subtype (4) - protocol identity: - 0x0000: 0080 c204 0800 0042 4203 0000 00 - Organization specific TLV (127), length 5: OUI Ethernet bridged (0x0080c2) - Application Priority Subtype (12) - RES: 0 - 0x0000: 0080 c20c 00 - End TLV (0), length 0 -IP (tos 0x10, ttl 128, id 0, offset 0, flags [none], proto UDP (17), length 328) - 0.0.0.0.68 > 255.255.255.255.67: [udp sum ok] BOOTP/DHCP, Request from 08:00:27:46:e8:84, length 300, xid 0xbb58bf40, secs 7, Flags [none] (0x0000) - Client-Ethernet-Address 08:00:27:46:e8:84 - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - Parameter-Request Option 55, length 17: - Subnet-Mask, BR, Time-Zone, Classless-Static-Route - Domain-Name, Domain-Name-Server, Hostname, YD - YS, NTP, MTU, Option 119 - Default-Gateway, Classless-Static-Route, Classless-Static-Route-Microsoft, Option 252 - NTP -IP6 (hlim 1, next-header Options (0) payload length: 36) fe80::a00:27ff:fe46:e884 > ff02::16: HBH (rtalert: 0x0000) (padn) [icmp6 sum ok] ICMP6, multicast listener report v2, 1 group record(s) [gaddr ff02::1:ff00:0 to_ex { }] -LLDP, length 94 - Chassis ID TLV (1), length 7 - Subtype MAC address (4): 08:00:27:0d:f1:3c - 0x0000: 0408 0027 0df1 3c - Port ID TLV (2), length 7 - Subtype MAC address (3): 08:00:27:0d:f1:3c - 0x0000: 0308 0027 0df1 3c - Time to Live TLV (3), length 2: TTL 120s - 0x0000: 0078 - Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) - Port VLAN Id Subtype (1) - port vlan id (PVID): 1 - 0x0000: 0080 c201 0001 - Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2) - Port and Protocol VLAN ID Subtype (2) - port and protocol vlan id (PPVID): 0, flags [supported] (0x02) - 0x0000: 0080 c202 0200 00 - Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2) - VLAN name Subtype (3) - vlan id (VID): 1 - vlan name: default - 0x0000: 0080 c203 0001 0764 6566 6175 6c74 - Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2) - Protocol Identity Subtype (4) - protocol identity: - 0x0000: 0080 c204 0800 0042 4203 0000 00 - Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) - Congestion Notification Subtype (8) - Pre-Priority CNPV Indicator - Priority : 0 1 2 3 4 5 6 7 - Value : 0 0 0 0 0 1 0 0 - Pre-Priority Ready Indicator - Priority : 0 1 2 3 4 5 6 7 - Value : 0 0 0 0 0 0 0 0 - 0x0000: 0080 c208 2000 - Organization specific TLV (127), length 5: OUI Ethernet bridged (0x0080c2) - Application Priority Subtype (12) - RES: 0 - 0x0000: 0080 c20c 00 - End TLV (0), length 0 -LLDP, length 94 - Chassis ID TLV (1), length 7 - Subtype MAC address (4): 08:00:27:0d:f1:3c - 0x0000: 0408 0027 0df1 3c - Port ID TLV (2), length 7 - Subtype MAC address (3): 08:00:27:0d:f1:3c - 0x0000: 0308 0027 0df1 3c - Time to Live TLV (3), length 2: TTL 120s - 0x0000: 0078 - Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) - Port VLAN Id Subtype (1) - port vlan id (PVID): 1 - 0x0000: 0080 c201 0001 - Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2) - Port and Protocol VLAN ID Subtype (2) - port and protocol vlan id (PPVID): 0, flags [supported] (0x02) - 0x0000: 0080 c202 0200 00 - Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2) - VLAN name Subtype (3) - vlan id (VID): 1 - vlan name: default - 0x0000: 0080 c203 0001 0764 6566 6175 6c74 - Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2) - Protocol Identity Subtype (4) - protocol identity: - 0x0000: 0080 c204 0800 0042 4203 0000 00 - Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) - Congestion Notification Subtype (8) - Pre-Priority CNPV Indicator - Priority : 0 1 2 3 4 5 6 7 - Value : 0 0 0 0 0 1 0 0 - Pre-Priority Ready Indicator - Priority : 0 1 2 3 4 5 6 7 - Value : 0 0 0 0 0 0 0 0 - 0x0000: 0080 c208 2000 - Organization specific TLV (127), length 5: OUI Ethernet bridged (0x0080c2) - Application Priority Subtype (12) - RES: 0 - 0x0000: 0080 c20c 00 - End TLV (0), length 0 diff --git a/tests/dcb_qcn.pcap b/tests/dcb_qcn.pcap deleted file mode 100644 index 9034d7c..0000000 Binary files a/tests/dcb_qcn.pcap and /dev/null differ diff --git a/tests/dccp_partial_csum_v4_longer.out b/tests/dccp_partial_csum_v4_longer.out deleted file mode 100644 index 1ec7002..0000000 --- a/tests/dccp_partial_csum_v4_longer.out +++ /dev/null @@ -1,30 +0,0 @@ -IP (tos 0x0, ttl 64, id 65312, offset 0, flags [DF], proto DCCP (33), length 52) - 139.133.209.176.39420 > 139.133.209.65.5001: DCCP (CCVal 0, CsCov 0, cksum 0xaaf3 (correct)) DCCP-Request (service=0) seq 38464816766 -IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto DCCP (33), length 68) - 139.133.209.65.5001 > 139.133.209.176.39420: DCCP (CCVal 0, CsCov 0, cksum 0xb04b (correct)) DCCP-Response (service=0) (ack=38464816766) seq 1960341146 -IP (tos 0x0, ttl 64, id 65313, offset 0, flags [DF], proto DCCP (33), length 56) - 139.133.209.176.39420 > 139.133.209.65.5001: DCCP (CCVal 0, CsCov 0, cksum 0xf53a (correct)) DCCP-Ack (ack=1960341146) seq 38464816767 -IP (tos 0x0, ttl 64, id 65314, offset 0, flags [DF], proto DCCP (33), length 152) - 139.133.209.176.39420 > 139.133.209.65.5001: DCCP (CCVal 0, CsCov 6, cksum 0x7d28 (correct)) DCCP-DataAck (ack=1960341146) seq 38464816768 -IP (tos 0x0, ttl 64, id 3176, offset 0, flags [DF], proto DCCP (33), length 52) - 139.133.209.65.5001 > 139.133.209.176.39420: DCCP (CCVal 0, CsCov 0, cksum 0xfc63 (correct)) DCCP-Ack (ack=38464816768) seq 1960341147 -IP (tos 0x0, ttl 64, id 65315, offset 0, flags [DF], proto DCCP (33), length 148) - 139.133.209.176.39420 > 139.133.209.65.5001: DCCP (CCVal 0, CsCov 6, cksum 0x5e05 (correct)) DCCP-DataAck (ack=1960341147) seq 38464816769 -IP (tos 0x0, ttl 64, id 3177, offset 0, flags [DF], proto DCCP (33), length 52) - 139.133.209.65.5001 > 139.133.209.176.39420: DCCP (CCVal 0, CsCov 0, cksum 0x0165 (correct)) DCCP-Ack (ack=38464816769) seq 1960341148 -IP (tos 0x0, ttl 64, id 65316, offset 0, flags [DF], proto DCCP (33), length 148) - 139.133.209.176.39420 > 139.133.209.65.5001: DCCP (CCVal 0, CsCov 6, cksum 0x5e1e (correct)) DCCP-DataAck (ack=1960341148) seq 38464816770 -IP (tos 0x0, ttl 64, id 65317, offset 0, flags [DF], proto DCCP (33), length 148) - 139.133.209.176.39420 > 139.133.209.65.5001: DCCP (CCVal 0, CsCov 6, cksum 0x5e15 (correct)) DCCP-DataAck (ack=1960341148) seq 38464816771 -IP (tos 0x0, ttl 64, id 3178, offset 0, flags [DF], proto DCCP (33), length 56) - 139.133.209.65.5001 > 139.133.209.176.39420: DCCP (CCVal 0, CsCov 0, cksum 0xfb32 (correct)) DCCP-Ack (ack=38464816770) seq 1960341149 -IP (tos 0x0, ttl 64, id 3179, offset 0, flags [DF], proto DCCP (33), length 56) - 139.133.209.65.5001 > 139.133.209.176.39420: DCCP (CCVal 0, CsCov 0, cksum 0xfa2f (correct)) DCCP-Ack (ack=38464816771) seq 1960341150 -IP (tos 0x0, ttl 64, id 65318, offset 0, flags [DF], proto DCCP (33), length 148) - 139.133.209.176.39420 > 139.133.209.65.5001: DCCP (CCVal 0, CsCov 6, cksum 0x5e35 (correct)) DCCP-DataAck (ack=1960341150) seq 38464816772 -IP (tos 0x0, ttl 64, id 65319, offset 0, flags [DF], proto DCCP (33), length 52) - 139.133.209.176.39420 > 139.133.209.65.5001: DCCP (CCVal 0, CsCov 0, cksum 0xf638 (correct)) DCCP-Close (ack=1960341150) seq 38464816773 -IP (tos 0x0, ttl 64, id 3180, offset 0, flags [DF], proto DCCP (33), length 56) - 139.133.209.65.5001 > 139.133.209.176.39420: DCCP (CCVal 0, CsCov 0, cksum 0xfb2c (correct)) DCCP-Ack (ack=38464816772) seq 1960341151 -IP (tos 0x0, ttl 64, id 3181, offset 0, flags [DF], proto DCCP (33), length 60) - 139.133.209.65.5001 > 139.133.209.176.39420: DCCP (CCVal 0, CsCov 0, cksum 0xef25 (correct)) DCCP-Reset (code=closed) (ack=38464816773) seq 1960341152 diff --git a/tests/dccp_partial_csum_v4_longer.pcap b/tests/dccp_partial_csum_v4_longer.pcap deleted file mode 100644 index f1176c0..0000000 Binary files a/tests/dccp_partial_csum_v4_longer.pcap and /dev/null differ diff --git a/tests/dccp_partial_csum_v4_simple.out b/tests/dccp_partial_csum_v4_simple.out deleted file mode 100644 index 6fee70d..0000000 --- a/tests/dccp_partial_csum_v4_simple.out +++ /dev/null @@ -1,14 +0,0 @@ -IP (tos 0x0, ttl 64, id 30095, offset 0, flags [DF], proto DCCP (33), length 52) - 139.133.209.176.52667 > 139.133.209.65.5001: DCCP (CCVal 0, CsCov 0, cksum 0xa766 (correct)) DCCP-Request (service=0) seq 33164071488 -IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto DCCP (33), length 68) - 139.133.209.65.5001 > 139.133.209.176.52667: DCCP (CCVal 0, CsCov 0, cksum 0x9a1a (correct)) DCCP-Response (service=0) (ack=33164071488) seq 1925546833 -IP (tos 0x0, ttl 64, id 30096, offset 0, flags [DF], proto DCCP (33), length 56) - 139.133.209.176.52667 > 139.133.209.65.5001: DCCP (CCVal 0, CsCov 0, cksum 0xdf09 (correct)) DCCP-Ack (ack=1925546833) seq 33164071489 -IP (tos 0x0, ttl 64, id 30097, offset 0, flags [DF], proto DCCP (33), length 68) - 139.133.209.176.52667 > 139.133.209.65.5001: DCCP (CCVal 0, CsCov 1, cksum 0x9dfa (correct)) DCCP-DataAck (ack=1925546833) seq 33164071490 -IP (tos 0x0, ttl 64, id 24713, offset 0, flags [DF], proto DCCP (33), length 52) - 139.133.209.65.5001 > 139.133.209.176.52667: DCCP (CCVal 0, CsCov 0, cksum 0xe632 (correct)) DCCP-Ack (ack=33164071490) seq 1925546834 -IP (tos 0x0, ttl 64, id 30098, offset 0, flags [DF], proto DCCP (33), length 52) - 139.133.209.176.52667 > 139.133.209.65.5001: DCCP (CCVal 0, CsCov 0, cksum 0xdf8d (correct)) DCCP-Close (ack=1925546834) seq 33164071491 -IP (tos 0x0, ttl 64, id 24714, offset 0, flags [DF], proto DCCP (33), length 60) - 139.133.209.65.5001 > 139.133.209.176.52667: DCCP (CCVal 0, CsCov 0, cksum 0xd900 (correct)) DCCP-Reset (code=closed) (ack=33164071491) seq 1925546835 diff --git a/tests/dccp_partial_csum_v4_simple.pcap b/tests/dccp_partial_csum_v4_simple.pcap deleted file mode 100644 index a9c3d66..0000000 Binary files a/tests/dccp_partial_csum_v4_simple.pcap and /dev/null differ diff --git a/tests/dccp_partial_csum_v6_longer.out b/tests/dccp_partial_csum_v6_longer.out deleted file mode 100644 index 76355d4..0000000 --- a/tests/dccp_partial_csum_v6_longer.out +++ /dev/null @@ -1,9 +0,0 @@ -IP6 (hlim 64, next-header DCCP (33) payload length: 32) 3ffe::1.55024 > 3ffe::2.5001: DCCP (CCVal 0, CsCov 0, cksum 0xd538 (correct)) DCCP-Request (service=0) seq 1559687427 -IP6 (hlim 64, next-header DCCP (33) payload length: 48) 3ffe::2.5001 > 3ffe::1.55024: DCCP (CCVal 0, CsCov 0, cksum 0x81a3 (correct)) DCCP-Response (service=0) (ack=1559687427) seq 1585962456 -IP6 (hlim 64, next-header DCCP (33) payload length: 36) 3ffe::1.55024 > 3ffe::2.5001: DCCP (CCVal 0, CsCov 0, cksum 0xc692 (correct)) DCCP-Ack (ack=1585962456) seq 1559687428 -IP6 (hlim 64, next-header DCCP (33) payload length: 164) 3ffe::1.55024 > 3ffe::2.5001: DCCP (CCVal 0, CsCov 10, cksum 0xe362 (correct)) DCCP-DataAck (ack=1585962456) seq 1559687429 -IP6 (hlim 64, next-header DCCP (33) payload length: 32) 3ffe::2.5001 > 3ffe::1.55024: DCCP (CCVal 0, CsCov 0, cksum 0xcdbb (correct)) DCCP-Ack (ack=1559687429) seq 1585962457 -IP6 (hlim 64, next-header DCCP (33) payload length: 160) 3ffe::1.55024 > 3ffe::2.5001: DCCP (CCVal 0, CsCov 10, cksum 0x5574 (correct)) DCCP-DataAck (ack=1585962457) seq 1559687430 -IP6 (hlim 64, next-header DCCP (33) payload length: 32) 3ffe::1.55024 > 3ffe::2.5001: DCCP (CCVal 0, CsCov 0, cksum 0xc778 (correct)) DCCP-Close (ack=1585962457) seq 1559687431 -IP6 (hlim 64, next-header DCCP (33) payload length: 32) 3ffe::2.5001 > 3ffe::1.55024: DCCP (CCVal 0, CsCov 0, cksum 0xd2bc (correct)) DCCP-Ack (ack=1559687430) seq 1585962458 -IP6 (hlim 64, next-header DCCP (33) payload length: 40) 3ffe::2.5001 > 3ffe::1.55024: DCCP (CCVal 0, CsCov 0, cksum 0xc186 (correct)) DCCP-Reset (code=closed) (ack=1559687431) seq 1585962459 diff --git a/tests/dccp_partial_csum_v6_longer.pcap b/tests/dccp_partial_csum_v6_longer.pcap deleted file mode 100644 index 644379d..0000000 Binary files a/tests/dccp_partial_csum_v6_longer.pcap and /dev/null differ diff --git a/tests/dccp_partial_csum_v6_simple.out b/tests/dccp_partial_csum_v6_simple.out deleted file mode 100644 index 317a68a..0000000 --- a/tests/dccp_partial_csum_v6_simple.out +++ /dev/null @@ -1,7 +0,0 @@ -IP6 (hlim 64, next-header DCCP (33) payload length: 32) 3ffe::1.52921 > 3ffe::2.5001: DCCP (CCVal 0, CsCov 0, cksum 0xef1a (correct)) DCCP-Request (service=0) seq 1337846929 -IP6 (hlim 64, next-header DCCP (33) payload length: 48) 3ffe::2.5001 > 3ffe::1.52921: DCCP (CCVal 0, CsCov 0, cksum 0x0b73 (correct)) DCCP-Response (service=0) (ack=1337846929) seq 1385331168 -IP6 (hlim 64, next-header DCCP (33) payload length: 36) 3ffe::1.52921 > 3ffe::2.5001: DCCP (CCVal 0, CsCov 0, cksum 0x5062 (correct)) DCCP-Ack (ack=1385331168) seq 1337846930 -IP6 (hlim 64, next-header DCCP (33) payload length: 48) 3ffe::1.52921 > 3ffe::2.5001: DCCP (CCVal 0, CsCov 1, cksum 0x8792 (correct)) DCCP-DataAck (ack=1385331168) seq 1337846931 -IP6 (hlim 64, next-header DCCP (33) payload length: 32) 3ffe::2.5001 > 3ffe::1.52921: DCCP (CCVal 0, CsCov 0, cksum 0x578b (correct)) DCCP-Ack (ack=1337846931) seq 1385331169 -IP6 (hlim 64, next-header DCCP (33) payload length: 32) 3ffe::1.52921 > 3ffe::2.5001: DCCP (CCVal 0, CsCov 0, cksum 0x61e0 (correct)) DCCP-Close (ack=1385331169) seq 1337846932 -IP6 (hlim 64, next-header DCCP (33) payload length: 40) 3ffe::2.5001 > 3ffe::1.52921: DCCP (CCVal 0, CsCov 0, cksum 0x4b59 (correct)) DCCP-Reset (code=closed) (ack=1337846932) seq 1385331170 diff --git a/tests/dccp_partial_csum_v6_simple.pcap b/tests/dccp_partial_csum_v6_simple.pcap deleted file mode 100644 index c343d90..0000000 Binary files a/tests/dccp_partial_csum_v6_simple.pcap and /dev/null differ diff --git a/tests/decnet.out b/tests/decnet.out deleted file mode 100644 index 8767c62..0000000 --- a/tests/decnet.out +++ /dev/null @@ -1,139 +0,0 @@ -endnode-hello endnode vers 2 eco 0 ueco 0 src 1.1 blksize 16434 rtr 0.0 hello 10 data 2 -endnode-hello endnode vers 2 eco 0 ueco 0 src 1.1 blksize 16434 rtr 0.0 hello 10 data 2 -endnode-hello endnode vers 2 eco 0 ueco 0 src 1.1 blksize 16434 rtr 0.0 hello 10 data 2 -endnode-hello endnode vers 2 eco 0 ueco 0 src 1.1 blksize 16434 rtr 0.0 hello 10 data 2 -endnode-hello endnode vers 2 eco 0 ueco 0 src 1.1 blksize 16434 rtr 0.0 hello 10 data 2 -1.1 > 1.1 34 conn-initiate 8195>0 ver 4.1 segsize 16403 -1.1 > 1.1 9 [|decnet] -1.1 > 1.1 16 conn-confirm 8196>8195 ver 4.1 segsize 16403 -1.1 > 1.1 19 link-service 8195>8196 ack 0 ackdat 0 seg 1 dat seg count 0 -1.1 > 1.1 15 ils-ack 8196>8195 ack 1 ackdat 0 -1.1 > 1.1 45 data 8195>8196 ack 0 oack 0 seg 1 -1.1 > 1.1 15 data-ack 8196>8195 ack 1 oack 1 -1.1 > 1.1 18 data 8196>8195 ack 1 oack 1 seg 1 -1.1 > 1.1 15 data-ack 8195>8196 ack 1 oack 0 -1.1 > 1.1 33 data 8195>8196 ack 1 oack 0 seg 2 -1.1 > 1.1 15 data-ack 8196>8195 ack 2 oack 1 -1.1 > 1.1 18 data 8196>8195 ack 2 oack 1 seg 2 -1.1 > 1.1 15 data-ack 8195>8196 ack 2 oack 0 -endnode-hello endnode vers 2 eco 0 ueco 0 src 1.1 blksize 16434 rtr 0.0 hello 10 data 2 -1.1 > 1.1 34 conn-initiate 8197>0 ver 4.1 segsize 16403 -1.1 > 1.1 9 [|decnet] -1.1 > 1.1 16 conn-confirm 8198>8197 ver 4.1 segsize 16403 -1.1 > 1.1 19 link-service 8197>8198 ack 0 ackdat 0 seg 1 dat seg count 0 -1.1 > 1.1 15 ils-ack 8198>8197 ack 1 ackdat 0 -1.1 > 1.1 45 data 8197>8198 ack 0 oack 0 seg 1 -1.1 > 1.1 15 data-ack 8198>8197 ack 1 oack 1 -1.1 > 1.1 32 data 8197>8198 ack 0 oack 0 seg 2 -1.1 > 1.1 15 data-ack 8198>8197 ack 2 oack 1 -1.1 > 1.1 18 data 8198>8197 ack 2 oack 1 seg 1 -1.1 > 1.1 15 data-ack 8197>8198 ack 1 oack 0 -1.1 > 1.1 19 link-service 8195>8196 ack 0 ackdat 2 seg 2 dat seg count 0 -1.1 > 1.1 15 ils-ack 8196>8195 ack 2 ackdat 2 -endnode-hello endnode vers 2 eco 0 ueco 0 src 1.1 blksize 16434 rtr 0.0 hello 10 data 2 -1.1 > 1.1 19 link-service 8197>8198 ack 0 ackdat 1 seg 2 dat seg count 0 -1.1 > 1.1 19 link-service 8198>8197 ack 1 ackdat 2 seg 1 dat seg count 0 -1.1 > 1.1 15 ils-ack 8198>8197 ack 2 ackdat 2 -1.1 > 1.1 15 ils-ack 8197>8198 ack 1 ackdat 1 -1.1 > 1.1 19 link-service 8195>8196 ack 0 ackdat 2 seg 3 dat seg count 0 -1.1 > 1.1 15 ils-ack 8196>8195 ack 3 ackdat 2 -1.1 > 1.1 33 data 8197>8198 ack 1 oack 1 seg 3 -1.1 > 1.1 15 data-ack 8198>8197 ack 3 oack 2 -1.1 > 1.1 33 data 8197>8198 ack 1 oack 1 seg 4 -1.1 > 1.1 15 data-ack 8198>8197 ack 4 oack 2 -endnode-hello endnode vers 2 eco 0 ueco 0 src 1.1 blksize 16434 rtr 0.0 hello 10 data 2 -1.1 > 1.1 33 data 8197>8198 ack 1 oack 1 seg 5 -1.1 > 1.1 15 data-ack 8198>8197 ack 5 oack 2 -1.1 > 1.1 33 data 8197>8198 ack 1 oack 1 seg 6 -1.1 > 1.1 15 data-ack 8198>8197 ack 6 oack 2 -1.1 > 1.1 33 data 8197>8198 ack 1 oack 1 seg 7 -1.1 > 1.1 15 data-ack 8198>8197 ack 7 oack 2 -1.1 > 1.1 33 data 8197>8198 ack 1 oack 1 seg 8 -1.1 > 1.1 15 data-ack 8198>8197 ack 8 oack 2 -1.1 > 1.1 33 data 8197>8198 ack 1 oack 1 seg 9 -1.1 > 1.1 15 data-ack 8198>8197 ack 9 oack 2 -1.1 > 1.1 33 data 8197>8198 ack 1 oack 1 seg 10 -1.1 > 1.1 15 data-ack 8198>8197 ack 10 oack 2 -1.1 > 1.1 33 data 8197>8198 ack 1 oack 1 seg 11 -1.1 > 1.1 15 data-ack 8198>8197 ack 11 oack 2 -1.1 > 1.1 33 data 8197>8198 ack 1 oack 1 seg 12 -1.1 > 1.1 15 data-ack 8198>8197 ack 12 oack 2 -1.1 > 1.1 33 data 8197>8198 ack 1 oack 1 seg 13 -1.1 > 1.1 15 data-ack 8198>8197 ack 13 oack 2 -1.1 > 1.1 33 data 8197>8198 ack 1 oack 1 seg 14 -1.1 > 1.1 15 data-ack 8198>8197 ack 14 oack 2 -1.1 > 1.1 33 data 8197>8198 ack 1 oack 1 seg 15 -1.1 > 1.1 15 data-ack 8198>8197 ack 15 oack 2 -1.1 > 1.1 33 data 8197>8198 ack 1 oack 1 seg 16 -1.1 > 1.1 15 data-ack 8198>8197 ack 16 oack 2 -1.1 > 1.1 33 data 8197>8198 ack 1 oack 1 seg 17 -1.1 > 1.1 15 data-ack 8198>8197 ack 17 oack 2 -1.1 > 1.1 33 data 8197>8198 ack 1 oack 1 seg 18 -1.1 > 1.1 15 data-ack 8198>8197 ack 18 oack 2 -1.1 > 1.1 33 data 8197>8198 ack 1 oack 1 seg 19 -1.1 > 1.1 15 data-ack 8198>8197 ack 19 oack 2 -1.1 > 1.1 33 data 8197>8198 ack 1 oack 1 seg 20 -1.1 > 1.1 15 data-ack 8198>8197 ack 20 oack 2 -1.1 > 1.1 33 data 8197>8198 ack 1 oack 1 seg 21 -1.1 > 1.1 15 data-ack 8198>8197 ack 21 oack 2 -1.1 > 1.1 19 link-service 8195>8196 ack 0 ackdat 2 seg 4 dat seg count 0 -1.1 > 1.1 15 ils-ack 8196>8195 ack 4 ackdat 2 -1.1 > 1.1 33 data 8195>8196 ack 2 oack 0 seg 3 -1.1 > 1.1 15 data-ack 8196>8195 ack 3 oack 4 -1.1 > 1.1 33 data 8195>8196 ack 2 oack 0 seg 4 -1.1 > 1.1 15 data-ack 8196>8195 ack 4 oack 4 -1.1 > 1.1 33 data 8195>8196 ack 2 oack 0 seg 5 -1.1 > 1.1 15 data-ack 8196>8195 ack 5 oack 4 -1.1 > 1.1 33 data 8195>8196 ack 2 oack 0 seg 6 -1.1 > 1.1 15 data-ack 8196>8195 ack 6 oack 4 -1.1 > 1.1 33 data 8195>8196 ack 2 oack 0 seg 7 -1.1 > 1.1 15 data-ack 8196>8195 ack 7 oack 4 -1.1 > 1.1 33 data 8195>8196 ack 2 oack 0 seg 8 -1.1 > 1.1 15 data-ack 8196>8195 ack 8 oack 4 -1.1 > 1.1 33 data 8195>8196 ack 2 oack 0 seg 9 -1.1 > 1.1 15 data-ack 8196>8195 ack 9 oack 4 -endnode-hello endnode vers 2 eco 0 ueco 0 src 1.1 blksize 16434 rtr 0.0 hello 10 data 2 -1.1 > 1.1 33 data 8195>8196 ack 2 oack 0 seg 10 -1.1 > 1.1 15 data-ack 8196>8195 ack 10 oack 4 -1.1 > 1.1 33 data 8195>8196 ack 2 oack 0 seg 11 -1.1 > 1.1 15 data-ack 8196>8195 ack 11 oack 4 -1.1 > 1.1 33 data 8195>8196 ack 2 oack 0 seg 12 -1.1 > 1.1 15 data-ack 8196>8195 ack 12 oack 4 -1.1 > 1.1 33 data 8195>8196 ack 2 oack 0 seg 13 -1.1 > 1.1 15 data-ack 8196>8195 ack 13 oack 4 -1.1 > 1.1 33 data 8195>8196 ack 2 oack 0 seg 14 -1.1 > 1.1 15 data-ack 8196>8195 ack 14 oack 4 -1.1 > 1.1 33 data 8195>8196 ack 2 oack 0 seg 15 -1.1 > 1.1 15 data-ack 8196>8195 ack 15 oack 4 -1.1 > 1.1 33 data 8195>8196 ack 2 oack 0 seg 16 -1.1 > 1.1 15 data-ack 8196>8195 ack 16 oack 4 -1.1 > 1.1 33 data 8195>8196 ack 2 oack 0 seg 17 -1.1 > 1.1 15 data-ack 8196>8195 ack 17 oack 4 -1.1 > 1.1 33 data 8195>8196 ack 2 oack 0 seg 18 -1.1 > 1.1 15 data-ack 8196>8195 ack 18 oack 4 -1.1 > 1.1 33 data 8195>8196 ack 2 oack 0 seg 19 -1.1 > 1.1 15 data-ack 8196>8195 ack 19 oack 4 -1.1 > 1.1 33 data 8195>8196 ack 2 oack 0 seg 20 -1.1 > 1.1 15 data-ack 8196>8195 ack 20 oack 4 -1.1 > 1.1 33 data 8195>8196 ack 2 oack 0 seg 21 -1.1 > 1.1 15 data-ack 8196>8195 ack 21 oack 4 -1.1 > 1.1 33 data 8195>8196 ack 2 oack 0 seg 22 -1.1 > 1.1 15 data-ack 8196>8195 ack 22 oack 4 -1.1 > 1.1 33 data 8195>8196 ack 2 oack 0 seg 23 -1.1 > 1.1 15 data-ack 8196>8195 ack 23 oack 4 -1.1 > 1.1 19 link-service 8197>8198 ack 1 ackdat 1 seg 3 dat seg count 0 -1.1 > 1.1 19 link-service 8198>8197 ack 2 ackdat 21 seg 2 dat seg count 0 -1.1 > 1.1 15 ils-ack 8198>8197 ack 3 ackdat 21 -1.1 > 1.1 15 ils-ack 8197>8198 ack 2 ackdat 1 -endnode-hello endnode vers 2 eco 0 ueco 0 src 1.1 blksize 16434 rtr 0.0 hello 10 data 2 -1.1 > 1.1 32 data 8197>8198 ack 1 oack 2 seg 22 -1.1 > 1.1 15 data-ack 8198>8197 ack 22 oack 3 -1.1 > 1.1 32 data 8197>8198 ack 1 oack 2 seg 23 -1.1 > 1.1 15 data-ack 8198>8197 ack 23 oack 3 -1.1 > 1.1 14 disconn-initiate 8196>8195 object rejected connect -1.1 > 1.1 13 disconn-confirm 8195>8196 disconnect complete -1.1 > 1.1 14 disconn-initiate 8197>8198 object rejected connect -1.1 > 1.1 13 disconn-confirm 8198>8197 disconnect complete -1.1 > 1.1 13 disconn-confirm 8198>8197 disconnect complete -1.1 > 1.1 13 disconn-confirm 8195>8196 disconnect complete -endnode-hello endnode vers 2 eco 0 ueco 0 src 1.1 blksize 16434 rtr 0.0 hello 10 data 2 diff --git a/tests/dhcp-rfc3004-v.out b/tests/dhcp-rfc3004-v.out deleted file mode 100644 index 2032817..0000000 --- a/tests/dhcp-rfc3004-v.out +++ /dev/null @@ -1,55 +0,0 @@ -IP (tos 0x10, ttl 128, id 0, offset 0, flags [none], proto UDP (17), length 328) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:0c:29:1f:74:06, length 300, xid 0x6e32864, Flags [none] - Client-Ethernet-Address 00:0c:29:1f:74:06 - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - Requested-IP Option 50, length 4: 192.168.1.4 - Parameter-Request Option 55, length 7: - Subnet-Mask, BR, Time-Zone, Default-Gateway - Domain-Name, Domain-Name-Server, Hostname - User-Class Option 77, length 37: - instance#1: "subopt1", length 7 - instance#2: "subopt2-123456789", length 17 - instance#3: "subopt3-12", length 10 -IP (tos 0x0, ttl 64, id 0, offset 0, flags [none], proto UDP (17), length 308) - 192.168.1.1.67 > 192.168.1.4.68: BOOTP/DHCP, Reply, length 280, xid 0x6e32864, Flags [none] - Your-IP 192.168.1.4 - Client-Ethernet-Address 00:0c:29:1f:74:06 - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Offer - Server-ID Option 54, length 4: 192.168.1.1 - Lease-Time Option 51, length 4: 86400 - Subnet-Mask Option 1, length 4: 255.255.255.0 - Default-Gateway Option 3, length 4: 192.168.1.1 - Domain-Name-Server Option 6, length 4: 192.168.1.1 - Domain-Name Option 15, length 4: "Home" -IP (tos 0x10, ttl 128, id 0, offset 0, flags [none], proto UDP (17), length 332) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:0c:29:1f:74:06, length 304, xid 0x6e32864, Flags [none] - Client-Ethernet-Address 00:0c:29:1f:74:06 - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Request - Server-ID Option 54, length 4: 192.168.1.1 - Requested-IP Option 50, length 4: 192.168.1.4 - Parameter-Request Option 55, length 7: - Subnet-Mask, BR, Time-Zone, Default-Gateway - Domain-Name, Domain-Name-Server, Hostname - User-Class Option 77, length 37: - instance#1: "subopt1", length 7 - instance#2: "subopt2-123456789", length 17 - instance#3: "subopt3-12", length 10 -IP (tos 0x0, ttl 64, id 0, offset 0, flags [none], proto UDP (17), length 308) - 192.168.1.1.67 > 192.168.1.4.68: BOOTP/DHCP, Reply, length 280, xid 0x6e32864, Flags [none] - Your-IP 192.168.1.4 - Client-Ethernet-Address 00:0c:29:1f:74:06 - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: ACK - Server-ID Option 54, length 4: 192.168.1.1 - Lease-Time Option 51, length 4: 86400 - Subnet-Mask Option 1, length 4: 255.255.255.0 - Default-Gateway Option 3, length 4: 192.168.1.1 - Domain-Name-Server Option 6, length 4: 192.168.1.1 - Domain-Name Option 15, length 4: "Home" diff --git a/tests/dhcp-rfc3004.pcap b/tests/dhcp-rfc3004.pcap deleted file mode 100644 index 11806c3..0000000 Binary files a/tests/dhcp-rfc3004.pcap and /dev/null differ diff --git a/tests/dhcp-rfc5859-v.out b/tests/dhcp-rfc5859-v.out deleted file mode 100644 index 6f31368..0000000 --- a/tests/dhcp-rfc5859-v.out +++ /dev/null @@ -1,44 +0,0 @@ -IP (tos 0x10, ttl 128, id 0, offset 0, flags [none], proto UDP (17), length 328) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:0c:29:1f:74:06, length 300, xid 0xde549277, Flags [none] - Client-Ethernet-Address 00:0c:29:1f:74:06 - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Discover - Parameter-Request Option 55, length 8: - Subnet-Mask, BR, Time-Zone, Default-Gateway - Domain-Name, Domain-Name-Server, Hostname, TFTP-Server-Address -IP (tos 0x10, ttl 128, id 0, offset 0, flags [none], proto UDP (17), length 328) - 192.168.1.1.67 > 192.168.1.4.68: BOOTP/DHCP, Reply, length 300, xid 0xde549277, Flags [none] - Your-IP 192.168.1.4 - Client-Ethernet-Address 00:0c:29:1f:74:06 - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Offer - Server-ID Option 54, length 4: 192.168.1.1 - Lease-Time Option 51, length 4: 43200 - Subnet-Mask Option 1, length 4: 255.255.255.0 - Default-Gateway Option 3, length 4: 192.168.1.1 - TFTP-Server-Address Option 150, length 8: 192.168.1.10,192.168.1.11 -IP (tos 0x10, ttl 128, id 0, offset 0, flags [none], proto UDP (17), length 328) - 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:0c:29:1f:74:06, length 300, xid 0xde549277, Flags [none] - Client-Ethernet-Address 00:0c:29:1f:74:06 - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: Request - Server-ID Option 54, length 4: 192.168.1.1 - Requested-IP Option 50, length 4: 192.168.1.4 - Parameter-Request Option 55, length 8: - Subnet-Mask, BR, Time-Zone, Default-Gateway - Domain-Name, Domain-Name-Server, Hostname, TFTP-Server-Address -IP (tos 0x10, ttl 128, id 0, offset 0, flags [none], proto UDP (17), length 328) - 192.168.1.1.67 > 192.168.1.4.68: BOOTP/DHCP, Reply, length 300, xid 0xde549277, Flags [none] - Your-IP 192.168.1.4 - Client-Ethernet-Address 00:0c:29:1f:74:06 - Vendor-rfc1048 Extensions - Magic Cookie 0x63825363 - DHCP-Message Option 53, length 1: ACK - Server-ID Option 54, length 4: 192.168.1.1 - Lease-Time Option 51, length 4: 43200 - Subnet-Mask Option 1, length 4: 255.255.255.0 - Default-Gateway Option 3, length 4: 192.168.1.1 - TFTP-Server-Address Option 150, length 8: 192.168.1.10,192.168.1.11 diff --git a/tests/dhcp-rfc5859.pcap b/tests/dhcp-rfc5859.pcap deleted file mode 100644 index e16a6b3..0000000 Binary files a/tests/dhcp-rfc5859.pcap and /dev/null differ diff --git a/tests/dhcpv6-AFTR-Name-RFC6334.out b/tests/dhcpv6-AFTR-Name-RFC6334.out deleted file mode 100644 index 13f6a4f..0000000 --- a/tests/dhcpv6-AFTR-Name-RFC6334.out +++ /dev/null @@ -1,4 +0,0 @@ -IP6 (class 0xc0, hlim 64, next-header UDP (17) payload length: 56) fe80::201:2ff:fe03:405.546 > ff02::1:2.547: [udp sum ok] dhcp6 solicit (xid=d81eb8 (client-ID hwaddr type 1 000102030405) (option-request DNS-server AFTR-Name) (elapsed-time 0) (IA_PD IAID:33752069 T1:3600 T2:5400)) -IP6 (hlim 64, next-header UDP (17) payload length: 142) fe80::211:22ff:fe33:4455.547 > fe80::201:2ff:fe03:405.546: [udp sum ok] dhcp6 advertise (xid=d81eb8 (IA_PD IAID:33752069 T1:150 T2:250 (IA_PD-prefix 2a00:1:1:100::/56 pltime:250 vltime:300)) (client-ID hwaddr type 1 000102030405) (server-ID hwaddr/time type 1 time 406802160 001122334455) (preference 10) (DNS-server 2a01::1) (AFTR-Name aftr-name.mydomain.net)) -IP6 (class 0xc0, hlim 64, next-header UDP (17) payload length: 103) fe80::201:2ff:fe03:405.546 > ff02::1:2.547: [udp sum ok] dhcp6 request (xid=1e291d (client-ID hwaddr type 1 000102030405) (server-ID hwaddr/time type 1 time 406802160 001122334455) (option-request DNS-server AFTR-Name) (elapsed-time 0) (IA_PD IAID:33752069 T1:3600 T2:5400 (IA_PD-prefix 2a00:1:1:100::/56 pltime:7200 vltime:7500))) -IP6 (hlim 64, next-header UDP (17) payload length: 142) fe80::211:22ff:fe33:4455.547 > fe80::201:2ff:fe03:405.546: [udp sum ok] dhcp6 reply (xid=1e291d (IA_PD IAID:33752069 T1:150 T2:250 (IA_PD-prefix 2a00:1:1:100::/56 pltime:250 vltime:300)) (client-ID hwaddr type 1 000102030405) (server-ID hwaddr/time type 1 time 406802160 001122334455) (preference 10) (DNS-server 2a01::1) (AFTR-Name aftr-name.mydomain.net)) diff --git a/tests/dhcpv6-AFTR-Name-RFC6334.pcap b/tests/dhcpv6-AFTR-Name-RFC6334.pcap deleted file mode 100644 index d6b353e..0000000 Binary files a/tests/dhcpv6-AFTR-Name-RFC6334.pcap and /dev/null differ diff --git a/tests/dhcpv6-domain-list.out b/tests/dhcpv6-domain-list.out deleted file mode 100644 index 30b449c..0000000 --- a/tests/dhcpv6-domain-list.out +++ /dev/null @@ -1 +0,0 @@ -IP6 (hlim 64, next-header UDP (17) payload length: 101) fe80::20c:29ff:fe9b:a15d.547 > fe80::20c:29ff:fe38:f368.546: [udp sum ok] dhcp6 reply (xid=aa56ce (client-ID hwaddr/time type 1 time 418384703 000c2938f368) (server-ID hwaddr/time type 1 time 418354459 000c299ba153) (DNS-search-list example.com. sales.example.com. eng.example.com.)) diff --git a/tests/dhcpv6-domain-list.pcap b/tests/dhcpv6-domain-list.pcap deleted file mode 100644 index b0afeff..0000000 Binary files a/tests/dhcpv6-domain-list.pcap and /dev/null differ diff --git a/tests/dhcpv6-ia-na.out b/tests/dhcpv6-ia-na.out deleted file mode 100644 index b1dd0f0..0000000 --- a/tests/dhcpv6-ia-na.out +++ /dev/null @@ -1,4 +0,0 @@ -IP6 (class 0xc0, hlim 64, next-header UDP (17) payload length: 56) fe80::201:2ff:fe03:405.546 > ff02::1:2.547: [udp sum ok] dhcp6 solicit (xid=90b45c (client-ID hwaddr type 1 000102030405) (option-request DNS-server DNS-search-list) (elapsed-time 0) (IA_NA IAID:33752069 T1:3600 T2:5400)) -IP6 (hlim 64, next-header UDP (17) payload length: 88) fe80::211:22ff:fe33:4455.547 > fe80::201:2ff:fe03:405.546: [udp sum ok] dhcp6 advertise (xid=90b45c (IA_NA IAID:33752069 T1:3600 T2:5400 (IA_ADDR 2a00:1:1:200:38e6:b22e:c440:acdf pltime:4500 vltime:7200)) (client-ID hwaddr type 1 000102030405) (server-ID hwaddr/time type 1 time 407259276 001122334455)) -IP6 (class 0xc0, hlim 64, next-header UDP (17) payload length: 102) fe80::201:2ff:fe03:405.546 > ff02::1:2.547: [udp sum ok] dhcp6 request (xid=2ffdd1 (client-ID hwaddr type 1 000102030405) (server-ID hwaddr/time type 1 time 407259276 001122334455) (option-request DNS-server DNS-search-list) (elapsed-time 0) (IA_NA IAID:33752069 T1:3600 T2:5400 (IA_ADDR 2a00:1:1:200:38e6:b22e:c440:acdf pltime:7200 vltime:7500))) -IP6 (hlim 64, next-header UDP (17) payload length: 88) fe80::211:22ff:fe33:4455.547 > fe80::201:2ff:fe03:405.546: [udp sum ok] dhcp6 reply (xid=2ffdd1 (IA_NA IAID:33752069 T1:3600 T2:5400 (IA_ADDR 2a00:1:1:200:38e6:b22e:c440:acdf pltime:4500 vltime:7200)) (client-ID hwaddr type 1 000102030405) (server-ID hwaddr/time type 1 time 407259276 001122334455)) diff --git a/tests/dhcpv6-ia-na.pcap b/tests/dhcpv6-ia-na.pcap deleted file mode 100644 index 3cafdc5..0000000 Binary files a/tests/dhcpv6-ia-na.pcap and /dev/null differ diff --git a/tests/dhcpv6-ia-pd.out b/tests/dhcpv6-ia-pd.out deleted file mode 100644 index f230467..0000000 --- a/tests/dhcpv6-ia-pd.out +++ /dev/null @@ -1,4 +0,0 @@ -IP6 (class 0xc0, hlim 64, next-header UDP (17) payload length: 56) fe80::201:2ff:fe03:405.546 > ff02::1:2.547: [udp sum ok] dhcp6 solicit (xid=e1e093 (client-ID hwaddr type 1 000102030405) (option-request DNS-server DNS-search-list) (elapsed-time 0) (IA_PD IAID:33752069 T1:3600 T2:5400)) -IP6 (hlim 64, next-header UDP (17) payload length: 89) fe80::211:22ff:fe33:4455.547 > fe80::201:2ff:fe03:405.546: [udp sum ok] dhcp6 advertise (xid=e1e093 (IA_PD IAID:33752069 T1:3600 T2:5400 (IA_PD-prefix 2a00:1:1:100::/56 pltime:4500 vltime:7200)) (client-ID hwaddr type 1 000102030405) (server-ID hwaddr/time type 1 time 407259545 001122334455)) -IP6 (class 0xc0, hlim 64, next-header UDP (17) payload length: 103) fe80::201:2ff:fe03:405.546 > ff02::1:2.547: [udp sum ok] dhcp6 request (xid=12b08a (client-ID hwaddr type 1 000102030405) (server-ID hwaddr/time type 1 time 407259545 001122334455) (option-request DNS-server DNS-search-list) (elapsed-time 0) (IA_PD IAID:33752069 T1:3600 T2:5400 (IA_PD-prefix 2a00:1:1:100::/56 pltime:7200 vltime:7500))) -IP6 (hlim 64, next-header UDP (17) payload length: 89) fe80::211:22ff:fe33:4455.547 > fe80::201:2ff:fe03:405.546: [udp sum ok] dhcp6 reply (xid=12b08a (IA_PD IAID:33752069 T1:3600 T2:5400 (IA_PD-prefix 2a00:1:1:100::/56 pltime:4500 vltime:7200)) (client-ID hwaddr type 1 000102030405) (server-ID hwaddr/time type 1 time 407259545 001122334455)) diff --git a/tests/dhcpv6-ia-pd.pcap b/tests/dhcpv6-ia-pd.pcap deleted file mode 100644 index 5fdd067..0000000 Binary files a/tests/dhcpv6-ia-pd.pcap and /dev/null differ diff --git a/tests/dhcpv6-ia-ta.out b/tests/dhcpv6-ia-ta.out deleted file mode 100644 index 5a8acef..0000000 --- a/tests/dhcpv6-ia-ta.out +++ /dev/null @@ -1,4 +0,0 @@ -IP6 (class 0xc0, hlim 64, next-header UDP (17) payload length: 48) fe80::201:2ff:fe03:405.546 > ff02::1:2.547: [udp sum ok] dhcp6 solicit (xid=28b040 (client-ID hwaddr type 1 000102030405) (option-request DNS-server DNS-search-list) (elapsed-time 0) (IA_TA IAID:33752069)) -IP6 (hlim 64, next-header UDP (17) payload length: 80) fe80::211:22ff:fe33:4455.547 > fe80::201:2ff:fe03:405.546: [udp sum ok] dhcp6 advertise (xid=28b040 (IA_TA IAID:33752069 (IA_ADDR 2a00:1:1:200:5da2:f920:84c4:88cc pltime:4500 vltime:7200)) (client-ID hwaddr type 1 000102030405) (server-ID hwaddr/time type 1 time 407259120 001122334455)) -IP6 (class 0xc0, hlim 64, next-header UDP (17) payload length: 94) fe80::201:2ff:fe03:405.546 > ff02::1:2.547: [udp sum ok] dhcp6 request (xid=2b0e45 (client-ID hwaddr type 1 000102030405) (server-ID hwaddr/time type 1 time 407259120 001122334455) (option-request DNS-server DNS-search-list) (elapsed-time 0) (IA_TA IAID:33752069 (IA_ADDR 2a00:1:1:200:5da2:f920:84c4:88cc pltime:7200 vltime:7500))) -IP6 (hlim 64, next-header UDP (17) payload length: 80) fe80::211:22ff:fe33:4455.547 > fe80::201:2ff:fe03:405.546: [udp sum ok] dhcp6 reply (xid=2b0e45 (IA_TA IAID:33752069 (IA_ADDR 2a00:1:1:200:5da2:f920:84c4:88cc pltime:4500 vltime:7200)) (client-ID hwaddr type 1 000102030405) (server-ID hwaddr/time type 1 time 407259120 001122334455)) diff --git a/tests/dhcpv6-ia-ta.pcap b/tests/dhcpv6-ia-ta.pcap deleted file mode 100644 index b91f8b7..0000000 Binary files a/tests/dhcpv6-ia-ta.pcap and /dev/null differ diff --git a/tests/dhcpv6-ntp-server.out b/tests/dhcpv6-ntp-server.out deleted file mode 100644 index 23db5bd..0000000 --- a/tests/dhcpv6-ntp-server.out +++ /dev/null @@ -1 +0,0 @@ -IP6 (hlim 64, next-header UDP (17) payload length: 113) fe80::20c:29ff:fe9b:a15d.547 > fe80::20c:29ff:fe38:f368.546: [udp sum ok] dhcp6 reply (xid=f69b57 (client-ID hwaddr/time type 1 time 418384703 000c2938f368) (server-ID hwaddr/time type 1 time 418354459 000c299ba153) (NTP-server subopt:1 2a01::1 subopt:2 ff05::101 subopt:3 ntp.example.com.)) diff --git a/tests/dhcpv6-ntp-server.pcap b/tests/dhcpv6-ntp-server.pcap deleted file mode 100644 index 5657692..0000000 Binary files a/tests/dhcpv6-ntp-server.pcap and /dev/null differ diff --git a/tests/dhcpv6-sip-server-d.out b/tests/dhcpv6-sip-server-d.out deleted file mode 100644 index 4600e9f..0000000 --- a/tests/dhcpv6-sip-server-d.out +++ /dev/null @@ -1 +0,0 @@ -IP6 (hlim 64, next-header UDP (17) payload length: 114) fe80::20c:29ff:fe9b:a15d.547 > fe80::20c:29ff:fe38:f368.546: [udp sum ok] dhcp6 reply (xid=6890d8 (client-ID hwaddr/time type 1 time 418384703 000c2938f368) (server-ID hwaddr/time type 1 time 418354459 000c299ba153) (SIP-servers-domain sip1.my-domain.net. sip2.example.com. sip3.sub.my-domain.org.)) diff --git a/tests/dhcpv6-sip-server-d.pcap b/tests/dhcpv6-sip-server-d.pcap deleted file mode 100644 index 7cb2103..0000000 Binary files a/tests/dhcpv6-sip-server-d.pcap and /dev/null differ diff --git a/tests/dnssec-vv.out b/tests/dnssec-vv.out deleted file mode 100644 index a75135b..0000000 --- a/tests/dnssec-vv.out +++ /dev/null @@ -1,12 +0,0 @@ -IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto UDP (17), length 74) - 127.0.0.1.43144 > 127.0.0.1.53: [bad udp cksum 0xfe49 -> 0xb5ef!] 20972+ [1au] SSHFP? monadic.cynic.net. ar: . OPT UDPsize=4096 DO (46) -IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto UDP (17), length 3040) - 127.0.0.1.53 > 127.0.0.1.43144: [bad udp cksum 0x09e0 -> 0x4239!] 20972$ q: SSHFP? monadic.cynic.net. 3/6/13 monadic.cynic.net. SSHFP, monadic.cynic.net. RRSIG, monadic.cynic.net. RRSIG ns: cynic.net. NS ns1.cynic.net., cynic.net. NS ns4.cynic.net., cynic.net. NS ns2.cynic.net., cynic.net. NS ns3.cynic.net., cynic.net. RRSIG, cynic.net. RRSIG ar: ns1.cynic.net. A 125.100.126.205, ns2.cynic.net. A 199.175.137.213, ns3.cynic.net. A 203.141.153.22, ns4.cynic.net. A 122.103.238.186, ns1.cynic.net. RRSIG, ns1.cynic.net. RRSIG, ns2.cynic.net. RRSIG, ns2.cynic.net. RRSIG, ns3.cynic.net. RRSIG, ns3.cynic.net. RRSIG, ns4.cynic.net. RRSIG, ns4.cynic.net. RRSIG, . OPT UDPsize=4096 DO (3012) -IP (tos 0x0, ttl 64, id 22838, offset 0, flags [DF], proto UDP (17), length 74) - 127.0.0.1.32972 > 127.0.0.1.53: [bad udp cksum 0xfe49 -> 0x28d8!] 48576+ [1au] A? monadic.cynic.net. ar: . OPT UDPsize=1024 (46) -IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto UDP (17), length 226) - 127.0.0.1.53 > 127.0.0.1.32972: [bad udp cksum 0xfee1 -> 0x60dd!] 48576 q: A? monadic.cynic.net. 1/4/5 monadic.cynic.net. A 125.100.126.202 ns: cynic.net. NS ns4.cynic.net., cynic.net. NS ns2.cynic.net., cynic.net. NS ns3.cynic.net., cynic.net. NS ns1.cynic.net. ar: ns1.cynic.net. A 125.100.126.205, ns2.cynic.net. A 199.175.137.213, ns3.cynic.net. A 203.141.153.22, ns4.cynic.net. A 122.103.238.186, . OPT UDPsize=4096 (198) -IP (tos 0x0, ttl 64, id 22904, offset 0, flags [DF], proto UDP (17), length 74) - 127.0.0.1.36069 > 127.0.0.1.53: [bad udp cksum 0xfe49 -> 0xf266!] 49432+ [1au] SSHFP? monadic.cynic.net. ar: . OPT UDPsize=0 (46) -IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto UDP (17), length 244) - 127.0.0.1.53 > 127.0.0.1.36069: [bad udp cksum 0xfef3 -> 0x1227!] 49432 q: SSHFP? monadic.cynic.net. 1/4/5 monadic.cynic.net. SSHFP ns: cynic.net. NS ns4.cynic.net., cynic.net. NS ns1.cynic.net., cynic.net. NS ns3.cynic.net., cynic.net. NS ns2.cynic.net. ar: ns1.cynic.net. A 125.100.126.205, ns2.cynic.net. A 199.175.137.213, ns3.cynic.net. A 203.141.153.22, ns4.cynic.net. A 122.103.238.186, . OPT UDPsize=4096 (216) diff --git a/tests/dnssec.pcap b/tests/dnssec.pcap deleted file mode 100644 index b191480..0000000 Binary files a/tests/dnssec.pcap and /dev/null differ diff --git a/tests/dtp-v.out b/tests/dtp-v.out deleted file mode 100644 index 4eb566b..0000000 --- a/tests/dtp-v.out +++ /dev/null @@ -1,55 +0,0 @@ -DTPv1, length 38 - Domain TLV (0x0001) TLV, length 8, Lab - Status TLV (0x0002) TLV, length 5, 0x4 - DTP type TLV (0x0003) TLV, length 5, 0x40 - Neighbor TLV (0x0004) TLV, length 10, 00:19:06:ea:b8:85 -00:19:06:ea:b8:85 > 01:00:0c:00:00:00 SNAP, oui Cisco (0x00000c), pid Unknown (0x0003), length 68: - 0x0000: aaaa 0300 000c 0003 0000 0000 0100 0ccc ................ - 0x0010: cccc 0019 06ea b885 0025 aaaa 0300 000c .........%...... - 0x0020: 2004 0100 0100 084c 6162 0000 0200 0504 .......Lab...... - 0x0030: 0003 0005 4000 0400 0a00 1906 eab8 8500 ....@........... - 0x0040: 0000 0000 0000 0000 f7a7 fe42 ...........B -DTPv1, length 38 - Domain TLV (0x0001) TLV, length 8, Lab - Status TLV (0x0002) TLV, length 5, 0x4 - DTP type TLV (0x0003) TLV, length 5, 0x40 - Neighbor TLV (0x0004) TLV, length 10, 00:19:06:ea:b8:85 -00:19:06:ea:b8:85 > 01:00:0c:00:00:00 SNAP, oui Cisco (0x00000c), pid Unknown (0x0003), length 68: - 0x0000: aaaa 0300 000c 0003 0000 0000 0100 0ccc ................ - 0x0010: cccc 0019 06ea b885 0025 aaaa 0300 000c .........%...... - 0x0020: 2004 0100 0100 084c 6162 0000 0200 0504 .......Lab...... - 0x0030: 0003 0005 4000 0400 0a00 1906 eab8 8500 ....@........... - 0x0040: 0000 0000 0000 0000 f7a7 fe42 ...........B -DTPv1, length 38 - Domain TLV (0x0001) TLV, length 8, Lab - Status TLV (0x0002) TLV, length 5, 0x4 - DTP type TLV (0x0003) TLV, length 5, 0x40 - Neighbor TLV (0x0004) TLV, length 10, 00:19:06:ea:b8:85 -00:19:06:ea:b8:85 > 01:00:0c:00:00:00 SNAP, oui Cisco (0x00000c), pid Unknown (0x0003), length 68: - 0x0000: aaaa 0300 000c 0003 0000 0000 0100 0ccc ................ - 0x0010: cccc 0019 06ea b885 0025 aaaa 0300 000c .........%...... - 0x0020: 2004 0100 0100 084c 6162 0000 0200 0504 .......Lab...... - 0x0030: 0003 0005 4000 0400 0a00 1906 eab8 8500 ....@........... - 0x0040: 0000 0000 0000 0000 f7a7 fe42 ...........B -DTPv1, length 38 - Domain TLV (0x0001) TLV, length 8, Lab - Status TLV (0x0002) TLV, length 5, 0x4 - DTP type TLV (0x0003) TLV, length 5, 0x40 - Neighbor TLV (0x0004) TLV, length 10, 00:19:06:ea:b8:85 -00:19:06:ea:b8:85 > 01:00:0c:00:00:00 SNAP, oui Cisco (0x00000c), pid Unknown (0x0003), length 68: - 0x0000: aaaa 0300 000c 0003 0000 0000 0100 0ccc ................ - 0x0010: cccc 0019 06ea b885 0025 aaaa 0300 000c .........%...... - 0x0020: 2004 0100 0100 084c 6162 0000 0200 0504 .......Lab...... - 0x0030: 0003 0005 4000 0400 0a00 1906 eab8 8514 ....@........... - 0x0040: 0002 000f 0000 0000 7232 1da6 ........r2.. -DTPv1, length 38 - Domain TLV (0x0001) TLV, length 8, Lab - Status TLV (0x0002) TLV, length 5, 0x4 - DTP type TLV (0x0003) TLV, length 5, 0x40 - Neighbor TLV (0x0004) TLV, length 10, 00:19:06:ea:b8:85 -00:19:06:ea:b8:85 > 01:00:0c:00:00:00 SNAP, oui Cisco (0x00000c), pid Unknown (0x0003), length 68: - 0x0000: aaaa 0300 000c 0003 0000 0000 0100 0ccc ................ - 0x0010: cccc 0019 06ea b885 0025 aaaa 0300 000c .........%...... - 0x0020: 2004 0100 0100 084c 6162 0000 0200 0504 .......Lab...... - 0x0030: 0003 0005 4000 0400 0a00 1906 eab8 8514 ....@........... - 0x0040: 0002 000f 0000 0000 7232 1da6 ........r2.. diff --git a/tests/dvmrp.out b/tests/dvmrp.out deleted file mode 100644 index d612f7d..0000000 --- a/tests/dvmrp.out +++ /dev/null @@ -1,2 +0,0 @@ -IP 10.0.0.1 > 2.2.2.2: igmp dvmrp Ask-neighbors2 -IP 2.2.2.2 > 10.0.0.1: igmp dvmrp Neighbors2 (v 12.4): [10.0.0.2 -> 10.0.0.1 (1/0/querier)] [10.0.0.9 -> 10.0.0.10 (1/0)] diff --git a/tests/e1000g.out b/tests/e1000g.out deleted file mode 100644 index 0cc3b9e..0000000 --- a/tests/e1000g.out +++ /dev/null @@ -1,20 +0,0 @@ -IP 129.146.106.55 > 10.5.233.117: ICMP echo request, id 6901, seq 0, length 64 -IP 10.5.233.117 > 129.146.106.55: ICMP echo reply, id 6901, seq 0, length 64 -IP 129.146.106.55 > 10.5.233.117: ICMP echo request, id 6901, seq 1, length 64 -IP 10.5.233.117 > 129.146.106.55: ICMP echo reply, id 6901, seq 1, length 64 -IP 129.146.106.55 > 10.5.233.117: ICMP echo request, id 6901, seq 2, length 64 -IP 10.5.233.117 > 129.146.106.55: ICMP echo reply, id 6901, seq 2, length 64 -IP 129.146.106.55 > 10.5.233.117: ICMP echo request, id 6901, seq 3, length 64 -IP 10.5.233.117 > 129.146.106.55: ICMP echo reply, id 6901, seq 3, length 64 -IP 129.146.106.55 > 10.5.233.117: ICMP echo request, id 6901, seq 4, length 64 -IP 10.5.233.117 > 129.146.106.55: ICMP echo reply, id 6901, seq 4, length 64 -IP 129.146.106.55 > 10.5.233.117: ICMP echo request, id 6901, seq 5, length 64 -IP 10.5.233.117 > 129.146.106.55: ICMP echo reply, id 6901, seq 5, length 64 -IP 129.146.106.55 > 10.5.233.117: ICMP echo request, id 6901, seq 6, length 64 -IP 10.5.233.117 > 129.146.106.55: ICMP echo reply, id 6901, seq 6, length 64 -IP 129.146.106.55 > 10.5.233.117: ICMP echo request, id 6901, seq 7, length 64 -IP 10.5.233.117 > 129.146.106.55: ICMP echo reply, id 6901, seq 7, length 64 -IP 129.146.106.55 > 10.5.233.117: ICMP echo request, id 6901, seq 8, length 64 -IP 10.5.233.117 > 129.146.106.55: ICMP echo reply, id 6901, seq 8, length 64 -IP 129.146.106.55 > 10.5.233.117: ICMP echo request, id 6901, seq 9, length 64 -IP 10.5.233.117 > 129.146.106.55: ICMP echo reply, id 6901, seq 9, length 64 diff --git a/tests/e1000g.pcap b/tests/e1000g.pcap deleted file mode 100644 index 11b0174..0000000 Binary files a/tests/e1000g.pcap and /dev/null differ diff --git a/tests/eapon1.gdbinit b/tests/eapon1.gdbinit deleted file mode 100644 index 37ad0bc..0000000 --- a/tests/eapon1.gdbinit +++ /dev/null @@ -1 +0,0 @@ -set args -r eapon1.pcap diff --git a/tests/eapon1.out b/tests/eapon1.out deleted file mode 100644 index 69f7537..0000000 --- a/tests/eapon1.out +++ /dev/null @@ -1,114 +0,0 @@ -IP 192.168.1.249.138 > 192.168.1.255.138: NBT UDP PACKET(138) -IP 192.168.1.249.138 > 192.168.1.255.138: NBT UDP PACKET(138) -IP 192.168.1.249.138 > 192.168.1.255.138: NBT UDP PACKET(138) -IP 192.168.1.249.137 > 192.168.1.255.137: NBT UDP PACKET(137): QUERY; REQUEST; BROADCAST -IP 192.168.1.249.137 > 192.168.1.255.137: NBT UDP PACKET(137): QUERY; REQUEST; BROADCAST -IP 192.168.1.249.137 > 192.168.1.255.137: NBT UDP PACKET(137): QUERY; REQUEST; BROADCAST -IP 192.168.1.249.138 > 192.168.1.255.138: NBT UDP PACKET(138) -IP 192.168.1.249.137 > 192.168.1.255.137: NBT UDP PACKET(137): QUERY; REQUEST; BROADCAST -IP 192.168.1.249.137 > 192.168.1.255.137: NBT UDP PACKET(137): QUERY; REQUEST; BROADCAST -IP 192.168.1.249.137 > 192.168.1.255.137: NBT UDP PACKET(137): QUERY; REQUEST; BROADCAST -ARP, Request who-has 192.168.1.1 tell 192.168.1.249, length 28 -ARP, Reply 192.168.1.1 is-at 00:0d:88:4f:25:91, length 46 -IP 192.168.1.249.68 > 192.168.1.1.67: BOOTP/DHCP, Request from 00:04:23:57:a5:7a, length 300 -EAP packet (0) v1, len 5 -IP 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:04:23:57:a5:7a, length 300 -IP 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:04:23:57:a5:7a, length 300 -EAPOL start (1) v1, len 0 -EAP packet (0) v1, len 5 -EAP packet (0) v1, len 45 -EAP packet (0) v1, len 20 -EAP packet (0) v1, len 76 -EAP packet (0) v1, len 80 -EAP packet (0) v1, len 28 -EAP packet (0) v1, len 4 -EAPOL key (3) v1, len 57 -EAPOL key (3) v1, len 44 -IP 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:04:23:57:a5:7a, length 300 -IP 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:04:23:57:a5:7a, length 300 -IP 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:04:23:57:a5:7a, length 300 -EAPOL start (1) v1, len 0 -EAP packet (0) v1, len 5 -EAP packet (0) v1, len 45 -EAP packet (0) v1, len 20 -EAP packet (0) v1, len 76 -EAP packet (0) v1, len 80 -EAP packet (0) v1, len 28 -EAP packet (0) v1, len 4 -EAPOL key (3) v1, len 57 -EAPOL key (3) v1, len 44 -ARP, Request who-has 169.254.67.194 tell 169.254.67.194, length 28 -ARP, Request who-has 169.254.67.194 tell 169.254.67.194, length 28 -ARP, Request who-has 169.254.67.194 tell 169.254.67.194, length 28 -IP 169.254.67.194.4299 > 239.255.255.250.1900: UDP, length 133 -IP 169.254.67.194 > 224.0.0.22: igmp v3 report, 1 group record(s) -IP 169.254.67.194.137 > 169.254.255.255.137: NBT UDP PACKET(137): REGISTRATION; REQUEST; BROADCAST -IP 169.254.67.194 > 224.0.0.22: igmp v3 report, 1 group record(s) -IP 169.254.67.194.137 > 169.254.255.255.137: NBT UDP PACKET(137): REGISTRATION; REQUEST; BROADCAST -IP 169.254.67.194.137 > 169.254.255.255.137: NBT UDP PACKET(137): REGISTRATION; REQUEST; BROADCAST -IP 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:04:23:57:a5:7a, length 300 -IP 169.254.67.194.137 > 169.254.255.255.137: NBT UDP PACKET(137): REGISTRATION; REQUEST; BROADCAST -IP 169.254.67.194.4299 > 239.255.255.250.1900: UDP, length 133 -IP 169.254.67.194.137 > 169.254.255.255.137: NBT UDP PACKET(137): REGISTRATION; REQUEST; BROADCAST -EAPOL start (1) v1, len 0 -EAP packet (0) v1, len 5 -EAP packet (0) v1, len 45 -EAP packet (0) v1, len 20 -IP 169.254.67.194.137 > 169.254.255.255.137: NBT UDP PACKET(137): REGISTRATION; REQUEST; BROADCAST -IP 169.254.67.194.137 > 169.254.255.255.137: NBT UDP PACKET(137): REGISTRATION; REQUEST; BROADCAST -EAP packet (0) v1, len 76 -EAP packet (0) v1, len 80 -IP 169.254.67.194.137 > 169.254.255.255.137: NBT UDP PACKET(137): REGISTRATION; REQUEST; BROADCAST -EAP packet (0) v1, len 28 -EAP packet (0) v1, len 4 -EAPOL key (3) v1, len 57 -EAPOL key (3) v1, len 44 -IP 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:04:23:57:a5:7a, length 300 -IP 169.254.67.194.4299 > 239.255.255.250.1900: UDP, length 133 -IP 169.254.67.194.137 > 169.254.255.255.137: NBT UDP PACKET(137): REGISTRATION; REQUEST; BROADCAST -IP 169.254.67.194.137 > 169.254.255.255.137: NBT UDP PACKET(137): REGISTRATION; REQUEST; BROADCAST -IP 169.254.67.194.137 > 169.254.255.255.137: NBT UDP PACKET(137): REGISTRATION; REQUEST; BROADCAST -IP 169.254.67.194.137 > 169.254.255.255.137: NBT UDP PACKET(137): REGISTRATION; REQUEST; BROADCAST -IP 169.254.67.194.137 > 169.254.255.255.137: NBT UDP PACKET(137): REGISTRATION; REQUEST; BROADCAST -IP 169.254.67.194.137 > 169.254.255.255.137: NBT UDP PACKET(137): REGISTRATION; REQUEST; BROADCAST -IP 169.254.67.194.137 > 169.254.255.255.137: NBT UDP PACKET(137): REGISTRATION; REQUEST; BROADCAST -IP 169.254.67.194.137 > 169.254.255.255.137: NBT UDP PACKET(137): REGISTRATION; REQUEST; BROADCAST -IP 169.254.67.194.138 > 169.254.255.255.138: NBT UDP PACKET(138) -IP 169.254.67.194.138 > 169.254.255.255.138: NBT UDP PACKET(138) -IP 169.254.67.194.138 > 169.254.255.255.138: NBT UDP PACKET(138) -IP 169.254.67.194.138 > 169.254.255.255.138: NBT UDP PACKET(138) -IP 169.254.67.194.138 > 169.254.255.255.138: NBT UDP PACKET(138) -IP 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:04:23:57:a5:7a, length 300 -IP 169.254.67.194.138 > 169.254.255.255.138: NBT UDP PACKET(138) -IP 169.254.67.194.138 > 169.254.255.255.138: NBT UDP PACKET(138) -IP 169.254.67.194.138 > 169.254.255.255.138: NBT UDP PACKET(138) -IP 169.254.67.194.138 > 169.254.255.255.138: NBT UDP PACKET(138) -IP 169.254.67.194.137 > 169.254.255.255.137: NBT UDP PACKET(137): REGISTRATION; REQUEST; BROADCAST -IP 169.254.67.194.137 > 169.254.255.255.137: NBT UDP PACKET(137): REGISTRATION; REQUEST; BROADCAST -IP 169.254.67.194.137 > 169.254.255.255.137: NBT UDP PACKET(137): REGISTRATION; REQUEST; BROADCAST -IP 169.254.67.194.137 > 169.254.255.255.137: NBT UDP PACKET(137): REGISTRATION; REQUEST; BROADCAST -IP 169.254.67.194.137 > 169.254.255.255.137: NBT UDP PACKET(137): REGISTRATION; REQUEST; BROADCAST -IP 169.254.67.194.137 > 169.254.255.255.137: NBT UDP PACKET(137): REGISTRATION; REQUEST; BROADCAST -IP 169.254.67.194.137 > 169.254.255.255.137: NBT UDP PACKET(137): REGISTRATION; REQUEST; BROADCAST -IP 169.254.67.194.137 > 169.254.255.255.137: NBT UDP PACKET(137): REGISTRATION; REQUEST; BROADCAST -IP 169.254.67.194.138 > 169.254.255.255.138: NBT UDP PACKET(138) -IP 169.254.67.194.138 > 169.254.255.255.138: NBT UDP PACKET(138) -IP 169.254.67.194.138 > 169.254.255.255.138: NBT UDP PACKET(138) -IP 169.254.67.194.137 > 169.254.255.255.137: NBT UDP PACKET(137): QUERY; REQUEST; BROADCAST -IP 169.254.67.194.137 > 169.254.255.255.137: NBT UDP PACKET(137): QUERY; REQUEST; BROADCAST -IP 169.254.67.194.137 > 169.254.255.255.137: NBT UDP PACKET(137): QUERY; REQUEST; BROADCAST -IP 169.254.67.194.137 > 169.254.255.255.137: NBT UDP PACKET(137): QUERY; REQUEST; BROADCAST -IP 169.254.67.194.137 > 169.254.255.255.137: NBT UDP PACKET(137): QUERY; REQUEST; BROADCAST -IP 169.254.67.194.137 > 169.254.255.255.137: NBT UDP PACKET(137): QUERY; REQUEST; BROADCAST -IP 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:04:23:57:a5:7a, length 300 -EAPOL start (1) v1, len 0 -EAP packet (0) v1, len 5 -EAP packet (0) v1, len 45 -EAP packet (0) v1, len 20 -IP 169.254.67.194.138 > 169.254.255.255.138: NBT UDP PACKET(138) -EAP packet (0) v1, len 76 -EAP packet (0) v1, len 80 -EAP packet (0) v1, len 28 -EAP packet (0) v1, len 4 -EAPOL key (3) v1, len 57 -EAPOL key (3) v1, len 44 diff --git a/tests/eapon1.pcap b/tests/eapon1.pcap deleted file mode 100644 index 4a87ed1..0000000 Binary files a/tests/eapon1.pcap and /dev/null differ diff --git a/tests/eigrp1-v.out b/tests/eigrp1-v.out deleted file mode 100644 index e2e75b2..0000000 --- a/tests/eigrp1-v.out +++ /dev/null @@ -1,444 +0,0 @@ -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.1 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.1 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.1 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.1 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.1 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.1 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.1 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.1 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.2 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.1 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.2 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 40) - 10.0.0.1 > 10.0.0.2: - EIGRP v2, opcode: Update (1), chksum: 0xfd82, Flags: [Init] - seq: 0x00000017, ack: 0x00000000, AS: 100, length: 0 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 40) - 10.0.0.1 > 10.0.0.2: - EIGRP v2, opcode: Update (1), chksum: 0xfd82, Flags: [Init] - seq: 0x00000017, ack: 0x00000000, AS: 100, length: 0 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 40) - 10.0.0.2 > 10.0.0.1: - EIGRP v2, opcode: Update (1), chksum: 0xfd6b, Flags: [Init] - seq: 0x00000017, ack: 0x00000017, AS: 100, length: 0 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 239) - 10.0.0.1 > 10.0.0.2: - EIGRP v2, opcode: Update (1), chksum: 0x24b9, Flags: [none] - seq: 0x00000018, ack: 0x00000017, AS: 100, length: 199 - IP Internal routes TLV (0x0102), length: 28 - IPv4 prefix: 192.168.1.0/24, nexthop: self - delay 25 ms, bandwidth 25600 Kbps, mtu 1500, hop 0, reliability 255, load 1 - IP Internal routes TLV (0x0102), length: 29 - IPv4 prefix: 10.0.0.4/30, nexthop: self - delay 256 ms, bandwidth 256000 Kbps, mtu 1500, hop 0, reliability 255, load 1 - IP Internal routes TLV (0x0102), length: 28 - IPv4 prefix: 192.168.3.0/24, nexthop: self - delay 281 ms, bandwidth 256000 Kbps, mtu 1500, hop 1, reliability 255, load 1 - IP Internal routes TLV (0x0102), length: 29 - IPv4 prefix: 10.0.0.12/30, nexthop: self - delay 512 ms, bandwidth 256000 Kbps, mtu 1500, hop 1, reliability 255, load 1 - IP Internal routes TLV (0x0102), length: 28 - IPv4 prefix: 192.168.4.0/24, nexthop: self - delay 537 ms, bandwidth 256000 Kbps, mtu 1500, hop 2, reliability 255, load 1 - IP Internal routes TLV (0x0102), length: 29 - IPv4 prefix: 10.0.0.8/30, nexthop: self - delay 768 ms, bandwidth 256000 Kbps, mtu 1500, hop 2, reliability 255, load 1 - IP Internal routes TLV (0x0102), length: 28 - IPv4 prefix: 192.168.2.0/24, nexthop: self - delay 793 ms, bandwidth 256000 Kbps, mtu 1500, hop 3, reliability 255, load 1 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 154) - 10.0.0.2 > 10.0.0.1: - EIGRP v2, opcode: Update (1), chksum: 0x7d9b, Flags: [none] - seq: 0x00000018, ack: 0x00000018, AS: 100, length: 114 - IP Internal routes TLV (0x0102), length: 28 - IPv4 prefix: 192.168.2.0/24, nexthop: self - delay 25 ms, bandwidth 25600 Kbps, mtu 1500, hop 0, reliability 255, load 1 - IP Internal routes TLV (0x0102), length: 29 - IPv4 prefix: 10.0.0.8/30, nexthop: self - delay 256 ms, bandwidth 256000 Kbps, mtu 1500, hop 0, reliability 255, load 1 - IP Internal routes TLV (0x0102), length: 28 - IPv4 prefix: 192.168.4.0/24, nexthop: self - delay 281 ms, bandwidth 256000 Kbps, mtu 1500, hop 1, reliability 255, load 1 - IP Internal routes TLV (0x0102), length: 29 - IPv4 prefix: 10.0.0.12/30, nexthop: self - delay 512 ms, bandwidth 256000 Kbps, mtu 1500, hop 1, reliability 255, load 1 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 40) - 10.0.0.1 > 10.0.0.2: - EIGRP v2, opcode: Hello (5), chksum: 0xfd7e, Flags: [none] - seq: 0x00000000, ack: 0x00000018, AS: 100, length: 0 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 77) - 10.0.0.2 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xc352, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 37 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 - Sequence TLV (0x0003), length: 9 - 0x0000: 040a 0000 01 - Next Multicast Sequence TLV (0x0005), length: 8 - 0x0000: 0000 0019 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 125) - 10.0.0.2 > 224.0.0.10: - EIGRP v2, opcode: Update (1), chksum: 0xa2d8, Flags: [Conditionally Received] - seq: 0x00000019, ack: 0x00000000, AS: 100, length: 85 - IP Internal routes TLV (0x0102), length: 28 - IPv4 prefix: 192.168.1.0/24, nexthop: self - delay 42949672 ms, bandwidth 256000 Kbps, mtu 1500, hop 1, reliability 255, load 1 - IP Internal routes TLV (0x0102), length: 29 - IPv4 prefix: 10.0.0.4/30, nexthop: self - delay 42949672 ms, bandwidth 256000 Kbps, mtu 1500, hop 1, reliability 255, load 1 - IP Internal routes TLV (0x0102), length: 28 - IPv4 prefix: 192.168.3.0/24, nexthop: self - delay 42949672 ms, bandwidth 256000 Kbps, mtu 1500, hop 2, reliability 255, load 1 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 125) - 10.0.0.2 > 10.0.0.1: - EIGRP v2, opcode: Update (1), chksum: 0xa2c2, Flags: [none] - seq: 0x00000019, ack: 0x00000018, AS: 100, length: 85 - IP Internal routes TLV (0x0102), length: 28 - IPv4 prefix: 192.168.1.0/24, nexthop: self - delay 42949672 ms, bandwidth 256000 Kbps, mtu 1500, hop 1, reliability 255, load 1 - IP Internal routes TLV (0x0102), length: 29 - IPv4 prefix: 10.0.0.4/30, nexthop: self - delay 42949672 ms, bandwidth 256000 Kbps, mtu 1500, hop 1, reliability 255, load 1 - IP Internal routes TLV (0x0102), length: 28 - IPv4 prefix: 192.168.3.0/24, nexthop: self - delay 42949672 ms, bandwidth 256000 Kbps, mtu 1500, hop 2, reliability 255, load 1 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 40) - 10.0.0.1 > 10.0.0.2: - EIGRP v2, opcode: Hello (5), chksum: 0xfd7d, Flags: [none] - seq: 0x00000000, ack: 0x00000019, AS: 100, length: 0 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 125) - 10.0.0.1 > 224.0.0.10: - EIGRP v2, opcode: Update (1), chksum: 0x9dd9, Flags: [none] - seq: 0x00000019, ack: 0x00000000, AS: 100, length: 85 - IP Internal routes TLV (0x0102), length: 28 - IPv4 prefix: 192.168.2.0/24, nexthop: self - delay 42949672 ms, bandwidth 256000 Kbps, mtu 1500, hop 1, reliability 255, load 1 - IP Internal routes TLV (0x0102), length: 29 - IPv4 prefix: 10.0.0.8/30, nexthop: self - delay 42949672 ms, bandwidth 256000 Kbps, mtu 1500, hop 1, reliability 255, load 1 - IP Internal routes TLV (0x0102), length: 28 - IPv4 prefix: 192.168.4.0/24, nexthop: self - delay 42949672 ms, bandwidth 256000 Kbps, mtu 1500, hop 2, reliability 255, load 1 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 40) - 10.0.0.2 > 10.0.0.1: - EIGRP v2, opcode: Hello (5), chksum: 0xfd7d, Flags: [none] - seq: 0x00000000, ack: 0x00000019, AS: 100, length: 0 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.2 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.1 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.2 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.1 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.1 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.2 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.2 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.1 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.2 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.1 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.2 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.1 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.2 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.1 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.2 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.1 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.2 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.1 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.2 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.1 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.2 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.1 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.2 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.1 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.2 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.1 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.2 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.1 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.2 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.1 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 diff --git a/tests/eigrp2-v.out b/tests/eigrp2-v.out deleted file mode 100644 index 112a1a4..0000000 --- a/tests/eigrp2-v.out +++ /dev/null @@ -1,120 +0,0 @@ -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.2 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.1 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.2 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.1 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.2 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.1 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.2 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.1 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.2 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xf167, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 255, k2 255, k3 255, k4 255, k5 255 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.1 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.1 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.1 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.1 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.1 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.1 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 diff --git a/tests/eigrp3-v.out b/tests/eigrp3-v.out deleted file mode 100644 index 4e344cb..0000000 --- a/tests/eigrp3-v.out +++ /dev/null @@ -1,143 +0,0 @@ -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.1 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.2 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.1 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.2 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.1 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.2 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.1 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 68) - 10.0.0.1 > 224.0.0.10: - EIGRP v2, opcode: Update (1), chksum: 0x7876, Flags: [none] - seq: 0x00000034, ack: 0x00000000, AS: 100, length: 28 - IP Internal routes TLV (0x0102), length: 28 - IPv4 prefix: 192.168.4.0/24, nexthop: self - delay 42949672 ms, bandwidth 256000 Kbps, mtu 1500, hop 2, reliability 255, load 1 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 40) - 10.0.0.2 > 10.0.0.1: - EIGRP v2, opcode: Hello (5), chksum: 0xfd62, Flags: [none] - seq: 0x00000000, ack: 0x00000034, AS: 100, length: 0 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 68) - 10.0.0.2 > 224.0.0.10: - EIGRP v2, opcode: Query (3), chksum: 0x5f7e, Flags: [none] - seq: 0x0000002e, ack: 0x00000000, AS: 100, length: 28 - IP Internal routes TLV (0x0102), length: 28 - IPv4 prefix: 192.168.4.0/24, nexthop: self - delay 42949672 ms, bandwidth 0 Kbps, mtu 1500, hop 0, reliability 0, load 0 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 40) - 10.0.0.1 > 10.0.0.2: - EIGRP v2, opcode: Hello (5), chksum: 0xfd68, Flags: [none] - seq: 0x00000000, ack: 0x0000002e, AS: 100, length: 0 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 68) - 10.0.0.1 > 224.0.0.10: - EIGRP v2, opcode: Query (3), chksum: 0x5f75, Flags: [none] - seq: 0x00000037, ack: 0x00000000, AS: 100, length: 28 - IP Internal routes TLV (0x0102), length: 28 - IPv4 prefix: 192.168.4.0/24, nexthop: self - delay 42949672 ms, bandwidth 0 Kbps, mtu 1500, hop 0, reliability 0, load 0 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 40) - 10.0.0.2 > 10.0.0.1: - EIGRP v2, opcode: Hello (5), chksum: 0xfd5f, Flags: [none] - seq: 0x00000000, ack: 0x00000037, AS: 100, length: 0 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 68) - 10.0.0.2 > 10.0.0.1: - EIGRP v2, opcode: Reply (4), chksum: 0x5f44, Flags: [none] - seq: 0x00000030, ack: 0x00000037, AS: 100, length: 28 - IP Internal routes TLV (0x0102), length: 28 - IPv4 prefix: 192.168.4.0/24, nexthop: self - delay 42949672 ms, bandwidth 0 Kbps, mtu 1500, hop 0, reliability 0, load 0 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 40) - 10.0.0.1 > 10.0.0.2: - EIGRP v2, opcode: Hello (5), chksum: 0xfd66, Flags: [none] - seq: 0x00000000, ack: 0x00000030, AS: 100, length: 0 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 68) - 10.0.0.1 > 10.0.0.2: - EIGRP v2, opcode: Reply (4), chksum: 0x5f46, Flags: [none] - seq: 0x00000039, ack: 0x00000030, AS: 100, length: 28 - IP Internal routes TLV (0x0102), length: 28 - IPv4 prefix: 192.168.4.0/24, nexthop: self - delay 42949672 ms, bandwidth 0 Kbps, mtu 1500, hop 0, reliability 0, load 0 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 40) - 10.0.0.2 > 10.0.0.1: - EIGRP v2, opcode: Hello (5), chksum: 0xfd5d, Flags: [none] - seq: 0x00000000, ack: 0x00000039, AS: 100, length: 0 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.2 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.1 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.2 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.1 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 diff --git a/tests/eigrp4-v.out b/tests/eigrp4-v.out deleted file mode 100644 index f5cb165..0000000 --- a/tests/eigrp4-v.out +++ /dev/null @@ -1,105 +0,0 @@ -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.2 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.1 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.2 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 68) - 10.0.0.2 > 224.0.0.10: - EIGRP v2, opcode: Update (1), chksum: 0x0a7e, Flags: [none] - seq: 0x0000002d, ack: 0x00000000, AS: 100, length: 28 - IP Internal routes TLV (0x0102), length: 28 - IPv4 prefix: 192.168.4.0/24, nexthop: self - delay 281 ms, bandwidth 256000 Kbps, mtu 1500, hop 1, reliability 255, load 1 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 68) - 10.0.0.1 > 224.0.0.10: - EIGRP v2, opcode: Update (1), chksum: 0xa67a, Flags: [none] - seq: 0x0000002f, ack: 0x00000000, AS: 100, length: 28 - IP Internal routes TLV (0x0102), length: 28 - IPv4 prefix: 192.168.4.0/24, nexthop: self - delay 537 ms, bandwidth 256000 Kbps, mtu 1500, hop 2, reliability 255, load 1 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 40) - 10.0.0.1 > 10.0.0.2: - EIGRP v2, opcode: Hello (5), chksum: 0xfd69, Flags: [none] - seq: 0x00000000, ack: 0x0000002d, AS: 100, length: 0 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 40) - 10.0.0.2 > 10.0.0.1: - EIGRP v2, opcode: Hello (5), chksum: 0xfd67, Flags: [none] - seq: 0x00000000, ack: 0x0000002f, AS: 100, length: 0 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.1 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 68) - 10.0.0.1 > 224.0.0.10: - EIGRP v2, opcode: Update (1), chksum: 0x7878, Flags: [none] - seq: 0x00000032, ack: 0x00000000, AS: 100, length: 28 - IP Internal routes TLV (0x0102), length: 28 - IPv4 prefix: 192.168.4.0/24, nexthop: self - delay 42949672 ms, bandwidth 256000 Kbps, mtu 1500, hop 2, reliability 255, load 1 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 40) - 10.0.0.2 > 10.0.0.1: - EIGRP v2, opcode: Hello (5), chksum: 0xfd64, Flags: [none] - seq: 0x00000000, ack: 0x00000032, AS: 100, length: 0 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.2 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.1 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.2 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.1 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 -IP (tos 0xc0, ttl 2, id 0, offset 0, flags [none], proto EIGRP (88), length 60) - 10.0.0.2 > 224.0.0.10: - EIGRP v2, opcode: Hello (5), chksum: 0xee68, Flags: [none] - seq: 0x00000000, ack: 0x00000000, AS: 100, length: 20 - General Parameters TLV (0x0001), length: 12 - holdtime: 15s, k1 1, k2 0, k3 1, k4 0, k5 0 - Software Version TLV (0x0004), length: 8 - IOS version: 12.4, EIGRP version 1.2 diff --git a/tests/epgm_zmtp1.pcap b/tests/epgm_zmtp1.pcap deleted file mode 100644 index 1883579..0000000 Binary files a/tests/epgm_zmtp1.pcap and /dev/null differ diff --git a/tests/epgm_zmtp1v.out b/tests/epgm_zmtp1v.out deleted file mode 100644 index 171ecac..0000000 --- a/tests/epgm_zmtp1v.out +++ /dev/null @@ -1,79 +0,0 @@ -IP (tos 0xb8, ttl 16, id 0, offset 0, flags [DF], proto UDP (17), length 64) - 10.0.0.45.33280 > 239.255.0.16.5563: 39236 > 5563: PGM, length 0 0x47e3fdad9a9c SPM seq 471 trail 0 lead 281 nla 10.0.0.45 [36] -IP (tos 0xb8, ttl 16, id 0, offset 0, flags [DF], proto UDP (17), length 64) - 10.0.0.45.33280 > 239.255.0.16.5563: 39236 > 5563: PGM, length 0 0x47e3fdad9a9c SPM seq 472 trail 0 lead 281 nla 10.0.0.45 [36] -IP (tos 0xb8, ttl 16, id 0, offset 0, flags [DF], proto UDP (17), length 64) - 10.0.0.45.33280 > 239.255.0.16.5563: 39236 > 5563: PGM, length 0 0x47e3fdad9a9c SPM seq 473 trail 0 lead 281 nla 10.0.0.45 [36] -IP (tos 0xb8, ttl 16, id 0, offset 0, flags [DF], proto UDP (17), length 64) - 10.0.0.45.33280 > 239.255.0.16.5563: 39236 > 5563: PGM, length 0 0x47e3fdad9a9c SPM seq 474 trail 0 lead 281 nla 10.0.0.45 [36] -IP (tos 0xb8, ttl 16, id 0, offset 0, flags [DF], proto UDP (17), length 64) - 10.0.0.45.33280 > 239.255.0.16.5563: 39236 > 5563: PGM, length 0 0x47e3fdad9a9c SPM seq 475 trail 0 lead 281 nla 10.0.0.45 [36] -IP (tos 0xb8, ttl 16, id 0, offset 0, flags [DF], proto UDP (17), length 1480) - 10.0.0.45.40251 > 239.255.0.16.5563: 39236 > 5563: PGM, length 1428 0x47e3fdad9a9c ODATA trail 0 seq 282 [1452] - frame offset 0x0000 - frame flags+body (8-bit) length 116, flags 0x00 (-|-|-|-|-|-|-|-), first 115 byte(s) of body: - 0x0000: 5468 6973 2069 7320 6120 7368 6f72 7420 This.is.a.short. - 0x0010: 4153 4349 4920 6d65 7373 6167 6520 666f ASCII.message.fo - 0x0020: 6c6c 6f77 6564 2062 7920 6120 7368 6f72 llowed.by.a.shor - 0x0030: 7420 6269 6e61 7279 206d 6573 7361 6765 t.binary.message - 0x0040: 2c20 6120 6c6f 6e67 6572 2041 5343 4949 ,.a.longer.ASCII - 0x0050: 206d 6573 7361 6765 2061 6e64 2061 2073 .message.and.a.s - 0x0060: 686f 7274 2041 5343 4949 206d 6573 7361 hort.ASCII.messa - 0x0070: 6765 2e ge. - - frame flags+body (8-bit) length 17, flags 0x00 (-|-|-|-|-|-|-|-), first 16 byte(s) of body: - 0x0000: 0001 0203 0405 0607 0809 0a0b 0c0d 0e0f ................ - - frame flags+body (64-bit) length 2790 (1282 captured), flags 0x00 (-|-|-|-|-|-|-|-), first 128 byte(s) of body: - 0x0000: 5468 6520 7175 6963 6b20 6272 6f77 6e20 The.quick.brown. - 0x0010: 666f 7820 6a75 6d70 7320 6f76 6572 2074 fox.jumps.over.t - 0x0020: 6865 206c 617a 7920 646f 672e 2054 6865 he.lazy.dog..The - 0x0030: 2071 7569 636b 2062 726f 776e 2066 6f78 .quick.brown.fox - 0x0040: 206a 756d 7073 206f 7665 7220 7468 6520 .jumps.over.the. - 0x0050: 6c61 7a79 2064 6f67 2e20 5468 6520 7175 lazy.dog..The.qu - 0x0060: 6963 6b20 6272 6f77 6e20 666f 7820 6a75 ick.brown.fox.ju - 0x0070: 6d70 7320 6f76 6572 2074 6865 206c 617a mps.over.the.laz - [|zmtp1] -IP (tos 0xb8, ttl 16, id 0, offset 0, flags [DF], proto UDP (17), length 1480) - 10.0.0.45.40251 > 239.255.0.16.5563: 39236 > 5563: PGM, length 1428 0x47e3fdad9a9c ODATA trail 0 seq 283 [1452] - frame offset 0xffff - frame intermediate part, 1426 bytes, first 128 byte(s): - 0x0000: 756d 7073 206f 7665 7220 7468 6520 6c61 umps.over.the.la - 0x0010: 7a79 2064 6f67 2e20 5468 6520 7175 6963 zy.dog..The.quic - 0x0020: 6b20 6272 6f77 6e20 666f 7820 6a75 6d70 k.brown.fox.jump - 0x0030: 7320 6f76 6572 2074 6865 206c 617a 7920 s.over.the.lazy. - 0x0040: 646f 672e 2054 6865 2071 7569 636b 2062 dog..The.quick.b - 0x0050: 726f 776e 2066 6f78 206a 756d 7073 206f rown.fox.jumps.o - 0x0060: 7665 7220 7468 6520 6c61 7a79 2064 6f67 ver.the.lazy.dog - 0x0070: 2e20 5468 6520 7175 6963 6b20 6272 6f77 ..The.quick.brow - -IP (tos 0xb8, ttl 16, id 0, offset 0, flags [DF], proto UDP (17), length 173) - 10.0.0.45.40251 > 239.255.0.16.5563: 39236 > 5563: PGM, length 121 0x47e3fdad9a9c ODATA trail 0 seq 284 [145] - frame offset 0x0052 - frame intermediate part, 82 bytes, first 82 byte(s): - 0x0000: 636b 2062 726f 776e 2066 6f78 206a 756d ck.brown.fox.jum - 0x0010: 7073 206f 7665 7220 7468 6520 6c61 7a79 ps.over.the.lazy - 0x0020: 2064 6f67 2e20 5468 6520 7175 6963 6b20 .dog..The.quick. - 0x0030: 6272 6f77 6e20 666f 7820 6a75 6d70 7320 brown.fox.jumps. - 0x0040: 6f76 6572 2074 6865 206c 617a 7920 646f over.the.lazy.do - 0x0050: 672e g. - - frame flags+body (8-bit) length 36, flags 0x00 (-|-|-|-|-|-|-|-), first 35 byte(s) of body: - 0x0000: 5468 6973 2069 7320 7468 6520 7472 6169 This.is.the.trai - 0x0010: 6c69 6e67 2041 5343 4949 206d 6573 7361 ling.ASCII.messa - 0x0020: 6765 2e ge. - -IP (tos 0xb8, ttl 16, id 0, offset 0, flags [DF], proto UDP (17), length 64) - 10.0.0.45.33280 > 239.255.0.16.5563: 39236 > 5563: PGM, length 0 0x47e3fdad9a9c SPM seq 476 trail 0 lead 284 nla 10.0.0.45 [36] -IP (tos 0xb8, ttl 1, id 0, offset 0, flags [DF], proto UDP (17), length 44) - 10.0.0.45.46357 > 239.255.0.16.5563: 5563 > 39236: PGM, length 0 0x47e3fdad9a9c SPMR [16] -IP (tos 0xb8, ttl 16, id 0, offset 0, flags [DF], proto UDP (17), length 64) - 10.0.0.45.33280 > 239.255.0.16.5563: 39236 > 5563: PGM, length 0 0x47e3fdad9a9c SPM seq 477 trail 0 lead 284 nla 10.0.0.45 [36] -IP (tos 0xb8, ttl 16, id 0, offset 0, flags [DF], proto UDP (17), length 64) - 10.0.0.45.33280 > 239.255.0.16.5563: 39236 > 5563: PGM, length 0 0x47e3fdad9a9c SPM seq 478 trail 0 lead 284 nla 10.0.0.45 [36] -IP (tos 0xb8, ttl 16, id 0, offset 0, flags [DF], proto UDP (17), length 64) - 10.0.0.45.33280 > 239.255.0.16.5563: 39236 > 5563: PGM, length 0 0x47e3fdad9a9c SPM seq 479 trail 0 lead 284 nla 10.0.0.45 [36] -IP (tos 0xb8, ttl 16, id 0, offset 0, flags [DF], proto UDP (17), length 64) - 10.0.0.45.33280 > 239.255.0.16.5563: 39236 > 5563: PGM, length 0 0x47e3fdad9a9c SPM seq 480 trail 0 lead 284 nla 10.0.0.45 [36] -IP (tos 0xb8, ttl 16, id 0, offset 0, flags [DF], proto UDP (17), length 64) - 10.0.0.45.33280 > 239.255.0.16.5563: 39236 > 5563: PGM, length 0 0x47e3fdad9a9c SPM seq 481 trail 0 lead 284 nla 10.0.0.45 [36] diff --git a/tests/epgmv.out b/tests/epgmv.out deleted file mode 100644 index ffa1b82..0000000 --- a/tests/epgmv.out +++ /dev/null @@ -1,30 +0,0 @@ -IP (tos 0xb8, ttl 16, id 0, offset 0, flags [DF], proto UDP (17), length 64) - 10.0.0.45.33280 > 239.255.0.16.5563: 39236 > 5563: PGM, length 0 0x47e3fdad9a9c SPM seq 471 trail 0 lead 281 nla 10.0.0.45 [36] -IP (tos 0xb8, ttl 16, id 0, offset 0, flags [DF], proto UDP (17), length 64) - 10.0.0.45.33280 > 239.255.0.16.5563: 39236 > 5563: PGM, length 0 0x47e3fdad9a9c SPM seq 472 trail 0 lead 281 nla 10.0.0.45 [36] -IP (tos 0xb8, ttl 16, id 0, offset 0, flags [DF], proto UDP (17), length 64) - 10.0.0.45.33280 > 239.255.0.16.5563: 39236 > 5563: PGM, length 0 0x47e3fdad9a9c SPM seq 473 trail 0 lead 281 nla 10.0.0.45 [36] -IP (tos 0xb8, ttl 16, id 0, offset 0, flags [DF], proto UDP (17), length 64) - 10.0.0.45.33280 > 239.255.0.16.5563: 39236 > 5563: PGM, length 0 0x47e3fdad9a9c SPM seq 474 trail 0 lead 281 nla 10.0.0.45 [36] -IP (tos 0xb8, ttl 16, id 0, offset 0, flags [DF], proto UDP (17), length 64) - 10.0.0.45.33280 > 239.255.0.16.5563: 39236 > 5563: PGM, length 0 0x47e3fdad9a9c SPM seq 475 trail 0 lead 281 nla 10.0.0.45 [36] -IP (tos 0xb8, ttl 16, id 0, offset 0, flags [DF], proto UDP (17), length 1480) - 10.0.0.45.40251 > 239.255.0.16.5563: 39236 > 5563: PGM, length 1428 0x47e3fdad9a9c ODATA trail 0 seq 282 [1452] -IP (tos 0xb8, ttl 16, id 0, offset 0, flags [DF], proto UDP (17), length 1480) - 10.0.0.45.40251 > 239.255.0.16.5563: 39236 > 5563: PGM, length 1428 0x47e3fdad9a9c ODATA trail 0 seq 283 [1452] -IP (tos 0xb8, ttl 16, id 0, offset 0, flags [DF], proto UDP (17), length 173) - 10.0.0.45.40251 > 239.255.0.16.5563: 39236 > 5563: PGM, length 121 0x47e3fdad9a9c ODATA trail 0 seq 284 [145] -IP (tos 0xb8, ttl 16, id 0, offset 0, flags [DF], proto UDP (17), length 64) - 10.0.0.45.33280 > 239.255.0.16.5563: 39236 > 5563: PGM, length 0 0x47e3fdad9a9c SPM seq 476 trail 0 lead 284 nla 10.0.0.45 [36] -IP (tos 0xb8, ttl 1, id 0, offset 0, flags [DF], proto UDP (17), length 44) - 10.0.0.45.46357 > 239.255.0.16.5563: 5563 > 39236: PGM, length 0 0x47e3fdad9a9c SPMR [16] -IP (tos 0xb8, ttl 16, id 0, offset 0, flags [DF], proto UDP (17), length 64) - 10.0.0.45.33280 > 239.255.0.16.5563: 39236 > 5563: PGM, length 0 0x47e3fdad9a9c SPM seq 477 trail 0 lead 284 nla 10.0.0.45 [36] -IP (tos 0xb8, ttl 16, id 0, offset 0, flags [DF], proto UDP (17), length 64) - 10.0.0.45.33280 > 239.255.0.16.5563: 39236 > 5563: PGM, length 0 0x47e3fdad9a9c SPM seq 478 trail 0 lead 284 nla 10.0.0.45 [36] -IP (tos 0xb8, ttl 16, id 0, offset 0, flags [DF], proto UDP (17), length 64) - 10.0.0.45.33280 > 239.255.0.16.5563: 39236 > 5563: PGM, length 0 0x47e3fdad9a9c SPM seq 479 trail 0 lead 284 nla 10.0.0.45 [36] -IP (tos 0xb8, ttl 16, id 0, offset 0, flags [DF], proto UDP (17), length 64) - 10.0.0.45.33280 > 239.255.0.16.5563: 39236 > 5563: PGM, length 0 0x47e3fdad9a9c SPM seq 480 trail 0 lead 284 nla 10.0.0.45 [36] -IP (tos 0xb8, ttl 16, id 0, offset 0, flags [DF], proto UDP (17), length 64) - 10.0.0.45.33280 > 239.255.0.16.5563: 39236 > 5563: PGM, length 0 0x47e3fdad9a9c SPM seq 481 trail 0 lead 284 nla 10.0.0.45 [36] diff --git a/tests/esp-secrets.txt b/tests/esp-secrets.txt deleted file mode 100644 index 81847a0..0000000 --- a/tests/esp-secrets.txt +++ /dev/null @@ -1,5 +0,0 @@ -# a comment - -0x12345678@192.1.2.45 3des-cbc-hmac96:0x43434545464649494a4a4c4c4f4f51515252545457575840 -0xabcdabcd@192.0.1.1 3des-cbc-hmac96:0x434545464649494a4a4c4c4f4f5151525254545757584043 -0xd1234567@192.1.2.45 aes256-cbc-hmac96:0xaaaabbbbccccdddd4043434545464649494a4a4c4c4f4f515152525454575758 diff --git a/tests/esp0.out b/tests/esp0.out deleted file mode 100644 index a0ddf1b..0000000 --- a/tests/esp0.out +++ /dev/null @@ -1,8 +0,0 @@ -IP 192.1.2.23 > 192.1.2.45: ESP(spi=0x12345678,seq=0x1), length 116 -IP 192.1.2.23 > 192.1.2.45: ESP(spi=0x12345678,seq=0x2), length 116 -IP 192.1.2.23 > 192.1.2.45: ESP(spi=0x12345678,seq=0x3), length 116 -IP 192.1.2.23 > 192.1.2.45: ESP(spi=0x12345678,seq=0x4), length 116 -IP 192.1.2.23 > 192.1.2.45: ESP(spi=0x12345678,seq=0x5), length 116 -IP 192.1.2.23 > 192.1.2.45: ESP(spi=0x12345678,seq=0x6), length 116 -IP 192.1.2.23 > 192.1.2.45: ESP(spi=0x12345678,seq=0x7), length 116 -IP 192.1.2.23 > 192.1.2.45: ESP(spi=0x12345678,seq=0x8), length 116 diff --git a/tests/esp1.gdbinit b/tests/esp1.gdbinit deleted file mode 100644 index 6c8ae89..0000000 --- a/tests/esp1.gdbinit +++ /dev/null @@ -1 +0,0 @@ -set args -t -n -E "0x12345678@192.1.2.45 3des-cbc-hmac96:0x4043434545464649494a4a4c4c4f4f515152525454575758" -r 02-sunrise-sunset-esp.pcap diff --git a/tests/esp1.out b/tests/esp1.out deleted file mode 100644 index 61b2967..0000000 --- a/tests/esp1.out +++ /dev/null @@ -1,8 +0,0 @@ -IP 192.1.2.23 > 192.1.2.45: ESP(spi=0x12345678,seq=0x1), length 116: IP 192.0.2.1 > 192.0.1.1: ICMP echo request, id 28416, seq 1280, length 64 (ipip-proto-4) -IP 192.1.2.23 > 192.1.2.45: ESP(spi=0x12345678,seq=0x2), length 116: IP 192.0.2.1 > 192.0.1.1: ICMP echo request, id 28416, seq 1536, length 64 (ipip-proto-4) -IP 192.1.2.23 > 192.1.2.45: ESP(spi=0x12345678,seq=0x3), length 116: IP 192.0.2.1 > 192.0.1.1: ICMP echo request, id 28416, seq 1792, length 64 (ipip-proto-4) -IP 192.1.2.23 > 192.1.2.45: ESP(spi=0x12345678,seq=0x4), length 116: IP 192.0.2.1 > 192.0.1.1: ICMP echo request, id 28416, seq 2048, length 64 (ipip-proto-4) -IP 192.1.2.23 > 192.1.2.45: ESP(spi=0x12345678,seq=0x5), length 116: IP 192.0.2.1 > 192.0.1.1: ICMP echo request, id 28416, seq 2304, length 64 (ipip-proto-4) -IP 192.1.2.23 > 192.1.2.45: ESP(spi=0x12345678,seq=0x6), length 116: IP 192.0.2.1 > 192.0.1.1: ICMP echo request, id 28416, seq 2560, length 64 (ipip-proto-4) -IP 192.1.2.23 > 192.1.2.45: ESP(spi=0x12345678,seq=0x7), length 116: IP 192.0.2.1 > 192.0.1.1: ICMP echo request, id 28416, seq 2816, length 64 (ipip-proto-4) -IP 192.1.2.23 > 192.1.2.45: ESP(spi=0x12345678,seq=0x8), length 116: IP 192.0.2.1 > 192.0.1.1: ICMP echo request, id 28416, seq 3072, length 64 (ipip-proto-4) diff --git a/tests/esp2.gdbinit b/tests/esp2.gdbinit deleted file mode 100644 index 7c18407..0000000 --- a/tests/esp2.gdbinit +++ /dev/null @@ -1 +0,0 @@ -set args -t -n -E "0x12345678@192.1.2.45 3des-cbc-hmac96:0x43434545464649494a4a4c4c4f4f51515252545457575840,0xabcdabcd@192.0.1.1 3des-cbc-hmac96:0x434545464649494a4a4c4c4f4f5151525254545757584043" -r 08-sunrise-sunset-esp2.pcap diff --git a/tests/esp2.out b/tests/esp2.out deleted file mode 100644 index a829c8e..0000000 --- a/tests/esp2.out +++ /dev/null @@ -1,8 +0,0 @@ -IP 192.1.2.23 > 192.1.2.45: ESP(spi=0x12345678,seq=0x1), length 172: IP 192.1.2.23 > 192.0.1.1: ESP(spi=0xabcdabcd,seq=0x1), length 116: IP 192.0.2.1 > 192.0.1.1: ICMP echo request, id 28416, seq 1280, length 64 (ipip-proto-4) (ipip-proto-4) -IP 192.1.2.23 > 192.1.2.45: ESP(spi=0x12345678,seq=0x2), length 172: IP 192.1.2.23 > 192.0.1.1: ESP(spi=0xabcdabcd,seq=0x2), length 116: IP 192.0.2.1 > 192.0.1.1: ICMP echo request, id 28416, seq 1536, length 64 (ipip-proto-4) (ipip-proto-4) -IP 192.1.2.23 > 192.1.2.45: ESP(spi=0x12345678,seq=0x3), length 172: IP 192.1.2.23 > 192.0.1.1: ESP(spi=0xabcdabcd,seq=0x3), length 116: IP 192.0.2.1 > 192.0.1.1: ICMP echo request, id 28416, seq 1792, length 64 (ipip-proto-4) (ipip-proto-4) -IP 192.1.2.23 > 192.1.2.45: ESP(spi=0x12345678,seq=0x4), length 172: IP 192.1.2.23 > 192.0.1.1: ESP(spi=0xabcdabcd,seq=0x4), length 116: IP 192.0.2.1 > 192.0.1.1: ICMP echo request, id 28416, seq 2048, length 64 (ipip-proto-4) (ipip-proto-4) -IP 192.1.2.23 > 192.1.2.45: ESP(spi=0x12345678,seq=0x5), length 172: IP 192.1.2.23 > 192.0.1.1: ESP(spi=0xabcdabcd,seq=0x5), length 116: IP 192.0.2.1 > 192.0.1.1: ICMP echo request, id 28416, seq 2304, length 64 (ipip-proto-4) (ipip-proto-4) -IP 192.1.2.23 > 192.1.2.45: ESP(spi=0x12345678,seq=0x6), length 172: IP 192.1.2.23 > 192.0.1.1: ESP(spi=0xabcdabcd,seq=0x6), length 116: IP 192.0.2.1 > 192.0.1.1: ICMP echo request, id 28416, seq 2560, length 64 (ipip-proto-4) (ipip-proto-4) -IP 192.1.2.23 > 192.1.2.45: ESP(spi=0x12345678,seq=0x7), length 172: IP 192.1.2.23 > 192.0.1.1: ESP(spi=0xabcdabcd,seq=0x7), length 116: IP 192.0.2.1 > 192.0.1.1: ICMP echo request, id 28416, seq 2816, length 64 (ipip-proto-4) (ipip-proto-4) -IP 192.1.2.23 > 192.1.2.45: ESP(spi=0x12345678,seq=0x8), length 172: IP 192.1.2.23 > 192.0.1.1: ESP(spi=0xabcdabcd,seq=0x8), length 116: IP 192.0.2.1 > 192.0.1.1: ICMP echo request, id 28416, seq 3072, length 64 (ipip-proto-4) (ipip-proto-4) diff --git a/tests/esp3.gdbinit b/tests/esp3.gdbinit deleted file mode 100644 index 7150118..0000000 --- a/tests/esp3.gdbinit +++ /dev/null @@ -1 +0,0 @@ -set args -t -n -E "3des-cbc-hmac96:0x43434545464649494a4a4c4c4f4f51515252545457575840" -r 08-sunrise-sunset-esp2.pcap diff --git a/tests/esp4.gdbinit b/tests/esp4.gdbinit deleted file mode 100644 index 8007444..0000000 --- a/tests/esp4.gdbinit +++ /dev/null @@ -1,2 +0,0 @@ -set args -t -n -E "file esp-secrets.txt" -r 08-sunrise-sunset-esp2.pcap - diff --git a/tests/esp5.gdbinit b/tests/esp5.gdbinit deleted file mode 100644 index 2f578e3..0000000 --- a/tests/esp5.gdbinit +++ /dev/null @@ -1,3 +0,0 @@ -set args -t -n -E "file esp-secrets.txt" -r 08-sunrise-sunset-aes.pcap - - diff --git a/tests/esp5.out b/tests/esp5.out deleted file mode 100644 index 73f35e0..0000000 --- a/tests/esp5.out +++ /dev/null @@ -1,8 +0,0 @@ -IP 192.1.2.23 > 192.1.2.45: ESP(spi=0xd1234567,seq=0x1), length 132: IP 192.0.2.1 > 192.0.1.1: ICMP echo request, id 28416, seq 1280, length 64 (ipip-proto-4) -IP 192.1.2.23 > 192.1.2.45: ESP(spi=0xd1234567,seq=0x2), length 132: IP 192.0.2.1 > 192.0.1.1: ICMP echo request, id 28416, seq 1536, length 64 (ipip-proto-4) -IP 192.1.2.23 > 192.1.2.45: ESP(spi=0xd1234567,seq=0x3), length 132: IP 192.0.2.1 > 192.0.1.1: ICMP echo request, id 28416, seq 1792, length 64 (ipip-proto-4) -IP 192.1.2.23 > 192.1.2.45: ESP(spi=0xd1234567,seq=0x4), length 132: IP 192.0.2.1 > 192.0.1.1: ICMP echo request, id 28416, seq 2048, length 64 (ipip-proto-4) -IP 192.1.2.23 > 192.1.2.45: ESP(spi=0xd1234567,seq=0x5), length 132: IP 192.0.2.1 > 192.0.1.1: ICMP echo request, id 28416, seq 2304, length 64 (ipip-proto-4) -IP 192.1.2.23 > 192.1.2.45: ESP(spi=0xd1234567,seq=0x6), length 132: IP 192.0.2.1 > 192.0.1.1: ICMP echo request, id 28416, seq 2560, length 64 (ipip-proto-4) -IP 192.1.2.23 > 192.1.2.45: ESP(spi=0xd1234567,seq=0x7), length 132: IP 192.0.2.1 > 192.0.1.1: ICMP echo request, id 28416, seq 2816, length 64 (ipip-proto-4) -IP 192.1.2.23 > 192.1.2.45: ESP(spi=0xd1234567,seq=0x8), length 132: IP 192.0.2.1 > 192.0.1.1: ICMP echo request, id 28416, seq 3072, length 64 (ipip-proto-4) diff --git a/tests/espudp1.out b/tests/espudp1.out deleted file mode 100644 index db8eafb..0000000 --- a/tests/espudp1.out +++ /dev/null @@ -1,8 +0,0 @@ -IP 192.1.2.23.4500 > 192.1.2.45.4500: UDP-encap: ESP(spi=0x12345678,seq=0x1), length 116 -IP 192.1.2.23.4500 > 192.1.2.45.4500: UDP-encap: ESP(spi=0x12345678,seq=0x2), length 116: ip-proto-227 49 -IP 192.1.2.23.4500 > 192.1.2.45.4500: UDP-encap: ESP(spi=0x12345678,seq=0x3), length 116: PIMv13, length 10 -IP 192.1.2.23.4500 > 192.1.2.45.4500: UDP-encap: ESP(spi=0x12345678,seq=0x4), length 116 -IP 192.1.2.23.4500 > 192.1.2.45.4500: UDP-encap: ESP(spi=0x12345678,seq=0x5), length 116 -IP 192.1.2.23.4500 > 192.1.2.45.4500: UDP-encap: ESP(spi=0x12345678,seq=0x6), length 116: ip-proto-183 28 -IP 192.1.2.23.4500 > 192.1.2.45.4500: UDP-encap: ESP(spi=0x12345678,seq=0x7), length 116: ip-proto-72 34 -IP 192.1.2.23.4500 > 192.1.2.45.4500: UDP-encap: ESP(spi=0x12345678,seq=0x8), length 116: ip-proto-224 59 diff --git a/tests/espudp1.pcap b/tests/espudp1.pcap deleted file mode 100644 index 3387f9b..0000000 Binary files a/tests/espudp1.pcap and /dev/null differ diff --git a/tests/evb.out b/tests/evb.out deleted file mode 100644 index db8888c..0000000 --- a/tests/evb.out +++ /dev/null @@ -1,146 +0,0 @@ -STP 802.1s, Rapid STP, CIST Flags [Learn, Forward], length 102 - port-role Designated, CIST root-id 8000.08:00:27:0d:f1:3c, CIST ext-pathcost 0 - CIST regional-root-id 8000.08:00:27:0d:f1:3c, CIST port-id 8003, - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - v3len 64, MCID Name Default, rev 0, - digest ac36177f50283cd4b83821d8ab26de62, CIST int-root-pathcost 0, - CIST bridge-id 8000.08:00:27:0d:f1:3c, CIST remaining-hops 20 -STP 802.1s, Rapid STP, CIST Flags [Learn, Forward], length 102 - port-role Designated, CIST root-id 8000.08:00:27:0d:f1:3c, CIST ext-pathcost 0 - CIST regional-root-id 8000.08:00:27:0d:f1:3c, CIST port-id 8003, - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - v3len 64, MCID Name Default, rev 0, - digest ac36177f50283cd4b83821d8ab26de62, CIST int-root-pathcost 0, - CIST bridge-id 8000.08:00:27:0d:f1:3c, CIST remaining-hops 20 -STP 802.1s, Rapid STP, CIST Flags [Learn, Forward], length 102 - port-role Designated, CIST root-id 8000.08:00:27:0d:f1:3c, CIST ext-pathcost 0 - CIST regional-root-id 8000.08:00:27:0d:f1:3c, CIST port-id 8003, - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - v3len 64, MCID Name Default, rev 0, - digest ac36177f50283cd4b83821d8ab26de62, CIST int-root-pathcost 0, - CIST bridge-id 8000.08:00:27:0d:f1:3c, CIST remaining-hops 20 -LLDP, length 103 - Chassis ID TLV (1), length 7 - Subtype MAC address (4): 08:00:27:0d:f1:3c - 0x0000: 0408 0027 0df1 3c - Port ID TLV (2), length 7 - Subtype MAC address (3): 08:00:27:0d:f1:3c - 0x0000: 0308 0027 0df1 3c - Time to Live TLV (3), length 2: TTL 120s - 0x0000: 0078 - Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) - Port VLAN Id Subtype (1) - port vlan id (PVID): 1 - 0x0000: 0080 c201 0001 - Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2) - Port and Protocol VLAN ID Subtype (2) - port and protocol vlan id (PPVID): 0, flags [supported] (0x02) - 0x0000: 0080 c202 0200 00 - Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2) - VLAN name Subtype (3) - vlan id (VID): 1 - vlan name: default - 0x0000: 0080 c203 0001 0764 6566 6175 6c74 - Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2) - Protocol Identity Subtype (4) - protocol identity: - 0x0000: 0080 c204 0800 0042 4203 0000 03 - Organization specific TLV (127), length 9: OUI Ethernet bridged (0x0080c2) - EVB Subtype (13) - EVB Bridge Status - RES: 0, BGID: 0, RRCAP: 1, RRCTR: 0 - EVB Station Status - RES: 0, SGID: 0, RRREQ: 0,RRSTAT: 0 - R: 7, RTE: 20, EVB Mode: EVB Bridge [1] - ROL: 0, RWD: 31, RES: 0, ROL: 0, RKA: 31 - 0x0000: 0080 c20d 0200 f45f 1f - Organization specific TLV (127), length 11: OUI Ethernet bridged (0x0080c2) - CDCP Subtype (14) - Role: 0, RES: 0, Scomp: 0 ChnCap: 167 - SCID: 1, SVID: 1 - 0x0000: 0080 c20e 0000 00a7 0010 01 - End TLV (0), length 0 -STP 802.1s, Rapid STP, CIST Flags [Learn, Forward], length 102 - port-role Designated, CIST root-id 8000.08:00:27:0d:f1:3c, CIST ext-pathcost 0 - CIST regional-root-id 8000.08:00:27:0d:f1:3c, CIST port-id 8003, - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - v3len 64, MCID Name Default, rev 0, - digest ac36177f50283cd4b83821d8ab26de62, CIST int-root-pathcost 0, - CIST bridge-id 8000.08:00:27:0d:f1:3c, CIST remaining-hops 20 -STP 802.1s, Rapid STP, CIST Flags [Learn, Forward], length 102 - port-role Designated, CIST root-id 8000.08:00:27:0d:f1:3c, CIST ext-pathcost 0 - CIST regional-root-id 8000.08:00:27:0d:f1:3c, CIST port-id 8003, - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - v3len 64, MCID Name Default, rev 0, - digest ac36177f50283cd4b83821d8ab26de62, CIST int-root-pathcost 0, - CIST bridge-id 8000.08:00:27:0d:f1:3c, CIST remaining-hops 20 -STP 802.1s, Rapid STP, CIST Flags [Learn, Forward], length 102 - port-role Designated, CIST root-id 8000.08:00:27:0d:f1:3c, CIST ext-pathcost 0 - CIST regional-root-id 8000.08:00:27:0d:f1:3c, CIST port-id 8003, - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - v3len 64, MCID Name Default, rev 0, - digest ac36177f50283cd4b83821d8ab26de62, CIST int-root-pathcost 0, - CIST bridge-id 8000.08:00:27:0d:f1:3c, CIST remaining-hops 20 -STP 802.1s, Rapid STP, CIST Flags [Learn, Forward], length 102 - port-role Designated, CIST root-id 8000.08:00:27:0d:f1:3c, CIST ext-pathcost 0 - CIST regional-root-id 8000.08:00:27:0d:f1:3c, CIST port-id 8003, - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - v3len 64, MCID Name Default, rev 0, - digest ac36177f50283cd4b83821d8ab26de62, CIST int-root-pathcost 0, - CIST bridge-id 8000.08:00:27:0d:f1:3c, CIST remaining-hops 20 -STP 802.1s, Rapid STP, CIST Flags [Learn, Forward], length 102 - port-role Designated, CIST root-id 8000.08:00:27:0d:f1:3c, CIST ext-pathcost 0 - CIST regional-root-id 8000.08:00:27:0d:f1:3c, CIST port-id 8003, - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - v3len 64, MCID Name Default, rev 0, - digest ac36177f50283cd4b83821d8ab26de62, CIST int-root-pathcost 0, - CIST bridge-id 8000.08:00:27:0d:f1:3c, CIST remaining-hops 20 -STP 802.1s, Rapid STP, CIST Flags [Learn, Forward], length 102 - port-role Designated, CIST root-id 8000.08:00:27:0d:f1:3c, CIST ext-pathcost 0 - CIST regional-root-id 8000.08:00:27:0d:f1:3c, CIST port-id 8003, - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - v3len 64, MCID Name Default, rev 0, - digest ac36177f50283cd4b83821d8ab26de62, CIST int-root-pathcost 0, - CIST bridge-id 8000.08:00:27:0d:f1:3c, CIST remaining-hops 20 -STP 802.1s, Rapid STP, CIST Flags [Learn, Forward], length 102 - port-role Designated, CIST root-id 8000.08:00:27:0d:f1:3c, CIST ext-pathcost 0 - CIST regional-root-id 8000.08:00:27:0d:f1:3c, CIST port-id 8003, - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - v3len 64, MCID Name Default, rev 0, - digest ac36177f50283cd4b83821d8ab26de62, CIST int-root-pathcost 0, - CIST bridge-id 8000.08:00:27:0d:f1:3c, CIST remaining-hops 20 -STP 802.1s, Rapid STP, CIST Flags [Learn, Forward], length 102 - port-role Designated, CIST root-id 8000.08:00:27:0d:f1:3c, CIST ext-pathcost 0 - CIST regional-root-id 8000.08:00:27:0d:f1:3c, CIST port-id 8003, - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - v3len 64, MCID Name Default, rev 0, - digest ac36177f50283cd4b83821d8ab26de62, CIST int-root-pathcost 0, - CIST bridge-id 8000.08:00:27:0d:f1:3c, CIST remaining-hops 20 -STP 802.1s, Rapid STP, CIST Flags [Learn, Forward], length 102 - port-role Designated, CIST root-id 8000.08:00:27:0d:f1:3c, CIST ext-pathcost 0 - CIST regional-root-id 8000.08:00:27:0d:f1:3c, CIST port-id 8003, - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - v3len 64, MCID Name Default, rev 0, - digest ac36177f50283cd4b83821d8ab26de62, CIST int-root-pathcost 0, - CIST bridge-id 8000.08:00:27:0d:f1:3c, CIST remaining-hops 20 -STP 802.1s, Rapid STP, CIST Flags [Learn, Forward], length 102 - port-role Designated, CIST root-id 8000.08:00:27:0d:f1:3c, CIST ext-pathcost 0 - CIST regional-root-id 8000.08:00:27:0d:f1:3c, CIST port-id 8003, - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - v3len 64, MCID Name Default, rev 0, - digest ac36177f50283cd4b83821d8ab26de62, CIST int-root-pathcost 0, - CIST bridge-id 8000.08:00:27:0d:f1:3c, CIST remaining-hops 20 -STP 802.1s, Rapid STP, CIST Flags [Learn, Forward], length 102 - port-role Designated, CIST root-id 8000.08:00:27:0d:f1:3c, CIST ext-pathcost 0 - CIST regional-root-id 8000.08:00:27:0d:f1:3c, CIST port-id 8003, - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - v3len 64, MCID Name Default, rev 0, - digest ac36177f50283cd4b83821d8ab26de62, CIST int-root-pathcost 0, - CIST bridge-id 8000.08:00:27:0d:f1:3c, CIST remaining-hops 20 -STP 802.1s, Rapid STP, CIST Flags [Learn, Forward], length 102 - port-role Designated, CIST root-id 8000.08:00:27:0d:f1:3c, CIST ext-pathcost 0 - CIST regional-root-id 8000.08:00:27:0d:f1:3c, CIST port-id 8003, - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - v3len 64, MCID Name Default, rev 0, - digest ac36177f50283cd4b83821d8ab26de62, CIST int-root-pathcost 0, - CIST bridge-id 8000.08:00:27:0d:f1:3c, CIST remaining-hops 20 diff --git a/tests/evb.pcap b/tests/evb.pcap deleted file mode 100644 index 1aea021..0000000 Binary files a/tests/evb.pcap and /dev/null differ diff --git a/tests/failure-outputs.txt b/tests/failure-outputs.txt deleted file mode 100644 index e69de29..0000000 diff --git a/tests/forces1.out b/tests/forces1.out deleted file mode 100644 index 63bb581..0000000 --- a/tests/forces1.out +++ /dev/null @@ -1,40 +0,0 @@ -IP 150.140.254.202.57077 > 211.129.72.8.6704: sctp[ForCES HP] (1) [DATA] (B)(E) [TSN: 1048037094] [SID: 0] [SSEQ 1] [PPID 0x0] - ForCES Query Response - -IP 211.129.72.8.6706 > 150.140.254.202.48316: sctp[ForCES LP] (1) [DATA] (B)(E) [TSN: 18398476] [SID: 0] [SSEQ 0] [PPID 0x0] - ForCES HeartBeat - -IP 150.140.254.202.48316 > 211.129.72.8.6706: sctp[ForCES LP] (1) [SACK] [cum ack 18398476] [a_rwnd 57320] [#gap acks 0] [#dup tsns 0] -IP 211.129.72.8.6704 > 150.140.254.202.57077: sctp[ForCES HP] (1) [DATA] (B)(E) [TSN: 167996938] [SID: 0] [SSEQ 2] [PPID 0x0] - ForCES Query - -IP 211.129.72.8.6704 > 150.140.254.202.57077: sctp[ForCES HP] (1) [DATA] (B)(E) [TSN: 167996939] [SID: 0] [SSEQ 3] [PPID 0x0] - ForCES Config - -IP 150.140.254.202.57077 > 211.129.72.8.6704: sctp[ForCES HP] (1) [SACK] [cum ack 167996939] [a_rwnd 57228] [#gap acks 0] [#dup tsns 0] -IP 211.129.72.8.6704 > 150.140.254.202.57077: sctp[ForCES HP] (1) [DATA] (B)(E) [TSN: 167996940] [SID: 0] [SSEQ 4] [PPID 0x0] - ForCES Config - -IP 211.129.72.8.6704 > 150.140.254.202.57077: sctp[ForCES HP] (1) [DATA] (B)(E) [TSN: 167996941] [SID: 0] [SSEQ 5] [PPID 0x0] - ForCES Config - -IP 150.140.254.202.57077 > 211.129.72.8.6704: sctp[ForCES HP] (1) [SACK] [cum ack 167996941] [a_rwnd 57100] [#gap acks 0] [#dup tsns 0] -IP 211.129.72.8.6704 > 150.140.254.202.57077: sctp[ForCES HP] (1) [DATA] (B)(E) [TSN: 167996942] [SID: 0] [SSEQ 6] [PPID 0x0] - ForCES Config - -IP 211.129.72.8.6706 > 150.140.254.202.48316: sctp[ForCES LP] (1) [SACK] [cum ack 1830592459] [a_rwnd 55272] [#gap acks 0] [#dup tsns 0] -IP 150.140.254.202.57077 > 211.129.72.8.6704: sctp[ForCES HP] (1) [HB REQ] -IP 211.129.72.8.6704 > 150.140.254.202.57077: sctp[ForCES HP] (1) [HB REQ] -IP 150.140.254.202.57077 > 211.129.72.8.6704: sctp[ForCES HP] (1) [HB ACK] -IP 150.140.254.202.48316 > 211.129.72.8.6706: sctp[ForCES LP] (1) [DATA] (B)(E) [TSN: 1830592460] [SID: 0] [SSEQ 30] [PPID 0x0] - ForCES HeartBeat - -IP 211.129.72.8.6704 > 150.140.254.202.57077: sctp[ForCES HP] (1) [HB ACK] -IP 211.129.72.8.6706 > 150.140.254.202.48316: sctp[ForCES LP] (1) [DATA] (B)(E) [TSN: 18398553] [SID: 0] [SSEQ 77] [PPID 0x0] - ForCES HeartBeat - -IP 211.129.72.8.6706 > 150.140.254.202.48316: sctp[ForCES LP] (1) [DATA] (B)(E) [TSN: 18398573] [SID: 0] [SSEQ 97] [PPID 0x0] - ForCES HeartBeat - -IP 211.129.72.8.6706 > 150.140.254.202.48316: sctp[ForCES LP] (1) [SACK] [cum ack 1830592477] [a_rwnd 55272] [#gap acks 0] [#dup tsns 0] -IP 150.140.254.202.48316 > 211.129.72.8.6706: sctp[ForCES LP] (1) [SACK] [cum ack 18398573] [a_rwnd 56144] [#gap acks 0] [#dup tsns 0] diff --git a/tests/forces1.pcap b/tests/forces1.pcap deleted file mode 100644 index b60fdd0..0000000 Binary files a/tests/forces1.pcap and /dev/null differ diff --git a/tests/forces1vvv.out b/tests/forces1vvv.out deleted file mode 100644 index ebd378c..0000000 --- a/tests/forces1vvv.out +++ /dev/null @@ -1,227 +0,0 @@ -IP (tos 0x2,ECT(0), ttl 64, id 4, offset 0, flags [DF], proto SCTP (132), length 380) - 150.140.254.202.57077 > 211.129.72.8.6704: sctp[ForCES HP] - 1) [DATA] (B)(E) [TSN: 1048037094] [SID: 0] [SSEQ 1] [PPID 0x0] - ForCES Query Response - ForCES Version 1 len 332B flags 0x38400000 - SrcID 0x2(FE) DstID 0x40000001(CE) Correlator 0x1 - ForCES flags: - NoACK(0x0), prio=7, execute-all-or-none(0x1), - Standalone(0x0), StartofTransaction(0x0) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - LFBselect TLV, length 308 (data length 304 Bytes) - FEObj LFB(Classid 1) instance 1 - Oper TLV GetResp(0x9) length 296 - PATH-DATA TLV, length 292 (data encapsulated 288 Bytes) - Pathdata: Flags 0x0 ID count 1 - ID#01: 2 - FULLDATA TLV (Length 280 DataLen 276 Bytes) - [ - 0x0000: 0000 0000 0000 0001 0000 0001 0000 0001 - 0x0010: 0000 0002 0000 0001 0000 0002 0000 0003 - 0x0020: 0000 0001 0000 0003 0000 0003 0000 0002 - 0x0030: 0000 0004 0000 0004 0000 0001 0000 0005 - 0x0040: 0000 0004 0000 0002 0000 0006 0000 0005 - 0x0050: 0000 0001 0000 0007 0000 0005 0000 0002 - 0x0060: 0000 0008 0000 0006 0000 0001 0000 0009 - 0x0070: 0000 0007 0000 0001 0000 000a 0000 0007 - 0x0080: 0000 0002 0000 000b 0000 0008 0000 0001 - 0x0090: 0000 000c 0000 0009 0000 0001 0000 000d - 0x00a0: 0000 000a 0000 0001 0000 000e 0000 000b - 0x00b0: 0000 0001 0000 000f 0000 000c 0000 0001 - 0x00c0: 0000 0010 0000 000d 0000 0001 0000 0011 - 0x00d0: 0000 000e 0000 0001 0000 0012 0000 000f - 0x00e0: 0000 0001 0000 0013 0000 0010 0000 0001 - 0x00f0: 0000 0014 0000 0011 0000 0001 0000 0015 - 0x0100: 0000 0012 0000 0001 0000 0016 0000 0013 - 0x0110: 0000 0001 - ] - - -IP (tos 0x0, ttl 46, id 0, offset 0, flags [DF], proto SCTP (132), length 72) - 211.129.72.8.6706 > 150.140.254.202.48316: sctp[ForCES LP] - 1) [DATA] (B)(E) [TSN: 18398476] [SID: 0] [SSEQ 0] [PPID 0x0] - ForCES HeartBeat - ForCES Version 1 len 24B flags 0xc0400000 - SrcID 0x40000001(CE) DstID 0x2(FE) Correlator 0x2 - ForCES flags: - AlwaysACK(0x3), prio=0, execute-all-or-none(0x1), - Standalone(0x0), StartofTransaction(0x0) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - - -IP (tos 0x2,ECT(0), ttl 64, id 1, offset 0, flags [DF], proto SCTP (132), length 48) - 150.140.254.202.48316 > 211.129.72.8.6706: sctp[ForCES LP] - 1) [SACK] [cum ack 18398476] [a_rwnd 57320] [#gap acks 0] [#dup tsns 0] -IP (tos 0x0, ttl 46, id 3, offset 0, flags [DF], proto SCTP (132), length 100) - 211.129.72.8.6704 > 150.140.254.202.57077: sctp[ForCES HP] - 1) [DATA] (B)(E) [TSN: 167996938] [SID: 0] [SSEQ 2] [PPID 0x0] - ForCES Query - ForCES Version 1 len 52B flags 0xf8400000 - SrcID 0x40000001(CE) DstID 0x2(FE) Correlator 0x3 - ForCES flags: - AlwaysACK(0x3), prio=7, execute-all-or-none(0x1), - Standalone(0x0), StartofTransaction(0x0) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - LFBselect TLV, length 28 (data length 24 Bytes) - FEObj LFB(Classid 1) instance 1 - Oper TLV Get(0x7) length 16 - PATH-DATA TLV, length 12 (data encapsulated 8 Bytes) - Pathdata: Flags 0x0 ID count 1 - ID#01: 1 - - -IP (tos 0x0, ttl 46, id 4, offset 0, flags [DF], proto SCTP (132), length 112) - 211.129.72.8.6704 > 150.140.254.202.57077: sctp[ForCES HP] - 1) [DATA] (B)(E) [TSN: 167996939] [SID: 0] [SSEQ 3] [PPID 0x0] - ForCES Config - ForCES Version 1 len 64B flags 0xf8400000 - SrcID 0x40000001(CE) DstID 0x2(FE) Correlator 0x4 - ForCES flags: - AlwaysACK(0x3), prio=7, execute-all-or-none(0x1), - Standalone(0x0), StartofTransaction(0x0) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - LFBselect TLV, length 40 (data length 36 Bytes) - #3(Classid 3) instance 1 - Oper TLV SetProp(0x2) length 28 - PATH-DATA TLV, length 24 (data encapsulated 20 Bytes) - Pathdata: Flags 0x0 ID count 2 - ID#01: 60 - ID#02: 1 - FULLDATA TLV (Length 8 DataLen 4 Bytes) - [ - 0x0000: 0000 0001 - ] - - -IP (tos 0x2,ECT(0), ttl 64, id 5, offset 0, flags [DF], proto SCTP (132), length 48) - 150.140.254.202.57077 > 211.129.72.8.6704: sctp[ForCES HP] - 1) [SACK] [cum ack 167996939] [a_rwnd 57228] [#gap acks 0] [#dup tsns 0] -IP (tos 0x0, ttl 46, id 5, offset 0, flags [DF], proto SCTP (132), length 112) - 211.129.72.8.6704 > 150.140.254.202.57077: sctp[ForCES HP] - 1) [DATA] (B)(E) [TSN: 167996940] [SID: 0] [SSEQ 4] [PPID 0x0] - ForCES Config - ForCES Version 1 len 64B flags 0xf8400000 - SrcID 0x40000001(CE) DstID 0x2(FE) Correlator 0x5 - ForCES flags: - AlwaysACK(0x3), prio=7, execute-all-or-none(0x1), - Standalone(0x0), StartofTransaction(0x0) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - LFBselect TLV, length 40 (data length 36 Bytes) - #3(Classid 3) instance 1 - Oper TLV SetProp(0x2) length 28 - PATH-DATA TLV, length 24 (data encapsulated 20 Bytes) - Pathdata: Flags 0x0 ID count 2 - ID#01: 60 - ID#02: 2 - FULLDATA TLV (Length 8 DataLen 4 Bytes) - [ - 0x0000: 0000 0001 - ] - - -IP (tos 0x0, ttl 46, id 6, offset 0, flags [DF], proto SCTP (132), length 112) - 211.129.72.8.6704 > 150.140.254.202.57077: sctp[ForCES HP] - 1) [DATA] (B)(E) [TSN: 167996941] [SID: 0] [SSEQ 5] [PPID 0x0] - ForCES Config - ForCES Version 1 len 64B flags 0xf8400000 - SrcID 0x40000001(CE) DstID 0x2(FE) Correlator 0x6 - ForCES flags: - AlwaysACK(0x3), prio=7, execute-all-or-none(0x1), - Standalone(0x0), StartofTransaction(0x0) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - LFBselect TLV, length 40 (data length 36 Bytes) - #3(Classid 3) instance 1 - Oper TLV SetProp(0x2) length 28 - PATH-DATA TLV, length 24 (data encapsulated 20 Bytes) - Pathdata: Flags 0x0 ID count 2 - ID#01: 60 - ID#02: 3 - FULLDATA TLV (Length 8 DataLen 4 Bytes) - [ - 0x0000: 0000 0001 - ] - - -IP (tos 0x2,ECT(0), ttl 64, id 6, offset 0, flags [DF], proto SCTP (132), length 48) - 150.140.254.202.57077 > 211.129.72.8.6704: sctp[ForCES HP] - 1) [SACK] [cum ack 167996941] [a_rwnd 57100] [#gap acks 0] [#dup tsns 0] -IP (tos 0x0, ttl 46, id 7, offset 0, flags [DF], proto SCTP (132), length 112) - 211.129.72.8.6704 > 150.140.254.202.57077: sctp[ForCES HP] - 1) [DATA] (B)(E) [TSN: 167996942] [SID: 0] [SSEQ 6] [PPID 0x0] - ForCES Config - ForCES Version 1 len 64B flags 0xf8400000 - SrcID 0x40000001(CE) DstID 0x2(FE) Correlator 0x7 - ForCES flags: - AlwaysACK(0x3), prio=7, execute-all-or-none(0x1), - Standalone(0x0), StartofTransaction(0x0) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - LFBselect TLV, length 40 (data length 36 Bytes) - #3(Classid 3) instance 2 - Oper TLV SetProp(0x2) length 28 - PATH-DATA TLV, length 24 (data encapsulated 20 Bytes) - Pathdata: Flags 0x0 ID count 2 - ID#01: 60 - ID#02: 1 - FULLDATA TLV (Length 8 DataLen 4 Bytes) - [ - 0x0000: 0000 0001 - ] - - -IP (tos 0x0, ttl 46, id 110, offset 0, flags [DF], proto SCTP (132), length 48) - 211.129.72.8.6706 > 150.140.254.202.48316: sctp[ForCES LP] - 1) [SACK] [cum ack 1830592459] [a_rwnd 55272] [#gap acks 0] [#dup tsns 0] -IP (tos 0x2,ECT(0), ttl 64, id 90, offset 0, flags [DF], proto SCTP (132), length 80) - 150.140.254.202.57077 > 211.129.72.8.6704: sctp[ForCES HP] - 1) [HB REQ] -IP (tos 0x0, ttl 46, id 111, offset 0, flags [DF], proto SCTP (132), length 80) - 211.129.72.8.6704 > 150.140.254.202.57077: sctp[ForCES HP] - 1) [HB REQ] -IP (tos 0x2,ECT(0), ttl 64, id 91, offset 0, flags [DF], proto SCTP (132), length 80) - 150.140.254.202.57077 > 211.129.72.8.6704: sctp[ForCES HP] - 1) [HB ACK] -IP (tos 0x2,ECT(0), ttl 64, id 111, offset 0, flags [DF], proto SCTP (132), length 72) - 150.140.254.202.48316 > 211.129.72.8.6706: sctp[ForCES LP] - 1) [DATA] (B)(E) [TSN: 1830592460] [SID: 0] [SSEQ 30] [PPID 0x0] - ForCES HeartBeat - ForCES Version 1 len 24B flags 0x00000000 - SrcID 0x2(FE) DstID 0x40000001(CE) Correlator 0x53 - ForCES flags: - NoACK(0x0), prio=0, EMReserved(0x0), - Standalone(0x0), StartofTransaction(0x0) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - - -IP (tos 0x0, ttl 46, id 112, offset 0, flags [DF], proto SCTP (132), length 80) - 211.129.72.8.6704 > 150.140.254.202.57077: sctp[ForCES HP] - 1) [HB ACK] -IP (tos 0x0, ttl 46, id 111, offset 0, flags [DF], proto SCTP (132), length 72) - 211.129.72.8.6706 > 150.140.254.202.48316: sctp[ForCES LP] - 1) [DATA] (B)(E) [TSN: 18398553] [SID: 0] [SSEQ 77] [PPID 0x0] - ForCES HeartBeat - ForCES Version 1 len 24B flags 0xc0400000 - SrcID 0x40000001(CE) DstID 0x2(FE) Correlator 0x83 - ForCES flags: - AlwaysACK(0x3), prio=0, execute-all-or-none(0x1), - Standalone(0x0), StartofTransaction(0x0) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - - -IP (tos 0x0, ttl 46, id 148, offset 0, flags [DF], proto SCTP (132), length 72) - 211.129.72.8.6706 > 150.140.254.202.48316: sctp[ForCES LP] - 1) [DATA] (B)(E) [TSN: 18398573] [SID: 0] [SSEQ 97] [PPID 0x0] - ForCES HeartBeat - ForCES Version 1 len 24B flags 0xc0400000 - SrcID 0x40000001(CE) DstID 0x2(FE) Correlator 0x97 - ForCES flags: - AlwaysACK(0x3), prio=0, execute-all-or-none(0x1), - Standalone(0x0), StartofTransaction(0x0) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - - -IP (tos 0x0, ttl 46, id 149, offset 0, flags [DF], proto SCTP (132), length 48) - 211.129.72.8.6706 > 150.140.254.202.48316: sctp[ForCES LP] - 1) [SACK] [cum ack 1830592477] [a_rwnd 55272] [#gap acks 0] [#dup tsns 0] -IP (tos 0x2,ECT(0), ttl 64, id 147, offset 0, flags [DF], proto SCTP (132), length 48) - 150.140.254.202.48316 > 211.129.72.8.6706: sctp[ForCES LP] - 1) [SACK] [cum ack 18398573] [a_rwnd 56144] [#gap acks 0] [#dup tsns 0] diff --git a/tests/forces1vvvv.out b/tests/forces1vvvv.out deleted file mode 100644 index e418839..0000000 --- a/tests/forces1vvvv.out +++ /dev/null @@ -1,306 +0,0 @@ -IP (tos 0x2,ECT(0), ttl 64, id 4, offset 0, flags [DF], proto SCTP (132), length 380) - 150.140.254.202.57077 > 211.129.72.8.6704: sctp[ForCES HP] - 1) [DATA] (B)(E) [TSN: 1048037094] [SID: 0] [SSEQ 1] [PPID 0x0] - ForCES Query Response - ForCES Version 1 len 332B flags 0x38400000 - SrcID 0x2(FE) DstID 0x40000001(CE) Correlator 0x1 - ForCES flags: - NoACK(0x0), prio=7, execute-all-or-none(0x1), - Standalone(0x0), StartofTransaction(0x0) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - LFBselect TLV, length 308 (data length 304 Bytes) - FEObj LFB(Classid 1) instance 1 - Oper TLV GetResp(0x9) length 296 - PATH-DATA TLV, length 292 (data encapsulated 288 Bytes) - Pathdata: Flags 0x0 ID count 1 - ID#01: 2 - FULLDATA TLV (Length 280 DataLen 276 Bytes) - [ - 0x0000: 0000 0000 0000 0001 0000 0001 0000 0001 - 0x0010: 0000 0002 0000 0001 0000 0002 0000 0003 - 0x0020: 0000 0001 0000 0003 0000 0003 0000 0002 - 0x0030: 0000 0004 0000 0004 0000 0001 0000 0005 - 0x0040: 0000 0004 0000 0002 0000 0006 0000 0005 - 0x0050: 0000 0001 0000 0007 0000 0005 0000 0002 - 0x0060: 0000 0008 0000 0006 0000 0001 0000 0009 - 0x0070: 0000 0007 0000 0001 0000 000a 0000 0007 - 0x0080: 0000 0002 0000 000b 0000 0008 0000 0001 - 0x0090: 0000 000c 0000 0009 0000 0001 0000 000d - 0x00a0: 0000 000a 0000 0001 0000 000e 0000 000b - 0x00b0: 0000 0001 0000 000f 0000 000c 0000 0001 - 0x00c0: 0000 0010 0000 000d 0000 0001 0000 0011 - 0x00d0: 0000 000e 0000 0001 0000 0012 0000 000f - 0x00e0: 0000 0001 0000 0013 0000 0010 0000 0001 - 0x00f0: 0000 0014 0000 0011 0000 0001 0000 0015 - 0x0100: 0000 0012 0000 0001 0000 0016 0000 0013 - 0x0110: 0000 0001 - ] - - Raw ForCES message - [ - 0x0000: 1014 0053 0000 0002 4000 0001 0000 0000 - 0x0010: 0000 0001 3840 0000 1000 0134 0000 0001 - 0x0020: 0000 0001 0009 0128 0110 0124 0000 0001 - 0x0030: 0000 0002 0112 0118 0000 0000 0000 0001 - 0x0040: 0000 0001 0000 0001 0000 0002 0000 0001 - 0x0050: 0000 0002 0000 0003 0000 0001 0000 0003 - 0x0060: 0000 0003 0000 0002 0000 0004 0000 0004 - 0x0070: 0000 0001 0000 0005 0000 0004 0000 0002 - 0x0080: 0000 0006 0000 0005 0000 0001 0000 0007 - 0x0090: 0000 0005 0000 0002 0000 0008 0000 0006 - 0x00a0: 0000 0001 0000 0009 0000 0007 0000 0001 - 0x00b0: 0000 000a 0000 0007 0000 0002 0000 000b - 0x00c0: 0000 0008 0000 0001 0000 000c 0000 0009 - 0x00d0: 0000 0001 0000 000d 0000 000a 0000 0001 - 0x00e0: 0000 000e 0000 000b 0000 0001 0000 000f - 0x00f0: 0000 000c 0000 0001 0000 0010 0000 000d - 0x0100: 0000 0001 0000 0011 0000 000e 0000 0001 - 0x0110: 0000 0012 0000 000f 0000 0001 0000 0013 - 0x0120: 0000 0010 0000 0001 0000 0014 0000 0011 - 0x0130: 0000 0001 0000 0015 0000 0012 0000 0001 - 0x0140: 0000 0016 0000 0013 0000 0001 - ] - -IP (tos 0x0, ttl 46, id 0, offset 0, flags [DF], proto SCTP (132), length 72) - 211.129.72.8.6706 > 150.140.254.202.48316: sctp[ForCES LP] - 1) [DATA] (B)(E) [TSN: 18398476] [SID: 0] [SSEQ 0] [PPID 0x0] - ForCES HeartBeat - ForCES Version 1 len 24B flags 0xc0400000 - SrcID 0x40000001(CE) DstID 0x2(FE) Correlator 0x2 - ForCES flags: - AlwaysACK(0x3), prio=0, execute-all-or-none(0x1), - Standalone(0x0), StartofTransaction(0x0) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - - Raw ForCES message - [ - 0x0000: 100f 0006 4000 0001 0000 0002 0000 0000 - 0x0010: 0000 0002 c040 0000 - ] - -IP (tos 0x2,ECT(0), ttl 64, id 1, offset 0, flags [DF], proto SCTP (132), length 48) - 150.140.254.202.48316 > 211.129.72.8.6706: sctp[ForCES LP] - 1) [SACK] [cum ack 18398476] [a_rwnd 57320] [#gap acks 0] [#dup tsns 0] -IP (tos 0x0, ttl 46, id 3, offset 0, flags [DF], proto SCTP (132), length 100) - 211.129.72.8.6704 > 150.140.254.202.57077: sctp[ForCES HP] - 1) [DATA] (B)(E) [TSN: 167996938] [SID: 0] [SSEQ 2] [PPID 0x0] - ForCES Query - ForCES Version 1 len 52B flags 0xf8400000 - SrcID 0x40000001(CE) DstID 0x2(FE) Correlator 0x3 - ForCES flags: - AlwaysACK(0x3), prio=7, execute-all-or-none(0x1), - Standalone(0x0), StartofTransaction(0x0) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - LFBselect TLV, length 28 (data length 24 Bytes) - FEObj LFB(Classid 1) instance 1 - Oper TLV Get(0x7) length 16 - PATH-DATA TLV, length 12 (data encapsulated 8 Bytes) - Pathdata: Flags 0x0 ID count 1 - ID#01: 1 - - Raw ForCES message - [ - 0x0000: 1004 000d 4000 0001 0000 0002 0000 0000 - 0x0010: 0000 0003 f840 0000 1000 001c 0000 0001 - 0x0020: 0000 0001 0007 0010 0110 000c 0000 0001 - 0x0030: 0000 0001 - ] - -IP (tos 0x0, ttl 46, id 4, offset 0, flags [DF], proto SCTP (132), length 112) - 211.129.72.8.6704 > 150.140.254.202.57077: sctp[ForCES HP] - 1) [DATA] (B)(E) [TSN: 167996939] [SID: 0] [SSEQ 3] [PPID 0x0] - ForCES Config - ForCES Version 1 len 64B flags 0xf8400000 - SrcID 0x40000001(CE) DstID 0x2(FE) Correlator 0x4 - ForCES flags: - AlwaysACK(0x3), prio=7, execute-all-or-none(0x1), - Standalone(0x0), StartofTransaction(0x0) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - LFBselect TLV, length 40 (data length 36 Bytes) - #3(Classid 3) instance 1 - Oper TLV SetProp(0x2) length 28 - PATH-DATA TLV, length 24 (data encapsulated 20 Bytes) - Pathdata: Flags 0x0 ID count 2 - ID#01: 60 - ID#02: 1 - FULLDATA TLV (Length 8 DataLen 4 Bytes) - [ - 0x0000: 0000 0001 - ] - - Raw ForCES message - [ - 0x0000: 1003 0010 4000 0001 0000 0002 0000 0000 - 0x0010: 0000 0004 f840 0000 1000 0028 0000 0003 - 0x0020: 0000 0001 0002 001c 0110 0018 0000 0002 - 0x0030: 0000 003c 0000 0001 0112 0008 0000 0001 - ] - -IP (tos 0x2,ECT(0), ttl 64, id 5, offset 0, flags [DF], proto SCTP (132), length 48) - 150.140.254.202.57077 > 211.129.72.8.6704: sctp[ForCES HP] - 1) [SACK] [cum ack 167996939] [a_rwnd 57228] [#gap acks 0] [#dup tsns 0] -IP (tos 0x0, ttl 46, id 5, offset 0, flags [DF], proto SCTP (132), length 112) - 211.129.72.8.6704 > 150.140.254.202.57077: sctp[ForCES HP] - 1) [DATA] (B)(E) [TSN: 167996940] [SID: 0] [SSEQ 4] [PPID 0x0] - ForCES Config - ForCES Version 1 len 64B flags 0xf8400000 - SrcID 0x40000001(CE) DstID 0x2(FE) Correlator 0x5 - ForCES flags: - AlwaysACK(0x3), prio=7, execute-all-or-none(0x1), - Standalone(0x0), StartofTransaction(0x0) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - LFBselect TLV, length 40 (data length 36 Bytes) - #3(Classid 3) instance 1 - Oper TLV SetProp(0x2) length 28 - PATH-DATA TLV, length 24 (data encapsulated 20 Bytes) - Pathdata: Flags 0x0 ID count 2 - ID#01: 60 - ID#02: 2 - FULLDATA TLV (Length 8 DataLen 4 Bytes) - [ - 0x0000: 0000 0001 - ] - - Raw ForCES message - [ - 0x0000: 1003 0010 4000 0001 0000 0002 0000 0000 - 0x0010: 0000 0005 f840 0000 1000 0028 0000 0003 - 0x0020: 0000 0001 0002 001c 0110 0018 0000 0002 - 0x0030: 0000 003c 0000 0002 0112 0008 0000 0001 - ] - -IP (tos 0x0, ttl 46, id 6, offset 0, flags [DF], proto SCTP (132), length 112) - 211.129.72.8.6704 > 150.140.254.202.57077: sctp[ForCES HP] - 1) [DATA] (B)(E) [TSN: 167996941] [SID: 0] [SSEQ 5] [PPID 0x0] - ForCES Config - ForCES Version 1 len 64B flags 0xf8400000 - SrcID 0x40000001(CE) DstID 0x2(FE) Correlator 0x6 - ForCES flags: - AlwaysACK(0x3), prio=7, execute-all-or-none(0x1), - Standalone(0x0), StartofTransaction(0x0) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - LFBselect TLV, length 40 (data length 36 Bytes) - #3(Classid 3) instance 1 - Oper TLV SetProp(0x2) length 28 - PATH-DATA TLV, length 24 (data encapsulated 20 Bytes) - Pathdata: Flags 0x0 ID count 2 - ID#01: 60 - ID#02: 3 - FULLDATA TLV (Length 8 DataLen 4 Bytes) - [ - 0x0000: 0000 0001 - ] - - Raw ForCES message - [ - 0x0000: 1003 0010 4000 0001 0000 0002 0000 0000 - 0x0010: 0000 0006 f840 0000 1000 0028 0000 0003 - 0x0020: 0000 0001 0002 001c 0110 0018 0000 0002 - 0x0030: 0000 003c 0000 0003 0112 0008 0000 0001 - ] - -IP (tos 0x2,ECT(0), ttl 64, id 6, offset 0, flags [DF], proto SCTP (132), length 48) - 150.140.254.202.57077 > 211.129.72.8.6704: sctp[ForCES HP] - 1) [SACK] [cum ack 167996941] [a_rwnd 57100] [#gap acks 0] [#dup tsns 0] -IP (tos 0x0, ttl 46, id 7, offset 0, flags [DF], proto SCTP (132), length 112) - 211.129.72.8.6704 > 150.140.254.202.57077: sctp[ForCES HP] - 1) [DATA] (B)(E) [TSN: 167996942] [SID: 0] [SSEQ 6] [PPID 0x0] - ForCES Config - ForCES Version 1 len 64B flags 0xf8400000 - SrcID 0x40000001(CE) DstID 0x2(FE) Correlator 0x7 - ForCES flags: - AlwaysACK(0x3), prio=7, execute-all-or-none(0x1), - Standalone(0x0), StartofTransaction(0x0) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - LFBselect TLV, length 40 (data length 36 Bytes) - #3(Classid 3) instance 2 - Oper TLV SetProp(0x2) length 28 - PATH-DATA TLV, length 24 (data encapsulated 20 Bytes) - Pathdata: Flags 0x0 ID count 2 - ID#01: 60 - ID#02: 1 - FULLDATA TLV (Length 8 DataLen 4 Bytes) - [ - 0x0000: 0000 0001 - ] - - Raw ForCES message - [ - 0x0000: 1003 0010 4000 0001 0000 0002 0000 0000 - 0x0010: 0000 0007 f840 0000 1000 0028 0000 0003 - 0x0020: 0000 0002 0002 001c 0110 0018 0000 0002 - 0x0030: 0000 003c 0000 0001 0112 0008 0000 0001 - ] - -IP (tos 0x0, ttl 46, id 110, offset 0, flags [DF], proto SCTP (132), length 48) - 211.129.72.8.6706 > 150.140.254.202.48316: sctp[ForCES LP] - 1) [SACK] [cum ack 1830592459] [a_rwnd 55272] [#gap acks 0] [#dup tsns 0] -IP (tos 0x2,ECT(0), ttl 64, id 90, offset 0, flags [DF], proto SCTP (132), length 80) - 150.140.254.202.57077 > 211.129.72.8.6704: sctp[ForCES HP] - 1) [HB REQ] -IP (tos 0x0, ttl 46, id 111, offset 0, flags [DF], proto SCTP (132), length 80) - 211.129.72.8.6704 > 150.140.254.202.57077: sctp[ForCES HP] - 1) [HB REQ] -IP (tos 0x2,ECT(0), ttl 64, id 91, offset 0, flags [DF], proto SCTP (132), length 80) - 150.140.254.202.57077 > 211.129.72.8.6704: sctp[ForCES HP] - 1) [HB ACK] -IP (tos 0x2,ECT(0), ttl 64, id 111, offset 0, flags [DF], proto SCTP (132), length 72) - 150.140.254.202.48316 > 211.129.72.8.6706: sctp[ForCES LP] - 1) [DATA] (B)(E) [TSN: 1830592460] [SID: 0] [SSEQ 30] [PPID 0x0] - ForCES HeartBeat - ForCES Version 1 len 24B flags 0x00000000 - SrcID 0x2(FE) DstID 0x40000001(CE) Correlator 0x53 - ForCES flags: - NoACK(0x0), prio=0, EMReserved(0x0), - Standalone(0x0), StartofTransaction(0x0) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - - Raw ForCES message - [ - 0x0000: 100f 0006 0000 0002 4000 0001 0000 0000 - 0x0010: 0000 0053 0000 0000 - ] - -IP (tos 0x0, ttl 46, id 112, offset 0, flags [DF], proto SCTP (132), length 80) - 211.129.72.8.6704 > 150.140.254.202.57077: sctp[ForCES HP] - 1) [HB ACK] -IP (tos 0x0, ttl 46, id 111, offset 0, flags [DF], proto SCTP (132), length 72) - 211.129.72.8.6706 > 150.140.254.202.48316: sctp[ForCES LP] - 1) [DATA] (B)(E) [TSN: 18398553] [SID: 0] [SSEQ 77] [PPID 0x0] - ForCES HeartBeat - ForCES Version 1 len 24B flags 0xc0400000 - SrcID 0x40000001(CE) DstID 0x2(FE) Correlator 0x83 - ForCES flags: - AlwaysACK(0x3), prio=0, execute-all-or-none(0x1), - Standalone(0x0), StartofTransaction(0x0) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - - Raw ForCES message - [ - 0x0000: 100f 0006 4000 0001 0000 0002 0000 0000 - 0x0010: 0000 0083 c040 0000 - ] - -IP (tos 0x0, ttl 46, id 148, offset 0, flags [DF], proto SCTP (132), length 72) - 211.129.72.8.6706 > 150.140.254.202.48316: sctp[ForCES LP] - 1) [DATA] (B)(E) [TSN: 18398573] [SID: 0] [SSEQ 97] [PPID 0x0] - ForCES HeartBeat - ForCES Version 1 len 24B flags 0xc0400000 - SrcID 0x40000001(CE) DstID 0x2(FE) Correlator 0x97 - ForCES flags: - AlwaysACK(0x3), prio=0, execute-all-or-none(0x1), - Standalone(0x0), StartofTransaction(0x0) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - - Raw ForCES message - [ - 0x0000: 100f 0006 4000 0001 0000 0002 0000 0000 - 0x0010: 0000 0097 c040 0000 - ] - -IP (tos 0x0, ttl 46, id 149, offset 0, flags [DF], proto SCTP (132), length 48) - 211.129.72.8.6706 > 150.140.254.202.48316: sctp[ForCES LP] - 1) [SACK] [cum ack 1830592477] [a_rwnd 55272] [#gap acks 0] [#dup tsns 0] -IP (tos 0x2,ECT(0), ttl 64, id 147, offset 0, flags [DF], proto SCTP (132), length 48) - 150.140.254.202.48316 > 211.129.72.8.6706: sctp[ForCES LP] - 1) [SACK] [cum ack 18398573] [a_rwnd 56144] [#gap acks 0] [#dup tsns 0] diff --git a/tests/forces2.pcap b/tests/forces2.pcap deleted file mode 100644 index 51a2095..0000000 Binary files a/tests/forces2.pcap and /dev/null differ diff --git a/tests/forces2v.out b/tests/forces2v.out deleted file mode 100644 index e69de29..0000000 diff --git a/tests/forces2vv.out b/tests/forces2vv.out deleted file mode 100644 index 74f37c6..0000000 --- a/tests/forces2vv.out +++ /dev/null @@ -1,378 +0,0 @@ -05:05:09.298782 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 68) - 192.168.1.142.33985 > 192.168.1.143.6704: sctp[ForCES HP] - 1) [INIT] [init tag: 2496668056] [rwnd: 57344] [OS: 1] [MIS: 1] [init TSN: 3848071494] -05:05:09.303686 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 292) - 192.168.1.143.6704 > 192.168.1.142.33985: sctp[ForCES HP] - 1) [INIT ACK] [init tag: 970400624] [rwnd: 57344] [OS: 1] [MIS: 1] [init TSN: 918167005] -05:05:09.304939 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 264) - 192.168.1.142.33985 > 192.168.1.143.6704: sctp[ForCES HP] - 1) [COOKIE ECHO] -05:05:09.306408 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 36) - 192.168.1.143.6704 > 192.168.1.142.33985: sctp[ForCES HP] - 1) [COOKIE ACK] -05:05:10.309380 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 68) - 192.168.1.142.39555 > 192.168.1.143.6705: sctp[ForCES MP] - 1) [INIT] [init tag: 2044981539] [rwnd: 57344] [OS: 1] [MIS: 1] [init TSN: 2236306515] -05:05:10.309715 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 292) - 192.168.1.143.6705 > 192.168.1.142.39555: sctp[ForCES MP] - 1) [INIT ACK] [init tag: 3835501490] [rwnd: 57344] [OS: 1] [MIS: 1] [init TSN: 2895206285] -05:05:10.309749 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 264) - 192.168.1.142.39555 > 192.168.1.143.6705: sctp[ForCES MP] - 1) [COOKIE ECHO] -05:05:10.309952 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 36) - 192.168.1.143.6705 > 192.168.1.142.39555: sctp[ForCES MP] - 1) [COOKIE ACK] -05:05:11.310417 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 68) - 192.168.1.142.34521 > 192.168.1.143.6706: sctp[ForCES LP] - 1) [INIT] [init tag: 3379268938] [rwnd: 57344] [OS: 1] [MIS: 1] [init TSN: 4164546507] -05:05:11.310768 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 292) - 192.168.1.143.6706 > 192.168.1.142.34521: sctp[ForCES LP] - 1) [INIT ACK] [init tag: 1840401365] [rwnd: 57344] [OS: 1] [MIS: 1] [init TSN: 1469124988] -05:05:11.310801 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 264) - 192.168.1.142.34521 > 192.168.1.143.6706: sctp[ForCES LP] - 1) [COOKIE ECHO] -05:05:11.311000 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 36) - 192.168.1.143.6706 > 192.168.1.142.34521: sctp[ForCES LP] - 1) [COOKIE ACK] -05:05:12.312310 IP (tos 0x2,ECT(0), ttl 64, id 1, offset 0, flags [DF], proto SCTP (132), length 72) - 192.168.1.142.33985 > 192.168.1.143.6704: sctp[ForCES HP] - 1) [DATA] (B)(E) [TSN: 3848071494] [SID: 0] [SSEQ 0] [PPID 0x0] - ForCES Association Setup - ForCES Version 1 len 24B flags 0xf8000000 - SrcID 0x2(FE) DstID 0x40000003(CE) Correlator 0x1 - ForCES flags: - AlwaysACK(0x3), prio=7, EMReserved(0x0), - Standalone(0x0), StartofTransaction(0x0) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - - -05:05:12.314195 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 48) - 192.168.1.143.6704 > 192.168.1.142.33985: sctp[ForCES HP] - 1) [SACK] [cum ack 3848071494] [a_rwnd 57320] [#gap acks 0] [#dup tsns 0] -05:05:12.416220 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.143.6704 > 192.168.1.142.33985: sctp[ForCES HP] - 1) [DATA] (B)(E) [TSN: 918167005] [SID: 0] [SSEQ 0] [PPID 0x0] - ForCES Association Response - ForCES Version 1 len 32B flags 0x38100000 - SrcID 0x40000003(CE) DstID 0x2(FE) Correlator 0x1 - ForCES flags: - NoACK(0x0), prio=7, EMReserved(0x0), - Standalone(0x0), EndofTransaction(0x2) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - - -05:05:12.416942 IP (tos 0x2,ECT(0), ttl 64, id 2, offset 0, flags [DF], proto SCTP (132), length 48) - 192.168.1.142.33985 > 192.168.1.143.6704: sctp[ForCES HP] - 1) [SACK] [cum ack 918167005] [a_rwnd 57312] [#gap acks 0] [#dup tsns 0] -05:05:20.347682 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 72) - 192.168.1.143.6706 > 192.168.1.142.34521: sctp[ForCES LP] - 1) [DATA] (B)(E) [TSN: 1469124988] [SID: 0] [SSEQ 0] [PPID 0x0] - ForCES HeartBeat - ForCES Version 1 len 24B flags 0xc0500000 - SrcID 0x40000003(CE) DstID 0x2(FE) Correlator 0x1 - ForCES flags: - AlwaysACK(0x3), prio=0, execute-all-or-none(0x1), - Standalone(0x0), EndofTransaction(0x2) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - - -05:05:20.352187 IP (tos 0x2,ECT(0), ttl 64, id 1, offset 0, flags [DF], proto SCTP (132), length 48) - 192.168.1.142.34521 > 192.168.1.143.6706: sctp[ForCES LP] - 1) [SACK] [cum ack 1469124988] [a_rwnd 57320] [#gap acks 0] [#dup tsns 0] -05:05:21.248574 IP (tos 0x2,ECT(0), ttl 64, id 2, offset 0, flags [DF], proto SCTP (132), length 72) - 192.168.1.142.34521 > 192.168.1.143.6706: sctp[ForCES LP] - 1) [DATA] (B)(E) [TSN: 4164546507] [SID: 0] [SSEQ 0] [PPID 0x0] - ForCES HeartBeat - ForCES Version 1 len 24B flags 0x08000000 - SrcID 0x2(FE) DstID 0x40000003(CE) Correlator 0x1 - ForCES flags: - NoACK(0x0), prio=1, EMReserved(0x0), - Standalone(0x0), StartofTransaction(0x0) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - - -05:05:21.249024 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 48) - 192.168.1.143.6706 > 192.168.1.142.34521: sctp[ForCES LP] - 1) [SACK] [cum ack 4164546507] [a_rwnd 57320] [#gap acks 0] [#dup tsns 0] -05:05:32.421106 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 72) - 192.168.1.143.6706 > 192.168.1.142.34521: sctp[ForCES LP] - 1) [DATA] (B)(E) [TSN: 1469124989] [SID: 0] [SSEQ 1] [PPID 0x0] - ForCES HeartBeat - ForCES Version 1 len 24B flags 0xc0100000 - SrcID 0x40000003(CE) DstID 0x2(FE) Correlator 0x2 - ForCES flags: - AlwaysACK(0x3), prio=0, EMReserved(0x0), - Standalone(0x0), EndofTransaction(0x2) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - - -05:05:32.621031 IP (tos 0x2,ECT(0), ttl 64, id 3, offset 0, flags [DF], proto SCTP (132), length 48) - 192.168.1.142.34521 > 192.168.1.143.6706: sctp[ForCES LP] - 1) [SACK] [cum ack 1469124989] [a_rwnd 57344] [#gap acks 0] [#dup tsns 0] -05:05:33.263419 IP (tos 0x2,ECT(0), ttl 64, id 4, offset 0, flags [DF], proto SCTP (132), length 72) - 192.168.1.142.34521 > 192.168.1.143.6706: sctp[ForCES LP] - 1) [DATA] (B)(E) [TSN: 4164546508] [SID: 0] [SSEQ 1] [PPID 0x0] - ForCES HeartBeat - ForCES Version 1 len 24B flags 0x08000000 - SrcID 0x2(FE) DstID 0x40000003(CE) Correlator 0x2 - ForCES flags: - NoACK(0x0), prio=1, EMReserved(0x0), - Standalone(0x0), StartofTransaction(0x0) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - - -05:05:33.464155 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 48) - 192.168.1.143.6706 > 192.168.1.142.34521: sctp[ForCES LP] - 1) [SACK] [cum ack 4164546508] [a_rwnd 57344] [#gap acks 0] [#dup tsns 0] -05:05:43.022434 IP (tos 0x2,ECT(0), ttl 64, id 1, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.142.39555 > 192.168.1.143.6705: sctp[ForCES MP] - 1) [HB REQ] -05:05:43.023282 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.143.6705 > 192.168.1.142.39555: sctp[ForCES MP] - 1) [HB ACK] -05:05:43.196617 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.143.6705 > 192.168.1.142.39555: sctp[ForCES MP] - 1) [HB REQ] -05:05:43.197037 IP (tos 0x2,ECT(0), ttl 64, id 2, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.142.39555 > 192.168.1.143.6705: sctp[ForCES MP] - 1) [HB ACK] -05:05:44.604199 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.143.6704 > 192.168.1.142.33985: sctp[ForCES HP] - 1) [HB REQ] -05:05:44.604244 IP (tos 0x2,ECT(0), ttl 64, id 3, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.142.33985 > 192.168.1.143.6704: sctp[ForCES HP] - 1) [HB ACK] -05:05:46.350074 IP (tos 0x2,ECT(0), ttl 64, id 4, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.142.33985 > 192.168.1.143.6704: sctp[ForCES HP] - 1) [HB REQ] -05:05:46.350436 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.143.6704 > 192.168.1.142.33985: sctp[ForCES HP] - 1) [HB ACK] -05:05:52.435455 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 72) - 192.168.1.143.6706 > 192.168.1.142.34521: sctp[ForCES LP] - 1) [DATA] (B)(E) [TSN: 1469124990] [SID: 0] [SSEQ 2] [PPID 0x0] - ForCES HeartBeat - ForCES Version 1 len 24B flags 0xc0100000 - SrcID 0x40000003(CE) DstID 0x2(FE) Correlator 0x3 - ForCES flags: - AlwaysACK(0x3), prio=0, EMReserved(0x0), - Standalone(0x0), EndofTransaction(0x2) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - - -05:05:52.635909 IP (tos 0x2,ECT(0), ttl 64, id 5, offset 0, flags [DF], proto SCTP (132), length 48) - 192.168.1.142.34521 > 192.168.1.143.6706: sctp[ForCES LP] - 1) [SACK] [cum ack 1469124990] [a_rwnd 57344] [#gap acks 0] [#dup tsns 0] -05:05:53.285747 IP (tos 0x2,ECT(0), ttl 64, id 6, offset 0, flags [DF], proto SCTP (132), length 72) - 192.168.1.142.34521 > 192.168.1.143.6706: sctp[ForCES LP] - 1) [DATA] (B)(E) [TSN: 4164546509] [SID: 0] [SSEQ 2] [PPID 0x0] - ForCES HeartBeat - ForCES Version 1 len 24B flags 0x08000000 - SrcID 0x2(FE) DstID 0x40000003(CE) Correlator 0x3 - ForCES flags: - NoACK(0x0), prio=1, EMReserved(0x0), - Standalone(0x0), StartofTransaction(0x0) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - - -05:05:53.486513 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 48) - 192.168.1.143.6706 > 192.168.1.142.34521: sctp[ForCES LP] - 1) [SACK] [cum ack 4164546509] [a_rwnd 57344] [#gap acks 0] [#dup tsns 0] -05:05:57.511596 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 184) - 192.168.1.143.6704 > 192.168.1.142.33985: sctp[ForCES HP] - 1) [DATA] (B)(E) [TSN: 918167006] [SID: 0] [SSEQ 1] [PPID 0x0] - ForCES Config - ForCES Version 1 len 136B flags 0xf8500000 - SrcID 0x40000003(CE) DstID 0x2(FE) Correlator 0x4 - ForCES flags: - AlwaysACK(0x3), prio=7, execute-all-or-none(0x1), - Standalone(0x0), EndofTransaction(0x2) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - - -05:05:57.712372 IP (tos 0x2,ECT(0), ttl 64, id 5, offset 0, flags [DF], proto SCTP (132), length 48) - 192.168.1.142.33985 > 192.168.1.143.6704: sctp[ForCES HP] - 1) [SACK] [cum ack 918167006] [a_rwnd 57344] [#gap acks 0] [#dup tsns 0] -05:05:58.292051 IP (tos 0x2,ECT(0), ttl 64, id 6, offset 0, flags [DF], proto SCTP (132), length 144) - 192.168.1.142.33985 > 192.168.1.143.6704: sctp[ForCES HP] - 1) [DATA] (B)(E) [TSN: 3848071495] [SID: 0] [SSEQ 1] [PPID 0x0] - ForCES Config Response - ForCES Version 1 len 96B flags 0x38500000 - SrcID 0x2(FE) DstID 0x40000003(CE) Correlator 0x4 - ForCES flags: - NoACK(0x0), prio=7, execute-all-or-none(0x1), - Standalone(0x0), EndofTransaction(0x2) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - - -05:05:58.492214 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 48) - 192.168.1.143.6704 > 192.168.1.142.33985: sctp[ForCES HP] - 1) [SACK] [cum ack 3848071495] [a_rwnd 57344] [#gap acks 0] [#dup tsns 0] -05:05:58.519224 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 128) - 192.168.1.143.6704 > 192.168.1.142.33985: sctp[ForCES HP] - 1) [DATA] (B)(E) [TSN: 918167007] [SID: 0] [SSEQ 2] [PPID 0x0] - ForCES Query - ForCES Version 1 len 80B flags 0xf8500000 - SrcID 0x40000003(CE) DstID 0x2(FE) Correlator 0x5 - ForCES flags: - AlwaysACK(0x3), prio=7, execute-all-or-none(0x1), - Standalone(0x0), EndofTransaction(0x2) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - - -05:05:58.719328 IP (tos 0x2,ECT(0), ttl 64, id 7, offset 0, flags [DF], proto SCTP (132), length 48) - 192.168.1.142.33985 > 192.168.1.143.6704: sctp[ForCES HP] - 1) [SACK] [cum ack 918167007] [a_rwnd 57344] [#gap acks 0] [#dup tsns 0] -05:05:59.293832 IP (tos 0x2,ECT(0), ttl 64, id 8, offset 0, flags [DF], proto SCTP (132), length 196) - 192.168.1.142.33985 > 192.168.1.143.6704: sctp[ForCES HP] - 1) [DATA] (B)(E) [TSN: 3848071496] [SID: 0] [SSEQ 2] [PPID 0x0] - ForCES Query Response - ForCES Version 1 len 148B flags 0x38500000 - SrcID 0x2(FE) DstID 0x40000003(CE) Correlator 0x5 - ForCES flags: - NoACK(0x0), prio=7, execute-all-or-none(0x1), - Standalone(0x0), EndofTransaction(0x2) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - - -05:05:59.494322 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 48) - 192.168.1.143.6704 > 192.168.1.142.33985: sctp[ForCES HP] - 1) [SACK] [cum ack 3848071496] [a_rwnd 57344] [#gap acks 0] [#dup tsns 0] -05:06:12.447511 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 72) - 192.168.1.143.6706 > 192.168.1.142.34521: sctp[ForCES LP] - 1) [DATA] (B)(E) [TSN: 1469124991] [SID: 0] [SSEQ 3] [PPID 0x0] - ForCES HeartBeat - ForCES Version 1 len 24B flags 0xc0100000 - SrcID 0x40000003(CE) DstID 0x2(FE) Correlator 0x6 - ForCES flags: - AlwaysACK(0x3), prio=0, EMReserved(0x0), - Standalone(0x0), EndofTransaction(0x2) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - - -05:06:12.613268 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.143.6704 > 192.168.1.142.33985: sctp[ForCES HP] - 1) [DATA] (B)(E) [TSN: 918167008] [SID: 0] [SSEQ 3] [PPID 0x0] - ForCES Association TearDown - ForCES Version 1 len 32B flags 0x38100000 - SrcID 0x40000003(CE) DstID 0x2(FE) Correlator 0x0 - ForCES flags: - NoACK(0x0), prio=7, EMReserved(0x0), - Standalone(0x0), EndofTransaction(0x2) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - - -05:06:12.646587 IP (tos 0x2,ECT(0), ttl 64, id 7, offset 0, flags [DF], proto SCTP (132), length 48) - 192.168.1.142.34521 > 192.168.1.143.6706: sctp[ForCES LP] - 1) [SACK] [cum ack 1469124991] [a_rwnd 57344] [#gap acks 0] [#dup tsns 0] -05:06:12.812720 IP (tos 0x2,ECT(0), ttl 64, id 9, offset 0, flags [DF], proto SCTP (132), length 48) - 192.168.1.142.33985 > 192.168.1.143.6704: sctp[ForCES HP] - 1) [SACK] [cum ack 918167008] [a_rwnd 57344] [#gap acks 0] [#dup tsns 0] -05:06:13.617136 IP (tos 0x2,ECT(0), ttl 64, id 10, offset 0, flags [DF], proto SCTP (132), length 40) - 192.168.1.142.33985 > 192.168.1.143.6704: sctp[ForCES HP] - 1) [SHUTDOWN] -05:06:13.617464 IP (tos 0x2,ECT(0), ttl 64, id 3, offset 0, flags [DF], proto SCTP (132), length 40) - 192.168.1.142.39555 > 192.168.1.143.6705: sctp[ForCES MP] - 1) [SHUTDOWN] -05:06:13.617602 IP (tos 0x2,ECT(0), ttl 64, id 8, offset 0, flags [DF], proto SCTP (132), length 40) - 192.168.1.142.34521 > 192.168.1.143.6706: sctp[ForCES LP] - 1) [SHUTDOWN] -05:06:13.617922 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 36) - 192.168.1.143.6704 > 192.168.1.142.33985: sctp[ForCES HP] - 1) [SHUTDOWN ACK] -05:06:13.618337 IP (tos 0x2,ECT(0), ttl 64, id 11, offset 0, flags [DF], proto SCTP (132), length 36) - 192.168.1.142.33985 > 192.168.1.143.6704: sctp[ForCES HP] - 1) [SHUTDOWN COMPLETE] -05:06:13.619459 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 36) - 192.168.1.143.6705 > 192.168.1.142.39555: sctp[ForCES MP] - 1) [SHUTDOWN ACK] -05:06:13.619484 IP (tos 0x2,ECT(0), ttl 64, id 4, offset 0, flags [DF], proto SCTP (132), length 36) - 192.168.1.142.39555 > 192.168.1.143.6705: sctp[ForCES MP] - 1) [SHUTDOWN COMPLETE] -05:06:13.619537 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 36) - 192.168.1.143.6706 > 192.168.1.142.34521: sctp[ForCES LP] - 1) [SHUTDOWN ACK] -05:06:13.619550 IP (tos 0x2,ECT(0), ttl 64, id 9, offset 0, flags [DF], proto SCTP (132), length 36) - 192.168.1.142.34521 > 192.168.1.143.6706: sctp[ForCES LP] - 1) [SHUTDOWN COMPLETE] -05:06:14.310789 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 68) - 192.168.1.142.59807 > 192.168.1.143.6704: sctp[ForCES HP] - 1) [INIT] [init tag: 648920342] [rwnd: 57344] [OS: 1] [MIS: 1] [init TSN: 3143112306] -05:06:14.311204 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 292) - 192.168.1.143.6704 > 192.168.1.142.59807: sctp[ForCES HP] - 1) [INIT ACK] [init tag: 3977131441] [rwnd: 57344] [OS: 1] [MIS: 1] [init TSN: 3691296472] -05:06:14.312029 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 264) - 192.168.1.142.59807 > 192.168.1.143.6704: sctp[ForCES HP] - 1) [COOKIE ECHO] -05:06:14.312276 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 36) - 192.168.1.143.6704 > 192.168.1.142.59807: sctp[ForCES HP] - 1) [COOKIE ACK] -05:06:15.314129 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 68) - 192.168.1.142.55497 > 192.168.1.143.6705: sctp[ForCES MP] - 1) [INIT] [init tag: 3941704218] [rwnd: 57344] [OS: 1] [MIS: 1] [init TSN: 2908637682] -05:06:15.314897 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 292) - 192.168.1.143.6705 > 192.168.1.142.55497: sctp[ForCES MP] - 1) [INIT ACK] [init tag: 2312011763] [rwnd: 57344] [OS: 1] [MIS: 1] [init TSN: 3797683222] -05:06:15.314939 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 264) - 192.168.1.142.55497 > 192.168.1.143.6705: sctp[ForCES MP] - 1) [COOKIE ECHO] -05:06:15.315192 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 36) - 192.168.1.143.6705 > 192.168.1.142.55497: sctp[ForCES MP] - 1) [COOKIE ACK] -05:06:16.316012 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 68) - 192.168.1.142.37985 > 192.168.1.143.6706: sctp[ForCES LP] - 1) [INIT] [init tag: 738970165] [rwnd: 57344] [OS: 1] [MIS: 1] [init TSN: 2249629206] -05:06:16.316410 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 292) - 192.168.1.143.6706 > 192.168.1.142.37985: sctp[ForCES LP] - 1) [INIT ACK] [init tag: 1998517320] [rwnd: 57344] [OS: 1] [MIS: 1] [init TSN: 1397847889] -05:06:16.316444 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 264) - 192.168.1.142.37985 > 192.168.1.143.6706: sctp[ForCES LP] - 1) [COOKIE ECHO] -05:06:16.316679 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 36) - 192.168.1.143.6706 > 192.168.1.142.37985: sctp[ForCES LP] - 1) [COOKIE ACK] -05:06:17.317412 IP (tos 0x2,ECT(0), ttl 64, id 1, offset 0, flags [DF], proto SCTP (132), length 72) - 192.168.1.142.59807 > 192.168.1.143.6704: sctp[ForCES HP] - 1) [DATA] (B)(E) [TSN: 3143112306] [SID: 0] [SSEQ 0] [PPID 0x0] - ForCES Association Setup - ForCES Version 1 len 24B flags 0xf8000000 - SrcID 0x2(FE) DstID 0x40000003(CE) Correlator 0x2 - ForCES flags: - AlwaysACK(0x3), prio=7, EMReserved(0x0), - Standalone(0x0), StartofTransaction(0x0) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - - -05:06:17.318437 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 48) - 192.168.1.143.6704 > 192.168.1.142.59807: sctp[ForCES HP] - 1) [SACK] [cum ack 3143112306] [a_rwnd 57320] [#gap acks 0] [#dup tsns 0] -05:06:17.332703 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.143.6704 > 192.168.1.142.59807: sctp[ForCES HP] - 1) [DATA] (B)(E) [TSN: 3691296472] [SID: 0] [SSEQ 0] [PPID 0x0] - ForCES Association Response - ForCES Version 1 len 32B flags 0x38100000 - SrcID 0x40000003(CE) DstID 0x2(FE) Correlator 0x2 - ForCES flags: - NoACK(0x0), prio=7, EMReserved(0x0), - Standalone(0x0), EndofTransaction(0x2) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - - -05:06:17.332763 IP (tos 0x2,ECT(0), ttl 64, id 2, offset 0, flags [DF], proto SCTP (132), length 48) - 192.168.1.142.59807 > 192.168.1.143.6704: sctp[ForCES HP] - 1) [SACK] [cum ack 3691296472] [a_rwnd 57312] [#gap acks 0] [#dup tsns 0] -05:06:17.334067 IP (tos 0x2,ECT(0), ttl 64, id 1, offset 0, flags [DF], proto SCTP (132), length 72) - 192.168.1.142.37985 > 192.168.1.143.6706: sctp[ForCES LP] - 1) [DATA] (B)(E) [TSN: 2249629206] [SID: 0] [SSEQ 0] [PPID 0x0] - ForCES HeartBeat - ForCES Version 1 len 24B flags 0x08000000 - SrcID 0x2(FE) DstID 0x40000003(CE) Correlator 0x6 - ForCES flags: - NoACK(0x0), prio=1, EMReserved(0x0), - Standalone(0x0), StartofTransaction(0x0) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - - -05:06:17.334681 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 48) - 192.168.1.143.6706 > 192.168.1.142.37985: sctp[ForCES LP] - 1) [SACK] [cum ack 2249629206] [a_rwnd 57320] [#gap acks 0] [#dup tsns 0] diff --git a/tests/forces2vvv.out b/tests/forces2vvv.out deleted file mode 100644 index 6a9bd5f..0000000 --- a/tests/forces2vvv.out +++ /dev/null @@ -1,751 +0,0 @@ -05:12:46.942414 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 68) - 192.168.1.142.53333 > 192.168.1.143.6704: sctp[ForCES HP] - 1) [INIT] [init tag: 2926667004] [rwnd: 57344] [OS: 1] [MIS: 1] [init TSN: 1498547998] -05:12:46.943161 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 292) - 192.168.1.143.6704 > 192.168.1.142.53333: sctp[ForCES HP] - 1) [INIT ACK] [init tag: 3861163764] [rwnd: 57344] [OS: 1] [MIS: 1] [init TSN: 2413889661] -05:12:46.943242 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 264) - 192.168.1.142.53333 > 192.168.1.143.6704: sctp[ForCES HP] - 1) [COOKIE ECHO] -05:12:46.943643 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 36) - 192.168.1.143.6704 > 192.168.1.142.53333: sctp[ForCES HP] - 1) [COOKIE ACK] -05:12:47.944776 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 68) - 192.168.1.142.48432 > 192.168.1.143.6705: sctp[ForCES MP] - 1) [INIT] [init tag: 3153359751] [rwnd: 57344] [OS: 1] [MIS: 1] [init TSN: 3738337023] -05:12:47.946163 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 292) - 192.168.1.143.6705 > 192.168.1.142.48432: sctp[ForCES MP] - 1) [INIT ACK] [init tag: 562272820] [rwnd: 57344] [OS: 1] [MIS: 1] [init TSN: 2275981483] -05:12:47.946319 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 264) - 192.168.1.142.48432 > 192.168.1.143.6705: sctp[ForCES MP] - 1) [COOKIE ECHO] -05:12:47.947214 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 36) - 192.168.1.143.6705 > 192.168.1.142.48432: sctp[ForCES MP] - 1) [COOKIE ACK] -05:12:48.948471 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 68) - 192.168.1.142.57793 > 192.168.1.143.6706: sctp[ForCES LP] - 1) [INIT] [init tag: 1637919099] [rwnd: 57344] [OS: 1] [MIS: 1] [init TSN: 922703190] -05:12:48.949179 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 292) - 192.168.1.143.6706 > 192.168.1.142.57793: sctp[ForCES LP] - 1) [INIT ACK] [init tag: 2538997808] [rwnd: 57344] [OS: 1] [MIS: 1] [init TSN: 2244318871] -05:12:48.949212 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 264) - 192.168.1.142.57793 > 192.168.1.143.6706: sctp[ForCES LP] - 1) [COOKIE ECHO] -05:12:48.950191 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 36) - 192.168.1.143.6706 > 192.168.1.142.57793: sctp[ForCES LP] - 1) [COOKIE ACK] -05:12:49.951610 IP (tos 0x2,ECT(0), ttl 64, id 1, offset 0, flags [DF], proto SCTP (132), length 72) - 192.168.1.142.53333 > 192.168.1.143.6704: sctp[ForCES HP] - 1) [DATA] (B)(E) [TSN: 1498547998] [SID: 0] [SSEQ 0] [PPID 0x0] - ForCES Association Setup - ForCES Version 1 len 24B flags 0xf8000000 - SrcID 0x2(FE) DstID 0x40000003(CE) Correlator 0x1 - ForCES flags: - AlwaysACK(0x3), prio=7, EMReserved(0x0), - Standalone(0x0), StartofTransaction(0x0) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - - -05:12:49.952213 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 48) - 192.168.1.143.6704 > 192.168.1.142.53333: sctp[ForCES HP] - 1) [SACK] [cum ack 1498547998] [a_rwnd 57320] [#gap acks 0] [#dup tsns 0] -05:12:49.983328 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.143.6704 > 192.168.1.142.53333: sctp[ForCES HP] - 1) [DATA] (B)(E) [TSN: 2413889661] [SID: 0] [SSEQ 0] [PPID 0x0] - ForCES Association Response - ForCES Version 1 len 32B flags 0x38100000 - SrcID 0x40000003(CE) DstID 0x2(FE) Correlator 0x1 - ForCES flags: - NoACK(0x0), prio=7, EMReserved(0x0), - Standalone(0x0), EndofTransaction(0x2) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - - -05:12:49.983414 IP (tos 0x2,ECT(0), ttl 64, id 2, offset 0, flags [DF], proto SCTP (132), length 48) - 192.168.1.142.53333 > 192.168.1.143.6704: sctp[ForCES HP] - 1) [SACK] [cum ack 2413889661] [a_rwnd 57312] [#gap acks 0] [#dup tsns 0] -05:13:09.990457 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 72) - 192.168.1.143.6706 > 192.168.1.142.57793: sctp[ForCES LP] - 1) [DATA] (B)(E) [TSN: 2244318871] [SID: 0] [SSEQ 0] [PPID 0x0] - ForCES HeartBeat - ForCES Version 1 len 24B flags 0xc0100000 - SrcID 0x40000003(CE) DstID 0x2(FE) Correlator 0x1 - ForCES flags: - AlwaysACK(0x3), prio=0, EMReserved(0x0), - Standalone(0x0), EndofTransaction(0x2) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - - -05:13:09.990576 IP (tos 0x2,ECT(0), ttl 64, id 1, offset 0, flags [DF], proto SCTP (132), length 48) - 192.168.1.142.57793 > 192.168.1.143.6706: sctp[ForCES LP] - 1) [SACK] [cum ack 2244318871] [a_rwnd 57320] [#gap acks 0] [#dup tsns 0] -05:13:10.977285 IP (tos 0x2,ECT(0), ttl 64, id 2, offset 0, flags [DF], proto SCTP (132), length 72) - 192.168.1.142.57793 > 192.168.1.143.6706: sctp[ForCES LP] - 1) [DATA] (B)(E) [TSN: 922703190] [SID: 0] [SSEQ 0] [PPID 0x0] - ForCES HeartBeat - ForCES Version 1 len 24B flags 0x08000000 - SrcID 0x2(FE) DstID 0x40000003(CE) Correlator 0x1 - ForCES flags: - NoACK(0x0), prio=1, EMReserved(0x0), - Standalone(0x0), StartofTransaction(0x0) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - - -05:13:10.977790 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 48) - 192.168.1.143.6706 > 192.168.1.142.57793: sctp[ForCES LP] - 1) [SACK] [cum ack 922703190] [a_rwnd 57320] [#gap acks 0] [#dup tsns 0] -05:13:20.110083 IP (tos 0x2,ECT(0), ttl 64, id 1, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.142.48432 > 192.168.1.143.6705: sctp[ForCES MP] - 1) [HB REQ] -05:13:20.110531 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.143.6705 > 192.168.1.142.48432: sctp[ForCES MP] - 1) [HB ACK] -05:13:20.668242 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.143.6705 > 192.168.1.142.48432: sctp[ForCES MP] - 1) [HB REQ] -05:13:20.668307 IP (tos 0x2,ECT(0), ttl 64, id 2, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.142.48432 > 192.168.1.143.6705: sctp[ForCES MP] - 1) [HB ACK] -05:13:21.822790 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.143.6704 > 192.168.1.142.53333: sctp[ForCES HP] - 1) [HB REQ] -05:13:21.822849 IP (tos 0x2,ECT(0), ttl 64, id 3, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.142.53333 > 192.168.1.143.6704: sctp[ForCES HP] - 1) [HB ACK] -05:13:22.926155 IP (tos 0x2,ECT(0), ttl 64, id 4, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.142.53333 > 192.168.1.143.6704: sctp[ForCES HP] - 1) [HB REQ] -05:13:22.926561 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.143.6704 > 192.168.1.142.53333: sctp[ForCES HP] - 1) [HB ACK] -05:13:30.012956 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 72) - 192.168.1.143.6706 > 192.168.1.142.57793: sctp[ForCES LP] - 1) [DATA] (B)(E) [TSN: 2244318872] [SID: 0] [SSEQ 1] [PPID 0x0] - ForCES HeartBeat - ForCES Version 1 len 24B flags 0xc0100000 - SrcID 0x40000003(CE) DstID 0x2(FE) Correlator 0x2 - ForCES flags: - AlwaysACK(0x3), prio=0, EMReserved(0x0), - Standalone(0x0), EndofTransaction(0x2) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - - -05:13:30.213362 IP (tos 0x2,ECT(0), ttl 64, id 3, offset 0, flags [DF], proto SCTP (132), length 48) - 192.168.1.142.57793 > 192.168.1.143.6706: sctp[ForCES LP] - 1) [SACK] [cum ack 2244318872] [a_rwnd 57344] [#gap acks 0] [#dup tsns 0] -05:13:30.998747 IP (tos 0x2,ECT(0), ttl 64, id 4, offset 0, flags [DF], proto SCTP (132), length 72) - 192.168.1.142.57793 > 192.168.1.143.6706: sctp[ForCES LP] - 1) [DATA] (B)(E) [TSN: 922703191] [SID: 0] [SSEQ 1] [PPID 0x0] - ForCES HeartBeat - ForCES Version 1 len 24B flags 0x08000000 - SrcID 0x2(FE) DstID 0x40000003(CE) Correlator 0x2 - ForCES flags: - NoACK(0x0), prio=1, EMReserved(0x0), - Standalone(0x0), StartofTransaction(0x0) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - - -05:13:31.199633 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 48) - 192.168.1.143.6706 > 192.168.1.142.57793: sctp[ForCES LP] - 1) [SACK] [cum ack 922703191] [a_rwnd 57344] [#gap acks 0] [#dup tsns 0] -05:13:50.022950 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 72) - 192.168.1.143.6706 > 192.168.1.142.57793: sctp[ForCES LP] - 1) [DATA] (B)(E) [TSN: 2244318873] [SID: 0] [SSEQ 2] [PPID 0x0] - ForCES HeartBeat - ForCES Version 1 len 24B flags 0xc0100000 - SrcID 0x40000003(CE) DstID 0x2(FE) Correlator 0x3 - ForCES flags: - AlwaysACK(0x3), prio=0, EMReserved(0x0), - Standalone(0x0), EndofTransaction(0x2) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - - -05:13:50.222804 IP (tos 0x2,ECT(0), ttl 64, id 5, offset 0, flags [DF], proto SCTP (132), length 48) - 192.168.1.142.57793 > 192.168.1.143.6706: sctp[ForCES LP] - 1) [SACK] [cum ack 2244318873] [a_rwnd 57344] [#gap acks 0] [#dup tsns 0] -05:13:50.957859 IP (tos 0x2,ECT(0), ttl 64, id 3, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.142.48432 > 192.168.1.143.6705: sctp[ForCES MP] - 1) [HB REQ] -05:13:50.958254 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.143.6705 > 192.168.1.142.48432: sctp[ForCES MP] - 1) [HB ACK] -05:13:51.017217 IP (tos 0x2,ECT(0), ttl 64, id 6, offset 0, flags [DF], proto SCTP (132), length 72) - 192.168.1.142.57793 > 192.168.1.143.6706: sctp[ForCES LP] - 1) [DATA] (B)(E) [TSN: 922703192] [SID: 0] [SSEQ 2] [PPID 0x0] - ForCES HeartBeat - ForCES Version 1 len 24B flags 0x08000000 - SrcID 0x2(FE) DstID 0x40000003(CE) Correlator 0x3 - ForCES flags: - NoACK(0x0), prio=1, EMReserved(0x0), - Standalone(0x0), StartofTransaction(0x0) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - - -05:13:51.218065 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 48) - 192.168.1.143.6706 > 192.168.1.142.57793: sctp[ForCES LP] - 1) [SACK] [cum ack 922703192] [a_rwnd 57344] [#gap acks 0] [#dup tsns 0] -05:13:52.029041 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.143.6705 > 192.168.1.142.48432: sctp[ForCES MP] - 1) [HB REQ] -05:13:52.029131 IP (tos 0x2,ECT(0), ttl 64, id 4, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.142.48432 > 192.168.1.143.6705: sctp[ForCES MP] - 1) [HB ACK] -05:13:52.668078 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.143.6704 > 192.168.1.142.53333: sctp[ForCES HP] - 1) [HB REQ] -05:13:52.668129 IP (tos 0x2,ECT(0), ttl 64, id 5, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.142.53333 > 192.168.1.143.6704: sctp[ForCES HP] - 1) [HB ACK] -05:13:54.157975 IP (tos 0x2,ECT(0), ttl 64, id 6, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.142.53333 > 192.168.1.143.6704: sctp[ForCES HP] - 1) [HB REQ] -05:13:54.158408 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.143.6704 > 192.168.1.142.53333: sctp[ForCES HP] - 1) [HB ACK] -05:14:10.034601 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 72) - 192.168.1.143.6706 > 192.168.1.142.57793: sctp[ForCES LP] - 1) [DATA] (B)(E) [TSN: 2244318874] [SID: 0] [SSEQ 3] [PPID 0x0] - ForCES HeartBeat - ForCES Version 1 len 24B flags 0xc0100000 - SrcID 0x40000003(CE) DstID 0x2(FE) Correlator 0x4 - ForCES flags: - AlwaysACK(0x3), prio=0, EMReserved(0x0), - Standalone(0x0), EndofTransaction(0x2) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - - -05:14:10.036750 IP (tos 0x2,ECT(0), ttl 64, id 7, offset 0, flags [DF], proto SCTP (132), length 88) - 192.168.1.142.57793 > 192.168.1.143.6706: sctp[ForCES LP] - 1) [SACK] [cum ack 2244318874] [a_rwnd 57344] [#gap acks 0] [#dup tsns 0] - 2) [DATA] (B)(E) [TSN: 922703193] [SID: 0] [SSEQ 3] [PPID 0x0] - ForCES HeartBeat - ForCES Version 1 len 24B flags 0x08000000 - SrcID 0x2(FE) DstID 0x40000003(CE) Correlator 0x4 - ForCES flags: - NoACK(0x0), prio=1, EMReserved(0x0), - Standalone(0x0), StartofTransaction(0x0) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - - -05:14:10.237566 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 48) - 192.168.1.143.6706 > 192.168.1.142.57793: sctp[ForCES LP] - 1) [SACK] [cum ack 922703193] [a_rwnd 57344] [#gap acks 0] [#dup tsns 0] -05:14:22.318623 IP (tos 0x2,ECT(0), ttl 64, id 5, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.142.48432 > 192.168.1.143.6705: sctp[ForCES MP] - 1) [HB REQ] -05:14:22.319118 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.143.6705 > 192.168.1.142.48432: sctp[ForCES MP] - 1) [HB ACK] -05:14:23.004801 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.143.6705 > 192.168.1.142.48432: sctp[ForCES MP] - 1) [HB REQ] -05:14:23.004855 IP (tos 0x2,ECT(0), ttl 64, id 6, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.142.48432 > 192.168.1.143.6705: sctp[ForCES MP] - 1) [HB ACK] -05:14:23.644941 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.143.6704 > 192.168.1.142.53333: sctp[ForCES HP] - 1) [HB REQ] -05:14:23.645019 IP (tos 0x2,ECT(0), ttl 64, id 7, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.142.53333 > 192.168.1.143.6704: sctp[ForCES HP] - 1) [HB ACK] -05:14:25.517659 IP (tos 0x2,ECT(0), ttl 64, id 8, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.142.53333 > 192.168.1.143.6704: sctp[ForCES HP] - 1) [HB REQ] -05:14:25.518177 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.143.6704 > 192.168.1.142.53333: sctp[ForCES HP] - 1) [HB ACK] -05:14:30.056428 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 72) - 192.168.1.143.6706 > 192.168.1.142.57793: sctp[ForCES LP] - 1) [DATA] (B)(E) [TSN: 2244318875] [SID: 0] [SSEQ 4] [PPID 0x0] - ForCES HeartBeat - ForCES Version 1 len 24B flags 0xc0100000 - SrcID 0x40000003(CE) DstID 0x2(FE) Correlator 0x5 - ForCES flags: - AlwaysACK(0x3), prio=0, EMReserved(0x0), - Standalone(0x0), EndofTransaction(0x2) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - - -05:14:30.058780 IP (tos 0x2,ECT(0), ttl 64, id 8, offset 0, flags [DF], proto SCTP (132), length 88) - 192.168.1.142.57793 > 192.168.1.143.6706: sctp[ForCES LP] - 1) [SACK] [cum ack 2244318875] [a_rwnd 57344] [#gap acks 0] [#dup tsns 0] - 2) [DATA] (B)(E) [TSN: 922703194] [SID: 0] [SSEQ 4] [PPID 0x0] - ForCES HeartBeat - ForCES Version 1 len 24B flags 0x08000000 - SrcID 0x2(FE) DstID 0x40000003(CE) Correlator 0x5 - ForCES flags: - NoACK(0x0), prio=1, EMReserved(0x0), - Standalone(0x0), StartofTransaction(0x0) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - - -05:14:30.260069 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 48) - 192.168.1.143.6706 > 192.168.1.142.57793: sctp[ForCES LP] - 1) [SACK] [cum ack 922703194] [a_rwnd 57344] [#gap acks 0] [#dup tsns 0] -05:14:50.070392 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 72) - 192.168.1.143.6706 > 192.168.1.142.57793: sctp[ForCES LP] - 1) [DATA] (B)(E) [TSN: 2244318876] [SID: 0] [SSEQ 5] [PPID 0x0] - ForCES HeartBeat - ForCES Version 1 len 24B flags 0xc0100000 - SrcID 0x40000003(CE) DstID 0x2(FE) Correlator 0x6 - ForCES flags: - AlwaysACK(0x3), prio=0, EMReserved(0x0), - Standalone(0x0), EndofTransaction(0x2) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - - -05:14:50.078619 IP (tos 0x2,ECT(0), ttl 64, id 9, offset 0, flags [DF], proto SCTP (132), length 88) - 192.168.1.142.57793 > 192.168.1.143.6706: sctp[ForCES LP] - 1) [SACK] [cum ack 2244318876] [a_rwnd 57344] [#gap acks 0] [#dup tsns 0] - 2) [DATA] (B)(E) [TSN: 922703195] [SID: 0] [SSEQ 5] [PPID 0x0] - ForCES HeartBeat - ForCES Version 1 len 24B flags 0x08000000 - SrcID 0x2(FE) DstID 0x40000003(CE) Correlator 0x6 - ForCES flags: - NoACK(0x0), prio=1, EMReserved(0x0), - Standalone(0x0), StartofTransaction(0x0) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - - -05:14:50.278482 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 48) - 192.168.1.143.6706 > 192.168.1.142.57793: sctp[ForCES LP] - 1) [SACK] [cum ack 922703195] [a_rwnd 57344] [#gap acks 0] [#dup tsns 0] -05:14:52.910320 IP (tos 0x2,ECT(0), ttl 64, id 7, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.142.48432 > 192.168.1.143.6705: sctp[ForCES MP] - 1) [HB REQ] -05:14:52.910757 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.143.6705 > 192.168.1.142.48432: sctp[ForCES MP] - 1) [HB ACK] -05:14:54.236596 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.143.6705 > 192.168.1.142.48432: sctp[ForCES MP] - 1) [HB REQ] -05:14:54.236684 IP (tos 0x2,ECT(0), ttl 64, id 8, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.142.48432 > 192.168.1.143.6705: sctp[ForCES MP] - 1) [HB ACK] -05:14:54.236747 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.143.6704 > 192.168.1.142.53333: sctp[ForCES HP] - 1) [HB REQ] -05:14:54.236765 IP (tos 0x2,ECT(0), ttl 64, id 9, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.142.53333 > 192.168.1.143.6704: sctp[ForCES HP] - 1) [HB ACK] -05:14:56.494447 IP (tos 0x2,ECT(0), ttl 64, id 10, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.142.53333 > 192.168.1.143.6704: sctp[ForCES HP] - 1) [HB REQ] -05:14:56.494903 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.143.6704 > 192.168.1.142.53333: sctp[ForCES HP] - 1) [HB ACK] -05:15:10.087164 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 72) - 192.168.1.143.6706 > 192.168.1.142.57793: sctp[ForCES LP] - 1) [DATA] (B)(E) [TSN: 2244318877] [SID: 0] [SSEQ 6] [PPID 0x0] - ForCES HeartBeat - ForCES Version 1 len 24B flags 0xc0100000 - SrcID 0x40000003(CE) DstID 0x2(FE) Correlator 0x7 - ForCES flags: - AlwaysACK(0x3), prio=0, EMReserved(0x0), - Standalone(0x0), EndofTransaction(0x2) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - - -05:15:10.099646 IP (tos 0x2,ECT(0), ttl 64, id 10, offset 0, flags [DF], proto SCTP (132), length 88) - 192.168.1.142.57793 > 192.168.1.143.6706: sctp[ForCES LP] - 1) [SACK] [cum ack 2244318877] [a_rwnd 57344] [#gap acks 0] [#dup tsns 0] - 2) [DATA] (B)(E) [TSN: 922703196] [SID: 0] [SSEQ 6] [PPID 0x0] - ForCES HeartBeat - ForCES Version 1 len 24B flags 0x08000000 - SrcID 0x2(FE) DstID 0x40000003(CE) Correlator 0x7 - ForCES flags: - NoACK(0x0), prio=1, EMReserved(0x0), - Standalone(0x0), StartofTransaction(0x0) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - - -05:15:10.300908 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 48) - 192.168.1.143.6706 > 192.168.1.142.57793: sctp[ForCES LP] - 1) [SACK] [cum ack 922703196] [a_rwnd 57344] [#gap acks 0] [#dup tsns 0] -05:15:24.142057 IP (tos 0x2,ECT(0), ttl 64, id 9, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.142.48432 > 192.168.1.143.6705: sctp[ForCES MP] - 1) [HB REQ] -05:15:24.142436 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.143.6705 > 192.168.1.142.48432: sctp[ForCES MP] - 1) [HB ACK] -05:15:25.468346 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.143.6705 > 192.168.1.142.48432: sctp[ForCES MP] - 1) [HB REQ] -05:15:25.468420 IP (tos 0x2,ECT(0), ttl 64, id 10, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.142.48432 > 192.168.1.143.6705: sctp[ForCES MP] - 1) [HB ACK] -05:15:25.724070 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.143.6704 > 192.168.1.142.53333: sctp[ForCES HP] - 1) [HB REQ] -05:15:25.724132 IP (tos 0x2,ECT(0), ttl 64, id 11, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.142.53333 > 192.168.1.143.6704: sctp[ForCES HP] - 1) [HB ACK] -05:15:27.854217 IP (tos 0x2,ECT(0), ttl 64, id 12, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.142.53333 > 192.168.1.143.6704: sctp[ForCES HP] - 1) [HB REQ] -05:15:27.854637 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.143.6704 > 192.168.1.142.53333: sctp[ForCES HP] - 1) [HB ACK] -05:15:30.103924 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 72) - 192.168.1.143.6706 > 192.168.1.142.57793: sctp[ForCES LP] - 1) [DATA] (B)(E) [TSN: 2244318878] [SID: 0] [SSEQ 7] [PPID 0x0] - ForCES HeartBeat - ForCES Version 1 len 24B flags 0xc0100000 - SrcID 0x40000003(CE) DstID 0x2(FE) Correlator 0x8 - ForCES flags: - AlwaysACK(0x3), prio=0, EMReserved(0x0), - Standalone(0x0), EndofTransaction(0x2) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - - -05:15:30.121626 IP (tos 0x2,ECT(0), ttl 64, id 11, offset 0, flags [DF], proto SCTP (132), length 88) - 192.168.1.142.57793 > 192.168.1.143.6706: sctp[ForCES LP] - 1) [SACK] [cum ack 2244318878] [a_rwnd 57344] [#gap acks 0] [#dup tsns 0] - 2) [DATA] (B)(E) [TSN: 922703197] [SID: 0] [SSEQ 7] [PPID 0x0] - ForCES HeartBeat - ForCES Version 1 len 24B flags 0x08000000 - SrcID 0x2(FE) DstID 0x40000003(CE) Correlator 0x8 - ForCES flags: - NoACK(0x0), prio=1, EMReserved(0x0), - Standalone(0x0), StartofTransaction(0x0) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - - -05:15:30.322461 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 48) - 192.168.1.143.6706 > 192.168.1.142.57793: sctp[ForCES LP] - 1) [SACK] [cum ack 922703197] [a_rwnd 57344] [#gap acks 0] [#dup tsns 0] -05:15:50.116903 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 72) - 192.168.1.143.6706 > 192.168.1.142.57793: sctp[ForCES LP] - 1) [DATA] (B)(E) [TSN: 2244318879] [SID: 0] [SSEQ 8] [PPID 0x0] - ForCES HeartBeat - ForCES Version 1 len 24B flags 0xc0100000 - SrcID 0x40000003(CE) DstID 0x2(FE) Correlator 0x9 - ForCES flags: - AlwaysACK(0x3), prio=0, EMReserved(0x0), - Standalone(0x0), EndofTransaction(0x2) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - - -05:15:50.141079 IP (tos 0x2,ECT(0), ttl 64, id 12, offset 0, flags [DF], proto SCTP (132), length 88) - 192.168.1.142.57793 > 192.168.1.143.6706: sctp[ForCES LP] - 1) [SACK] [cum ack 2244318879] [a_rwnd 57344] [#gap acks 0] [#dup tsns 0] - 2) [DATA] (B)(E) [TSN: 922703198] [SID: 0] [SSEQ 8] [PPID 0x0] - ForCES HeartBeat - ForCES Version 1 len 24B flags 0x08000000 - SrcID 0x2(FE) DstID 0x40000003(CE) Correlator 0x9 - ForCES flags: - NoACK(0x0), prio=1, EMReserved(0x0), - Standalone(0x0), StartofTransaction(0x0) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - - -05:15:50.341982 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 48) - 192.168.1.143.6706 > 192.168.1.142.57793: sctp[ForCES LP] - 1) [SACK] [cum ack 922703198] [a_rwnd 57344] [#gap acks 0] [#dup tsns 0] -05:15:51.957705 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 140) - 192.168.1.143.6704 > 192.168.1.142.53333: sctp[ForCES HP] - 1) [DATA] (B)(E) [TSN: 2413889662] [SID: 0] [SSEQ 1] [PPID 0x0] - ForCES Config - ForCES Version 1 len 92B flags 0x78400000 - SrcID 0x40000003(CE) DstID 0x2(FE) Correlator 0x10 - ForCES flags: - SuccessACK(0x1), prio=7, execute-all-or-none(0x1), - Standalone(0x0), StartofTransaction(0x0) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - - -05:15:52.144354 IP (tos 0x2,ECT(0), ttl 64, id 13, offset 0, flags [DF], proto SCTP (132), length 156) - 192.168.1.142.53333 > 192.168.1.143.6704: sctp[ForCES HP] - 1) [SACK] [cum ack 2413889662] [a_rwnd 57344] [#gap acks 0] [#dup tsns 0] - 2) [DATA] (B)(E) [TSN: 1498547999] [SID: 0] [SSEQ 1] [PPID 0x0] - ForCES Config Response - ForCES Version 1 len 92B flags 0x38400000 - SrcID 0x2(FE) DstID 0x40000003(CE) Correlator 0x10 - ForCES flags: - NoACK(0x0), prio=7, execute-all-or-none(0x1), - Standalone(0x0), StartofTransaction(0x0) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - - -05:15:52.344974 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 48) - 192.168.1.143.6704 > 192.168.1.142.53333: sctp[ForCES HP] - 1) [SACK] [cum ack 1498547999] [a_rwnd 57344] [#gap acks 0] [#dup tsns 0] -05:15:55.629842 IP (tos 0x2,ECT(0), ttl 64, id 11, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.142.48432 > 192.168.1.143.6705: sctp[ForCES MP] - 1) [HB REQ] -05:15:55.630342 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.143.6705 > 192.168.1.142.48432: sctp[ForCES MP] - 1) [HB ACK] -05:15:56.189088 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.143.6705 > 192.168.1.142.48432: sctp[ForCES MP] - 1) [HB REQ] -05:15:56.189160 IP (tos 0x2,ECT(0), ttl 64, id 12, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.142.48432 > 192.168.1.143.6705: sctp[ForCES MP] - 1) [HB ACK] -05:16:11.972673 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 72) - 192.168.1.143.6706 > 192.168.1.142.57793: sctp[ForCES LP] - 1) [DATA] (B)(E) [TSN: 2244318880] [SID: 0] [SSEQ 9] [PPID 0x0] - ForCES HeartBeat - ForCES Version 1 len 24B flags 0xc0100000 - SrcID 0x40000003(CE) DstID 0x2(FE) Correlator 0x11 - ForCES flags: - AlwaysACK(0x3), prio=0, EMReserved(0x0), - Standalone(0x0), EndofTransaction(0x2) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - - -05:16:12.163738 IP (tos 0x2,ECT(0), ttl 64, id 13, offset 0, flags [DF], proto SCTP (132), length 88) - 192.168.1.142.57793 > 192.168.1.143.6706: sctp[ForCES LP] - 1) [SACK] [cum ack 2244318880] [a_rwnd 57344] [#gap acks 0] [#dup tsns 0] - 2) [DATA] (B)(E) [TSN: 922703199] [SID: 0] [SSEQ 9] [PPID 0x0] - ForCES HeartBeat - ForCES Version 1 len 24B flags 0x08000000 - SrcID 0x2(FE) DstID 0x40000003(CE) Correlator 0x11 - ForCES flags: - NoACK(0x0), prio=1, EMReserved(0x0), - Standalone(0x0), StartofTransaction(0x0) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - - -05:16:12.364365 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 48) - 192.168.1.143.6706 > 192.168.1.142.57793: sctp[ForCES LP] - 1) [SACK] [cum ack 922703199] [a_rwnd 57344] [#gap acks 0] [#dup tsns 0] -05:16:22.766463 IP (tos 0x2,ECT(0), ttl 64, id 14, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.142.53333 > 192.168.1.143.6704: sctp[ForCES HP] - 1) [HB REQ] -05:16:22.766888 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.143.6704 > 192.168.1.142.53333: sctp[ForCES HP] - 1) [HB ACK] -05:16:22.812607 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.143.6704 > 192.168.1.142.53333: sctp[ForCES HP] - 1) [HB REQ] -05:16:22.812641 IP (tos 0x2,ECT(0), ttl 64, id 15, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.142.53333 > 192.168.1.143.6704: sctp[ForCES HP] - 1) [HB ACK] -05:16:26.908770 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.143.6705 > 192.168.1.142.48432: sctp[ForCES MP] - 1) [HB REQ] -05:16:26.908850 IP (tos 0x2,ECT(0), ttl 64, id 13, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.142.48432 > 192.168.1.143.6705: sctp[ForCES MP] - 1) [HB ACK] -05:16:27.118570 IP (tos 0x2,ECT(0), ttl 64, id 14, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.142.48432 > 192.168.1.143.6705: sctp[ForCES MP] - 1) [HB REQ] -05:16:27.118998 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.143.6705 > 192.168.1.142.48432: sctp[ForCES MP] - 1) [HB ACK] -05:16:31.990056 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 72) - 192.168.1.143.6706 > 192.168.1.142.57793: sctp[ForCES LP] - 1) [DATA] (B)(E) [TSN: 2244318881] [SID: 0] [SSEQ 10] [PPID 0x0] - ForCES HeartBeat - ForCES Version 1 len 24B flags 0xc0100000 - SrcID 0x40000003(CE) DstID 0x2(FE) Correlator 0x12 - ForCES flags: - AlwaysACK(0x3), prio=0, EMReserved(0x0), - Standalone(0x0), EndofTransaction(0x2) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - - -05:16:32.184118 IP (tos 0x2,ECT(0), ttl 64, id 14, offset 0, flags [DF], proto SCTP (132), length 88) - 192.168.1.142.57793 > 192.168.1.143.6706: sctp[ForCES LP] - 1) [SACK] [cum ack 2244318881] [a_rwnd 57344] [#gap acks 0] [#dup tsns 0] - 2) [DATA] (B)(E) [TSN: 922703200] [SID: 0] [SSEQ 10] [PPID 0x0] - ForCES HeartBeat - ForCES Version 1 len 24B flags 0x08000000 - SrcID 0x2(FE) DstID 0x40000003(CE) Correlator 0x12 - ForCES flags: - NoACK(0x0), prio=1, EMReserved(0x0), - Standalone(0x0), StartofTransaction(0x0) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - - -05:16:32.384948 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 48) - 192.168.1.143.6706 > 192.168.1.142.57793: sctp[ForCES LP] - 1) [SACK] [cum ack 922703200] [a_rwnd 57344] [#gap acks 0] [#dup tsns 0] -05:16:52.009081 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 72) - 192.168.1.143.6706 > 192.168.1.142.57793: sctp[ForCES LP] - 1) [DATA] (B)(E) [TSN: 2244318882] [SID: 0] [SSEQ 11] [PPID 0x0] - ForCES HeartBeat - ForCES Version 1 len 24B flags 0xc0100000 - SrcID 0x40000003(CE) DstID 0x2(FE) Correlator 0x13 - ForCES flags: - AlwaysACK(0x3), prio=0, EMReserved(0x0), - Standalone(0x0), EndofTransaction(0x2) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - - -05:16:52.205727 IP (tos 0x2,ECT(0), ttl 64, id 15, offset 0, flags [DF], proto SCTP (132), length 88) - 192.168.1.142.57793 > 192.168.1.143.6706: sctp[ForCES LP] - 1) [SACK] [cum ack 2244318882] [a_rwnd 57344] [#gap acks 0] [#dup tsns 0] - 2) [DATA] (B)(E) [TSN: 922703201] [SID: 0] [SSEQ 11] [PPID 0x0] - ForCES HeartBeat - ForCES Version 1 len 24B flags 0x08000000 - SrcID 0x2(FE) DstID 0x40000003(CE) Correlator 0x13 - ForCES flags: - NoACK(0x0), prio=1, EMReserved(0x0), - Standalone(0x0), StartofTransaction(0x0) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - - -05:16:52.406443 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 48) - 192.168.1.143.6706 > 192.168.1.142.57793: sctp[ForCES LP] - 1) [SACK] [cum ack 922703201] [a_rwnd 57344] [#gap acks 0] [#dup tsns 0] -05:16:53.532328 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.143.6704 > 192.168.1.142.53333: sctp[ForCES HP] - 1) [HB REQ] -05:16:53.532396 IP (tos 0x2,ECT(0), ttl 64, id 16, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.142.53333 > 192.168.1.143.6704: sctp[ForCES HP] - 1) [HB ACK] -05:16:53.998215 IP (tos 0x2,ECT(0), ttl 64, id 17, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.142.53333 > 192.168.1.143.6704: sctp[ForCES HP] - 1) [HB REQ] -05:16:53.998632 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.143.6704 > 192.168.1.142.53333: sctp[ForCES HP] - 1) [HB ACK] -05:16:57.965660 IP (tos 0x2,ECT(0), ttl 64, id 15, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.142.48432 > 192.168.1.143.6705: sctp[ForCES MP] - 1) [HB REQ] -05:16:57.966179 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.143.6705 > 192.168.1.142.48432: sctp[ForCES MP] - 1) [HB ACK] -05:16:58.268666 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.143.6705 > 192.168.1.142.48432: sctp[ForCES MP] - 1) [HB REQ] -05:16:58.268737 IP (tos 0x2,ECT(0), ttl 64, id 16, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.142.48432 > 192.168.1.143.6705: sctp[ForCES MP] - 1) [HB ACK] -05:16:58.751669 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 124) - 192.168.1.143.6704 > 192.168.1.142.53333: sctp[ForCES HP] - 1) [DATA] (B)(E) [TSN: 2413889663] [SID: 0] [SSEQ 2] [PPID 0x0] - ForCES Query - ForCES Version 1 len 76B flags 0x78400000 - SrcID 0x40000003(CE) DstID 0x2(FE) Correlator 0x14 - ForCES flags: - SuccessACK(0x1), prio=7, execute-all-or-none(0x1), - Standalone(0x0), StartofTransaction(0x0) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - - -05:16:58.952418 IP (tos 0x2,ECT(0), ttl 64, id 18, offset 0, flags [DF], proto SCTP (132), length 48) - 192.168.1.142.53333 > 192.168.1.143.6704: sctp[ForCES HP] - 1) [SACK] [cum ack 2413889663] [a_rwnd 57344] [#gap acks 0] [#dup tsns 0] -05:16:59.213890 IP (tos 0x2,ECT(0), ttl 64, id 19, offset 0, flags [DF], proto SCTP (132), length 140) - 192.168.1.142.53333 > 192.168.1.143.6704: sctp[ForCES HP] - 1) [DATA] (B)(E) [TSN: 1498548000] [SID: 0] [SSEQ 2] [PPID 0x0] - ForCES Query Response - ForCES Version 1 len 92B flags 0x38400000 - SrcID 0x2(FE) DstID 0x40000003(CE) Correlator 0x14 - ForCES flags: - NoACK(0x0), prio=7, execute-all-or-none(0x1), - Standalone(0x0), StartofTransaction(0x0) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - - -05:16:59.414572 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 48) - 192.168.1.143.6704 > 192.168.1.142.53333: sctp[ForCES HP] - 1) [SACK] [cum ack 1498548000] [a_rwnd 57344] [#gap acks 0] [#dup tsns 0] -05:17:06.275584 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 80) - 192.168.1.143.6704 > 192.168.1.142.53333: sctp[ForCES HP] - 1) [DATA] (B)(E) [TSN: 2413889664] [SID: 0] [SSEQ 3] [PPID 0x0] - ForCES Association TearDown - ForCES Version 1 len 32B flags 0x38100000 - SrcID 0x40000003(CE) DstID 0x2(FE) Correlator 0x0 - ForCES flags: - NoACK(0x0), prio=7, EMReserved(0x0), - Standalone(0x0), EndofTransaction(0x2) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - - -05:17:06.475558 IP (tos 0x2,ECT(0), ttl 64, id 20, offset 0, flags [DF], proto SCTP (132), length 48) - 192.168.1.142.53333 > 192.168.1.143.6704: sctp[ForCES HP] - 1) [SACK] [cum ack 2413889664] [a_rwnd 57344] [#gap acks 0] [#dup tsns 0] -05:17:07.278281 IP (tos 0x2,ECT(0), ttl 64, id 21, offset 0, flags [DF], proto SCTP (132), length 40) - 192.168.1.142.53333 > 192.168.1.143.6704: sctp[ForCES HP] - 1) [SHUTDOWN] -05:17:07.278648 IP (tos 0x2,ECT(0), ttl 64, id 17, offset 0, flags [DF], proto SCTP (132), length 40) - 192.168.1.142.48432 > 192.168.1.143.6705: sctp[ForCES MP] - 1) [SHUTDOWN] -05:17:07.278805 IP (tos 0x2,ECT(0), ttl 64, id 16, offset 0, flags [DF], proto SCTP (132), length 40) - 192.168.1.142.57793 > 192.168.1.143.6706: sctp[ForCES LP] - 1) [SHUTDOWN] -05:17:07.278894 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 36) - 192.168.1.143.6704 > 192.168.1.142.53333: sctp[ForCES HP] - 1) [SHUTDOWN ACK] -05:17:07.278986 IP (tos 0x2,ECT(0), ttl 64, id 22, offset 0, flags [DF], proto SCTP (132), length 36) - 192.168.1.142.53333 > 192.168.1.143.6704: sctp[ForCES HP] - 1) [SHUTDOWN COMPLETE] -05:17:07.279062 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 36) - 192.168.1.143.6705 > 192.168.1.142.48432: sctp[ForCES MP] - 1) [SHUTDOWN ACK] -05:17:07.279086 IP (tos 0x2,ECT(0), ttl 64, id 18, offset 0, flags [DF], proto SCTP (132), length 36) - 192.168.1.142.48432 > 192.168.1.143.6705: sctp[ForCES MP] - 1) [SHUTDOWN COMPLETE] -05:17:07.279125 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 36) - 192.168.1.143.6706 > 192.168.1.142.57793: sctp[ForCES LP] - 1) [SHUTDOWN ACK] -05:17:07.279383 IP (tos 0x2,ECT(0), ttl 64, id 17, offset 0, flags [DF], proto SCTP (132), length 36) - 192.168.1.142.57793 > 192.168.1.143.6706: sctp[ForCES LP] - 1) [SHUTDOWN COMPLETE] -05:17:08.224255 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 68) - 192.168.1.142.60979 > 192.168.1.143.6704: sctp[ForCES HP] - 1) [INIT] [init tag: 893123932] [rwnd: 57344] [OS: 1] [MIS: 1] [init TSN: 4001675829] -05:17:08.224782 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 292) - 192.168.1.143.6704 > 192.168.1.142.60979: sctp[ForCES HP] - 1) [INIT ACK] [init tag: 3751052708] [rwnd: 57344] [OS: 1] [MIS: 1] [init TSN: 2904779402] -05:17:08.224834 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 264) - 192.168.1.142.60979 > 192.168.1.143.6704: sctp[ForCES HP] - 1) [COOKIE ECHO] -05:17:08.225194 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 36) - 192.168.1.143.6704 > 192.168.1.142.60979: sctp[ForCES HP] - 1) [COOKIE ACK] -05:17:09.226814 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 68) - 192.168.1.142.41874 > 192.168.1.143.6705: sctp[ForCES MP] - 1) [INIT] [init tag: 2631831000] [rwnd: 57344] [OS: 1] [MIS: 1] [init TSN: 3186084970] -05:17:09.227378 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 292) - 192.168.1.143.6705 > 192.168.1.142.41874: sctp[ForCES MP] - 1) [INIT ACK] [init tag: 1025500394] [rwnd: 57344] [OS: 1] [MIS: 1] [init TSN: 492081856] -05:17:09.227470 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 264) - 192.168.1.142.41874 > 192.168.1.143.6705: sctp[ForCES MP] - 1) [COOKIE ECHO] -05:17:09.227843 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 36) - 192.168.1.143.6705 > 192.168.1.142.41874: sctp[ForCES MP] - 1) [COOKIE ACK] -05:17:10.234920 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 68) - 192.168.1.142.43249 > 192.168.1.143.6706: sctp[ForCES LP] - 1) [INIT] [init tag: 1071698335] [rwnd: 57344] [OS: 1] [MIS: 1] [init TSN: 1223456824] -05:17:10.235259 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 292) - 192.168.1.143.6706 > 192.168.1.142.43249: sctp[ForCES LP] - 1) [INIT ACK] [init tag: 2401559485] [rwnd: 57344] [OS: 1] [MIS: 1] [init TSN: 4176597732] -05:17:10.235295 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 264) - 192.168.1.142.43249 > 192.168.1.143.6706: sctp[ForCES LP] - 1) [COOKIE ECHO] -05:17:10.235559 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 36) - 192.168.1.143.6706 > 192.168.1.142.43249: sctp[ForCES LP] - 1) [COOKIE ACK] -05:17:10.432954 IP (tos 0x2,ECT(0), ttl 64, id 1, offset 0, flags [DF], proto SCTP (132), length 40) - 192.168.1.142.60979 > 192.168.1.143.6704: sctp[ForCES HP] - 1) [SHUTDOWN] -05:17:10.433287 IP (tos 0x2,ECT(0), ttl 64, id 1, offset 0, flags [DF], proto SCTP (132), length 40) - 192.168.1.142.41874 > 192.168.1.143.6705: sctp[ForCES MP] - 1) [SHUTDOWN] -05:17:10.433473 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 36) - 192.168.1.143.6704 > 192.168.1.142.60979: sctp[ForCES HP] - 1) [SHUTDOWN ACK] -05:17:10.433517 IP (tos 0x2,ECT(0), ttl 64, id 2, offset 0, flags [DF], proto SCTP (132), length 36) - 192.168.1.142.60979 > 192.168.1.143.6704: sctp[ForCES HP] - 1) [SHUTDOWN COMPLETE] -05:17:10.433629 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 36) - 192.168.1.143.6705 > 192.168.1.142.41874: sctp[ForCES MP] - 1) [SHUTDOWN ACK] -05:17:10.433866 IP (tos 0x2,ECT(0), ttl 64, id 2, offset 0, flags [DF], proto SCTP (132), length 36) - 192.168.1.142.41874 > 192.168.1.143.6705: sctp[ForCES MP] - 1) [SHUTDOWN COMPLETE] -05:17:10.434075 IP (tos 0x2,ECT(0), ttl 64, id 1, offset 0, flags [DF], proto SCTP (132), length 40) - 192.168.1.142.43249 > 192.168.1.143.6706: sctp[ForCES LP] - 1) [SHUTDOWN] -05:17:10.434365 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 36) - 192.168.1.143.6706 > 192.168.1.142.43249: sctp[ForCES LP] - 1) [SHUTDOWN ACK] -05:17:10.434388 IP (tos 0x2,ECT(0), ttl 64, id 2, offset 0, flags [DF], proto SCTP (132), length 36) - 192.168.1.142.43249 > 192.168.1.143.6706: sctp[ForCES LP] - 1) [SHUTDOWN COMPLETE] diff --git a/tests/forces3.pcap b/tests/forces3.pcap deleted file mode 100644 index a968425..0000000 Binary files a/tests/forces3.pcap and /dev/null differ diff --git a/tests/forces3vvv.out b/tests/forces3vvv.out deleted file mode 100644 index 6d2394d..0000000 --- a/tests/forces3vvv.out +++ /dev/null @@ -1,602 +0,0 @@ -23:38:56.018934 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 76) - 172.20.4.63.16702 > 172.20.4.93.6702: sctp[ForCES LP] - 1) [INIT] [init tag: 3355263363] [rwnd: 55296] [OS: 10] [MIS: 65535] [init TSN: 861291022] -23:38:56.019037 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 236) - 172.20.4.93.6702 > 172.20.4.63.16702: sctp[ForCES LP] - 1) [INIT ACK] [init tag: 2807207095] [rwnd: 54784] [OS: 10] [MIS: 10] [init TSN: 2957773506] -23:38:56.019110 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 200) - 172.20.4.63.16702 > 172.20.4.93.6702: sctp[ForCES LP] - 1) [COOKIE ECHO] -23:38:56.019241 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 36) - 172.20.4.93.6702 > 172.20.4.63.16702: sctp[ForCES LP] - 1) [COOKIE ACK] -23:38:56.019920 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 76) - 172.20.4.63.16701 > 172.20.4.93.6701: sctp[ForCES MP] - 1) [INIT] [init tag: 355895801] [rwnd: 55296] [OS: 10] [MIS: 65535] [init TSN: 1729985532] -23:38:56.020061 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 236) - 172.20.4.93.6701 > 172.20.4.63.16701: sctp[ForCES MP] - 1) [INIT ACK] [init tag: 2960733132] [rwnd: 54784] [OS: 10] [MIS: 10] [init TSN: 777474576] -23:38:56.020111 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 200) - 172.20.4.63.16701 > 172.20.4.93.6701: sctp[ForCES MP] - 1) [COOKIE ECHO] -23:38:56.020235 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 36) - 172.20.4.93.6701 > 172.20.4.63.16701: sctp[ForCES MP] - 1) [COOKIE ACK] -23:38:56.020433 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 76) - 172.20.4.63.16700 > 172.20.4.93.6700: sctp[ForCES HP] - 1) [INIT] [init tag: 3006905571] [rwnd: 55296] [OS: 10] [MIS: 65535] [init TSN: 2958179469] -23:38:56.020578 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 236) - 172.20.4.93.6700 > 172.20.4.63.16700: sctp[ForCES HP] - 1) [INIT ACK] [init tag: 3515444933] [rwnd: 54784] [OS: 10] [MIS: 10] [init TSN: 1811362564] -23:38:56.020617 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 200) - 172.20.4.63.16700 > 172.20.4.93.6700: sctp[ForCES HP] - 1) [COOKIE ECHO] -23:38:56.020739 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 36) - 172.20.4.93.6700 > 172.20.4.63.16700: sctp[ForCES HP] - 1) [COOKIE ACK] -23:38:57.240366 IP (tos 0x2,ECT(0), ttl 64, id 1, offset 0, flags [DF], proto SCTP (132), length 72) - 172.20.4.63.16700 > 172.20.4.93.6700: sctp[ForCES HP] - 1) [DATA] (B)(E) [TSN: 2958179469] [SID: 0] [SSEQ 0] [PPID 0x0] - ForCES Association Setup - ForCES Version 1 len 24B flags 0xf8000000 - SrcID 0x3(FE) DstID 0x40000001(CE) Correlator 0x1 - ForCES flags: - AlwaysACK(0x3), prio=7, EMReserved(0x0), - Standalone(0x0), StartofTransaction(0x0) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - - -23:38:57.240474 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 48) - 172.20.4.93.6700 > 172.20.4.63.16700: sctp[ForCES HP] - 1) [SACK] [cum ack 2958179469] [a_rwnd 54760] [#gap acks 0] [#dup tsns 0] -23:38:57.241034 IP (tos 0x2,ECT(0), ttl 64, id 1, offset 0, flags [DF], proto SCTP (132), length 80) - 172.20.4.93.6700 > 172.20.4.63.16700: sctp[ForCES HP] - 1) [DATA] (B)(E) [TSN: 1811362564] [SID: 0] [SSEQ 0] [PPID 0x0] - ForCES Association Response - ForCES Version 1 len 32B flags 0x38400000 - SrcID 0x40000001(CE) DstID 0x3(FE) Correlator 0x1 - ForCES flags: - NoACK(0x0), prio=7, execute-all-or-none(0x1), - Standalone(0x0), StartofTransaction(0x0) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - ASResult TLV, length 8 (data length 4 Bytes) - Success (0) - - -23:38:57.241079 IP (tos 0x2,ECT(0), ttl 64, id 2, offset 0, flags [DF], proto SCTP (132), length 48) - 172.20.4.63.16700 > 172.20.4.93.6700: sctp[ForCES HP] - 1) [SACK] [cum ack 1811362564] [a_rwnd 55264] [#gap acks 0] [#dup tsns 0] -23:38:57.241047 IP (tos 0x2,ECT(0), ttl 64, id 2, offset 0, flags [DF], proto SCTP (132), length 100) - 172.20.4.93.6700 > 172.20.4.63.16700: sctp[ForCES HP] - 1) [DATA] (B)(E) [TSN: 1811362565] [SID: 0] [SSEQ 1] [PPID 0x0] - ForCES Query - ForCES Version 1 len 52B flags 0xf8400000 - SrcID 0x40000001(CE) DstID 0x3(FE) Correlator 0x1 - ForCES flags: - AlwaysACK(0x3), prio=7, execute-all-or-none(0x1), - Standalone(0x0), StartofTransaction(0x0) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - LFBselect TLV, length 28 (data length 24 Bytes) - FEObj LFB(Classid 1) instance 1 - Oper TLV Get(0x7) length 16 - PATH-DATA TLV, length 12 (data encapsulated 8 Bytes) - Pathdata: Flags 0x0 ID count 1 - ID#01: 2 - - -23:38:57.244420 IP (tos 0x2,ECT(0), ttl 64, id 3, offset 0, flags [DF], proto SCTP (132), length 140) - 172.20.4.63.16700 > 172.20.4.93.6700: sctp[ForCES HP] - 1) [DATA] (B)(E) [TSN: 2958179470] [SID: 0] [SSEQ 1] [PPID 0x0] - ForCES Query Response - ForCES Version 1 len 92B flags 0x38400000 - SrcID 0x3(FE) DstID 0x40000001(CE) Correlator 0x1 - ForCES flags: - NoACK(0x0), prio=7, execute-all-or-none(0x1), - Standalone(0x0), StartofTransaction(0x0) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - LFBselect TLV, length 68 (data length 64 Bytes) - FEObj LFB(Classid 1) instance 1 - Oper TLV GetResp(0x9) length 56 - PATH-DATA TLV, length 52 (data encapsulated 48 Bytes) - Pathdata: Flags 0x0 ID count 1 - ID#01: 2 - FULLDATA TLV (Length 40 DataLen 36 Bytes) - [ - 0x0000: 0000 0000 0000 0001 0000 0001 0000 0001 - 0x0010: 0000 0002 0000 0001 0000 0002 0000 000e - 0x0020: 0000 0001 - ] - - -23:38:57.440152 IP (tos 0x2,ECT(0), ttl 64, id 4, offset 0, flags [DF], proto SCTP (132), length 48) - 172.20.4.63.16700 > 172.20.4.93.6700: sctp[ForCES HP] - 1) [SACK] [cum ack 1811362565] [a_rwnd 55264] [#gap acks 0] [#dup tsns 0] -23:38:57.444197 IP (tos 0x2,ECT(0), ttl 64, id 3, offset 0, flags [DF], proto SCTP (132), length 48) - 172.20.4.93.6700 > 172.20.4.63.16700: sctp[ForCES HP] - 1) [SACK] [cum ack 2958179470] [a_rwnd 54760] [#gap acks 0] [#dup tsns 0] -23:39:04.942310 IP (tos 0x2,ECT(0), ttl 64, id 4, offset 0, flags [DF], proto SCTP (132), length 100) - 172.20.4.93.6700 > 172.20.4.63.16700: sctp[ForCES HP] - 1) [DATA] (B)(E) [TSN: 1811362566] [SID: 0] [SSEQ 2] [PPID 0x0] - ForCES Query - ForCES Version 1 len 52B flags 0xf8400000 - SrcID 0x40000001(CE) DstID 0x3(FE) Correlator 0x2 - ForCES flags: - AlwaysACK(0x3), prio=7, execute-all-or-none(0x1), - Standalone(0x0), StartofTransaction(0x0) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - LFBselect TLV, length 28 (data length 24 Bytes) - #14(Classid e) instance 1 - Oper TLV Get(0x7) length 16 - PATH-DATA TLV, length 12 (data encapsulated 8 Bytes) - Pathdata: Flags 0x0 ID count 1 - ID#01: 1 - - -23:39:04.943823 IP (tos 0x2,ECT(0), ttl 64, id 5, offset 0, flags [DF], proto SCTP (132), length 188) - 172.20.4.63.16700 > 172.20.4.93.6700: sctp[ForCES HP] - 1) [DATA] (B)(E) [TSN: 2958179471] [SID: 0] [SSEQ 2] [PPID 0x0] - ForCES Query Response - ForCES Version 1 len 140B flags 0x38400000 - SrcID 0x3(FE) DstID 0x40000001(CE) Correlator 0x2 - ForCES flags: - NoACK(0x0), prio=7, execute-all-or-none(0x1), - Standalone(0x0), StartofTransaction(0x0) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - LFBselect TLV, length 116 (data length 112 Bytes) - #14(Classid e) instance 1 - Oper TLV GetResp(0x9) length 104 - PATH-DATA TLV, length 100 (data encapsulated 96 Bytes) - Pathdata: Flags 0x0 ID count 1 - ID#01: 1 - FULLDATA TLV (Length 88 DataLen 84 Bytes) - [ - 0x0000: 0112 0054 0000 0000 0000 0001 0112 0028 - 0x0010: 0000 0000 0102 0304 0000 0018 0001 0203 - 0x0020: 0405 0000 0001 1112 1314 0000 0019 0a0b - 0x0030: 0c0d 0e0f 0000 0001 0000 0002 0112 0018 - 0x0040: 0000 0000 0807 0605 0000 0010 1415 1617 - 0x0050: 1819 0000 - ] - - -23:39:05.141776 IP (tos 0x2,ECT(0), ttl 64, id 6, offset 0, flags [DF], proto SCTP (132), length 48) - 172.20.4.63.16700 > 172.20.4.93.6700: sctp[ForCES HP] - 1) [SACK] [cum ack 1811362566] [a_rwnd 55264] [#gap acks 0] [#dup tsns 0] -23:39:05.143071 IP (tos 0x2,ECT(0), ttl 64, id 5, offset 0, flags [DF], proto SCTP (132), length 48) - 172.20.4.93.6700 > 172.20.4.63.16700: sctp[ForCES HP] - 1) [SACK] [cum ack 2958179471] [a_rwnd 54760] [#gap acks 0] [#dup tsns 0] -23:39:08.406266 IP (tos 0x2,ECT(0), ttl 64, id 6, offset 0, flags [DF], proto SCTP (132), length 156) - 172.20.4.93.6700 > 172.20.4.63.16700: sctp[ForCES HP] - 1) [DATA] (B)(E) [TSN: 1811362567] [SID: 0] [SSEQ 3] [PPID 0x0] - ForCES Config - ForCES Version 1 len 108B flags 0xf8400000 - SrcID 0x40000001(CE) DstID 0x3(FE) Correlator 0x3 - ForCES flags: - AlwaysACK(0x3), prio=7, execute-all-or-none(0x1), - Standalone(0x0), StartofTransaction(0x0) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - LFBselect TLV, length 84 (data length 80 Bytes) - #14(Classid e) instance 1 - Oper TLV Set(0x1) length 72 - PATH-DATA TLV, length 68 (data encapsulated 64 Bytes) - Pathdata: Flags 0x0 ID count 1 - ID#01: 1 - PATH-DATA TLV, length 56 (data encapsulated 52 Bytes) - Pathdata: Flags 0x0 ID count 1 - ID#01: 0 - PATH-DATA TLV, length 44 (data encapsulated 40 Bytes) - Pathdata: Flags 0x0 ID count 1 - ID#01: 2 - PATH-DATA TLV, length 32 (data encapsulated 28 Bytes) - Pathdata: Flags 0x0 ID count 1 - ID#01: 0 - PATH-DATA TLV, length 20 (data encapsulated 16 Bytes) - Pathdata: Flags 0x0 ID count 1 - ID#01: 1 - FULLDATA TLV (Length 8 DataLen 4 Bytes) - [ - 0x0000: 0a00 0001 - ] - - -23:39:08.410057 IP (tos 0x2,ECT(0), ttl 64, id 7, offset 0, flags [DF], proto SCTP (132), length 108) - 172.20.4.63.16700 > 172.20.4.93.6700: sctp[ForCES HP] - 1) [DATA] (B)(E) [TSN: 2958179472] [SID: 0] [SSEQ 3] [PPID 0x0] - ForCES Config Response - ForCES Version 1 len 60B flags 0x38400000 - SrcID 0x3(FE) DstID 0x40000001(CE) Correlator 0x3 - ForCES flags: - NoACK(0x0), prio=7, execute-all-or-none(0x1), - Standalone(0x0), StartofTransaction(0x0) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - LFBselect TLV, length 36 (data length 32 Bytes) - #14(Classid e) instance 1 - Oper TLV SetResp(0x3) length 24 - PATH-DATA TLV, length 20 (data encapsulated 16 Bytes) - Pathdata: Flags 0x0 ID count 1 - ID#01: 1 - RESULT TLV (Length 8 DataLen 4 Bytes) - Result: SUCCESS (code 0x0) - - -23:39:08.606148 IP (tos 0x2,ECT(0), ttl 64, id 8, offset 0, flags [DF], proto SCTP (132), length 48) - 172.20.4.63.16700 > 172.20.4.93.6700: sctp[ForCES HP] - 1) [SACK] [cum ack 1811362567] [a_rwnd 55264] [#gap acks 0] [#dup tsns 0] -23:39:08.610452 IP (tos 0x2,ECT(0), ttl 64, id 7, offset 0, flags [DF], proto SCTP (132), length 48) - 172.20.4.93.6700 > 172.20.4.63.16700: sctp[ForCES HP] - 1) [SACK] [cum ack 2958179472] [a_rwnd 54760] [#gap acks 0] [#dup tsns 0] -23:39:10.517887 IP (tos 0x2,ECT(0), ttl 64, id 8, offset 0, flags [DF], proto SCTP (132), length 156) - 172.20.4.93.6700 > 172.20.4.63.16700: sctp[ForCES HP] - 1) [DATA] (B)(E) [TSN: 1811362568] [SID: 0] [SSEQ 4] [PPID 0x0] - ForCES Config - ForCES Version 1 len 108B flags 0xf8400000 - SrcID 0x40000001(CE) DstID 0x3(FE) Correlator 0x4 - ForCES flags: - AlwaysACK(0x3), prio=7, execute-all-or-none(0x1), - Standalone(0x0), StartofTransaction(0x0) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - LFBselect TLV, length 84 (data length 80 Bytes) - #14(Classid e) instance 1 - Oper TLV Set(0x1) length 72 - PATH-DATA TLV, length 68 (data encapsulated 64 Bytes) - Pathdata: Flags 0x0 ID count 1 - ID#01: 1 - PATH-DATA TLV, length 56 (data encapsulated 52 Bytes) - Pathdata: Flags 0x0 ID count 1 - ID#01: 0 - PATH-DATA TLV, length 44 (data encapsulated 40 Bytes) - Pathdata: Flags 0x0 ID count 1 - ID#01: 2 - PATH-DATA TLV, length 32 (data encapsulated 28 Bytes) - Pathdata: Flags 0x0 ID count 1 - ID#01: 0 - PATH-DATA TLV, length 20 (data encapsulated 16 Bytes) - Pathdata: Flags 0x0 ID count 1 - ID#01: 2 - FULLDATA TLV (Length 8 DataLen 4 Bytes) - [ - 0x0000: 0000 0008 - ] - - -23:39:10.521718 IP (tos 0x2,ECT(0), ttl 64, id 9, offset 0, flags [DF], proto SCTP (132), length 108) - 172.20.4.63.16700 > 172.20.4.93.6700: sctp[ForCES HP] - 1) [DATA] (B)(E) [TSN: 2958179473] [SID: 0] [SSEQ 4] [PPID 0x0] - ForCES Config Response - ForCES Version 1 len 60B flags 0x38400000 - SrcID 0x3(FE) DstID 0x40000001(CE) Correlator 0x4 - ForCES flags: - NoACK(0x0), prio=7, execute-all-or-none(0x1), - Standalone(0x0), StartofTransaction(0x0) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - LFBselect TLV, length 36 (data length 32 Bytes) - #14(Classid e) instance 1 - Oper TLV SetResp(0x3) length 24 - PATH-DATA TLV, length 20 (data encapsulated 16 Bytes) - Pathdata: Flags 0x0 ID count 1 - ID#01: 1 - RESULT TLV (Length 8 DataLen 4 Bytes) - Result: SUCCESS (code 0x0) - - -23:39:10.717774 IP (tos 0x2,ECT(0), ttl 64, id 10, offset 0, flags [DF], proto SCTP (132), length 48) - 172.20.4.63.16700 > 172.20.4.93.6700: sctp[ForCES HP] - 1) [SACK] [cum ack 1811362568] [a_rwnd 55264] [#gap acks 0] [#dup tsns 0] -23:39:10.721988 IP (tos 0x2,ECT(0), ttl 64, id 9, offset 0, flags [DF], proto SCTP (132), length 48) - 172.20.4.93.6700 > 172.20.4.63.16700: sctp[ForCES HP] - 1) [SACK] [cum ack 2958179473] [a_rwnd 54760] [#gap acks 0] [#dup tsns 0] -23:39:12.997636 IP (tos 0x2,ECT(0), ttl 64, id 10, offset 0, flags [DF], proto SCTP (132), length 160) - 172.20.4.93.6700 > 172.20.4.63.16700: sctp[ForCES HP] - 1) [DATA] (B)(E) [TSN: 1811362569] [SID: 0] [SSEQ 5] [PPID 0x0] - ForCES Config - ForCES Version 1 len 112B flags 0xf8400000 - SrcID 0x40000001(CE) DstID 0x3(FE) Correlator 0x5 - ForCES flags: - AlwaysACK(0x3), prio=7, execute-all-or-none(0x1), - Standalone(0x0), StartofTransaction(0x0) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - LFBselect TLV, length 88 (data length 84 Bytes) - #14(Classid e) instance 1 - Oper TLV Set(0x1) length 76 - PATH-DATA TLV, length 72 (data encapsulated 68 Bytes) - Pathdata: Flags 0x0 ID count 1 - ID#01: 1 - PATH-DATA TLV, length 60 (data encapsulated 56 Bytes) - Pathdata: Flags 0x0 ID count 1 - ID#01: 0 - PATH-DATA TLV, length 48 (data encapsulated 44 Bytes) - Pathdata: Flags 0x0 ID count 1 - ID#01: 2 - PATH-DATA TLV, length 36 (data encapsulated 32 Bytes) - Pathdata: Flags 0x0 ID count 1 - ID#01: 0 - PATH-DATA TLV, length 24 (data encapsulated 20 Bytes) - Pathdata: Flags 0x0 ID count 1 - ID#01: 3 - FULLDATA TLV (Length 10 DataLen 6 pad 2 Bytes) - [ - 0x0000: 0002 0406 080a 0000 - ] - - -23:39:13.001457 IP (tos 0x2,ECT(0), ttl 64, id 11, offset 0, flags [DF], proto SCTP (132), length 108) - 172.20.4.63.16700 > 172.20.4.93.6700: sctp[ForCES HP] - 1) [DATA] (B)(E) [TSN: 2958179474] [SID: 0] [SSEQ 5] [PPID 0x0] - ForCES Config Response - ForCES Version 1 len 60B flags 0x38400000 - SrcID 0x3(FE) DstID 0x40000001(CE) Correlator 0x5 - ForCES flags: - NoACK(0x0), prio=7, execute-all-or-none(0x1), - Standalone(0x0), StartofTransaction(0x0) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - LFBselect TLV, length 36 (data length 32 Bytes) - #14(Classid e) instance 1 - Oper TLV SetResp(0x3) length 24 - PATH-DATA TLV, length 20 (data encapsulated 16 Bytes) - Pathdata: Flags 0x0 ID count 1 - ID#01: 1 - RESULT TLV (Length 8 DataLen 4 Bytes) - Result: SUCCESS (code 0x0) - - -23:39:13.197325 IP (tos 0x2,ECT(0), ttl 64, id 12, offset 0, flags [DF], proto SCTP (132), length 48) - 172.20.4.63.16700 > 172.20.4.93.6700: sctp[ForCES HP] - 1) [SACK] [cum ack 1811362569] [a_rwnd 55264] [#gap acks 0] [#dup tsns 0] -23:39:13.201336 IP (tos 0x2,ECT(0), ttl 64, id 11, offset 0, flags [DF], proto SCTP (132), length 48) - 172.20.4.93.6700 > 172.20.4.63.16700: sctp[ForCES HP] - 1) [SACK] [cum ack 2958179474] [a_rwnd 54760] [#gap acks 0] [#dup tsns 0] -23:39:15.389357 IP (tos 0x2,ECT(0), ttl 64, id 12, offset 0, flags [DF], proto SCTP (132), length 200) - 172.20.4.93.6700 > 172.20.4.63.16700: sctp[ForCES HP] - 1) [DATA] (B)(E) [TSN: 1811362570] [SID: 0] [SSEQ 6] [PPID 0x0] - ForCES Config - ForCES Version 1 len 152B flags 0xf8400000 - SrcID 0x40000001(CE) DstID 0x3(FE) Correlator 0x6 - ForCES flags: - AlwaysACK(0x3), prio=7, execute-all-or-none(0x1), - Standalone(0x0), StartofTransaction(0x0) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - LFBselect TLV, length 128 (data length 124 Bytes) - #14(Classid e) instance 1 - Oper TLV Set(0x1) length 116 - PATH-DATA TLV, length 112 (data encapsulated 108 Bytes) - Pathdata: Flags 0x0 ID count 1 - ID#01: 1 - PATH-DATA TLV, length 100 (data encapsulated 96 Bytes) - Pathdata: Flags 0x0 ID count 1 - ID#01: 0 - PATH-DATA TLV, length 88 (data encapsulated 84 Bytes) - Pathdata: Flags 0x0 ID count 1 - ID#01: 2 - PATH-DATA TLV, length 76 (data encapsulated 72 Bytes) - Pathdata: Flags 0x0 ID count 1 - ID#01: 2 - PATH-DATA TLV, length 20 (data encapsulated 16 Bytes) - Pathdata: Flags 0x0 ID count 1 - ID#01: 1 - FULLDATA TLV (Length 8 DataLen 4 Bytes) - [ - 0x0000: 1400 0001 - ] - PATH-DATA TLV, length 20 (data encapsulated 16 Bytes) - Pathdata: Flags 0x0 ID count 1 - ID#01: 2 - FULLDATA TLV (Length 8 DataLen 4 Bytes) - [ - 0x0000: 0000 000c - ] - PATH-DATA TLV, length 24 (data encapsulated 20 Bytes) - Pathdata: Flags 0x0 ID count 1 - ID#01: 3 - FULLDATA TLV (Length 10 DataLen 6 pad 2 Bytes) - [ - 0x0000: 0003 0609 0c0f 0000 - ] - - -23:39:15.393377 IP (tos 0x2,ECT(0), ttl 64, id 13, offset 0, flags [DF], proto SCTP (132), length 108) - 172.20.4.63.16700 > 172.20.4.93.6700: sctp[ForCES HP] - 1) [DATA] (B)(E) [TSN: 2958179475] [SID: 0] [SSEQ 6] [PPID 0x0] - ForCES Config Response - ForCES Version 1 len 60B flags 0x38400000 - SrcID 0x3(FE) DstID 0x40000001(CE) Correlator 0x6 - ForCES flags: - NoACK(0x0), prio=7, execute-all-or-none(0x1), - Standalone(0x0), StartofTransaction(0x0) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - LFBselect TLV, length 36 (data length 32 Bytes) - #14(Classid e) instance 1 - Oper TLV SetResp(0x3) length 24 - PATH-DATA TLV, length 20 (data encapsulated 16 Bytes) - Pathdata: Flags 0x0 ID count 1 - ID#01: 1 - RESULT TLV (Length 8 DataLen 4 Bytes) - Result: SUCCESS (code 0x0) - - -23:39:15.588896 IP (tos 0x2,ECT(0), ttl 64, id 14, offset 0, flags [DF], proto SCTP (132), length 48) - 172.20.4.63.16700 > 172.20.4.93.6700: sctp[ForCES HP] - 1) [SACK] [cum ack 1811362570] [a_rwnd 55264] [#gap acks 0] [#dup tsns 0] -23:39:15.592787 IP (tos 0x2,ECT(0), ttl 64, id 13, offset 0, flags [DF], proto SCTP (132), length 48) - 172.20.4.93.6700 > 172.20.4.63.16700: sctp[ForCES HP] - 1) [SACK] [cum ack 2958179475] [a_rwnd 54760] [#gap acks 0] [#dup tsns 0] -23:39:18.045055 IP (tos 0x2,ECT(0), ttl 64, id 14, offset 0, flags [DF], proto SCTP (132), length 220) - 172.20.4.93.6700 > 172.20.4.63.16700: sctp[ForCES HP] - 1) [DATA] (B)(E) [TSN: 1811362571] [SID: 0] [SSEQ 7] [PPID 0x0] - ForCES Config - ForCES Version 1 len 172B flags 0xf8400000 - SrcID 0x40000001(CE) DstID 0x3(FE) Correlator 0x7 - ForCES flags: - AlwaysACK(0x3), prio=7, execute-all-or-none(0x1), - Standalone(0x0), StartofTransaction(0x0) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - LFBselect TLV, length 148 (data length 144 Bytes) - #14(Classid e) instance 1 - Oper TLV Set(0x1) length 136 - PATH-DATA TLV, length 132 (data encapsulated 128 Bytes) - Pathdata: Flags 0x0 ID count 1 - ID#01: 1 - PATH-DATA TLV, length 120 (data encapsulated 116 Bytes) - Pathdata: Flags 0x0 ID count 1 - ID#01: 2 - PATH-DATA TLV, length 20 (data encapsulated 16 Bytes) - Pathdata: Flags 0x0 ID count 1 - ID#01: 1 - FULLDATA TLV (Length 8 DataLen 4 Bytes) - [ - 0x0000: 0000 0003 - ] - PATH-DATA TLV, length 88 (data encapsulated 84 Bytes) - Pathdata: Flags 0x0 ID count 1 - ID#01: 2 - PATH-DATA TLV, length 76 (data encapsulated 72 Bytes) - Pathdata: Flags 0x0 ID count 1 - ID#01: 0 - PATH-DATA TLV, length 20 (data encapsulated 16 Bytes) - Pathdata: Flags 0x0 ID count 1 - ID#01: 1 - FULLDATA TLV (Length 8 DataLen 4 Bytes) - [ - 0x0000: 1e00 0001 - ] - PATH-DATA TLV, length 20 (data encapsulated 16 Bytes) - Pathdata: Flags 0x0 ID count 1 - ID#01: 2 - FULLDATA TLV (Length 8 DataLen 4 Bytes) - [ - 0x0000: 0000 000d - ] - PATH-DATA TLV, length 24 (data encapsulated 20 Bytes) - Pathdata: Flags 0x0 ID count 1 - ID#01: 3 - FULLDATA TLV (Length 10 DataLen 6 pad 2 Bytes) - [ - 0x0000: 0004 080c 1014 0000 - ] - - -23:39:18.049369 IP (tos 0x2,ECT(0), ttl 64, id 15, offset 0, flags [DF], proto SCTP (132), length 108) - 172.20.4.63.16700 > 172.20.4.93.6700: sctp[ForCES HP] - 1) [DATA] (B)(E) [TSN: 2958179476] [SID: 0] [SSEQ 7] [PPID 0x0] - ForCES Config Response - ForCES Version 1 len 60B flags 0x38400000 - SrcID 0x3(FE) DstID 0x40000001(CE) Correlator 0x7 - ForCES flags: - NoACK(0x0), prio=7, execute-all-or-none(0x1), - Standalone(0x0), StartofTransaction(0x0) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - LFBselect TLV, length 36 (data length 32 Bytes) - #14(Classid e) instance 1 - Oper TLV SetResp(0x3) length 24 - PATH-DATA TLV, length 20 (data encapsulated 16 Bytes) - Pathdata: Flags 0x0 ID count 1 - ID#01: 1 - RESULT TLV (Length 8 DataLen 4 Bytes) - Result: SUCCESS (code 0x0) - - -23:39:18.244425 IP (tos 0x2,ECT(0), ttl 64, id 16, offset 0, flags [DF], proto SCTP (132), length 48) - 172.20.4.63.16700 > 172.20.4.93.6700: sctp[ForCES HP] - 1) [SACK] [cum ack 1811362571] [a_rwnd 55264] [#gap acks 0] [#dup tsns 0] -23:39:18.248927 IP (tos 0x2,ECT(0), ttl 64, id 15, offset 0, flags [DF], proto SCTP (132), length 48) - 172.20.4.93.6700 > 172.20.4.63.16700: sctp[ForCES HP] - 1) [SACK] [cum ack 2958179476] [a_rwnd 54760] [#gap acks 0] [#dup tsns 0] -23:39:20.060819 IP (tos 0x2,ECT(0), ttl 64, id 16, offset 0, flags [DF], proto SCTP (132), length 136) - 172.20.4.93.6700 > 172.20.4.63.16700: sctp[ForCES HP] - 1) [DATA] (B)(E) [TSN: 1811362572] [SID: 0] [SSEQ 8] [PPID 0x0] - ForCES Config - ForCES Version 1 len 88B flags 0xf8400000 - SrcID 0x40000001(CE) DstID 0x3(FE) Correlator 0x8 - ForCES flags: - AlwaysACK(0x3), prio=7, execute-all-or-none(0x1), - Standalone(0x0), StartofTransaction(0x0) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - LFBselect TLV, length 64 (data length 60 Bytes) - #14(Classid e) instance 1 - Oper TLV Del(0x5) length 52 - PATH-DATA TLV, length 48 (data encapsulated 44 Bytes) - Pathdata: Flags 0x0 ID count 1 - ID#01: 1 - PATH-DATA TLV, length 36 (data encapsulated 32 Bytes) - Pathdata: Flags 0x0 ID count 1 - ID#01: 0 - PATH-DATA TLV, length 24 (data encapsulated 20 Bytes) - Pathdata: Flags 0x0 ID count 1 - ID#01: 2 - PATH-DATA TLV, length 12 (data encapsulated 8 Bytes) - Pathdata: Flags 0x0 ID count 1 - ID#01: 2 - - -23:39:20.065279 IP (tos 0x2,ECT(0), ttl 64, id 17, offset 0, flags [DF], proto SCTP (132), length 108) - 172.20.4.63.16700 > 172.20.4.93.6700: sctp[ForCES HP] - 1) [DATA] (B)(E) [TSN: 2958179477] [SID: 0] [SSEQ 8] [PPID 0x0] - ForCES Config Response - ForCES Version 1 len 60B flags 0x38400000 - SrcID 0x3(FE) DstID 0x40000001(CE) Correlator 0x8 - ForCES flags: - NoACK(0x0), prio=7, execute-all-or-none(0x1), - Standalone(0x0), StartofTransaction(0x0) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - LFBselect TLV, length 36 (data length 32 Bytes) - #14(Classid e) instance 1 - Oper TLV DelResp(0x6) length 24 - PATH-DATA TLV, length 20 (data encapsulated 16 Bytes) - Pathdata: Flags 0x0 ID count 1 - ID#01: 1 - RESULT TLV (Length 8 DataLen 4 Bytes) - Result: SUCCESS (code 0x0) - - -23:39:20.260061 IP (tos 0x2,ECT(0), ttl 64, id 18, offset 0, flags [DF], proto SCTP (132), length 48) - 172.20.4.63.16700 > 172.20.4.93.6700: sctp[ForCES HP] - 1) [SACK] [cum ack 1811362572] [a_rwnd 55264] [#gap acks 0] [#dup tsns 0] -23:39:20.265566 IP (tos 0x2,ECT(0), ttl 64, id 17, offset 0, flags [DF], proto SCTP (132), length 48) - 172.20.4.93.6700 > 172.20.4.63.16700: sctp[ForCES HP] - 1) [SACK] [cum ack 2958179477] [a_rwnd 54760] [#gap acks 0] [#dup tsns 0] -23:39:22.796350 IP (tos 0x2,ECT(0), ttl 64, id 18, offset 0, flags [DF], proto SCTP (132), length 112) - 172.20.4.93.6700 > 172.20.4.63.16700: sctp[ForCES HP] - 1) [DATA] (B)(E) [TSN: 1811362573] [SID: 0] [SSEQ 9] [PPID 0x0] - ForCES Config - ForCES Version 1 len 64B flags 0xf8400000 - SrcID 0x40000001(CE) DstID 0x3(FE) Correlator 0x9 - ForCES flags: - AlwaysACK(0x3), prio=7, execute-all-or-none(0x1), - Standalone(0x0), StartofTransaction(0x0) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - LFBselect TLV, length 40 (data length 36 Bytes) - #14(Classid e) instance 1 - Oper TLV Del(0x5) length 28 - PATH-DATA TLV, length 24 (data encapsulated 20 Bytes) - Pathdata: Flags 0x0 ID count 1 - ID#01: 1 - PATH-DATA TLV, length 12 (data encapsulated 8 Bytes) - Pathdata: Flags 0x0 ID count 1 - ID#01: 2 - - -23:39:22.800525 IP (tos 0x2,ECT(0), ttl 64, id 19, offset 0, flags [DF], proto SCTP (132), length 108) - 172.20.4.63.16700 > 172.20.4.93.6700: sctp[ForCES HP] - 1) [DATA] (B)(E) [TSN: 2958179478] [SID: 0] [SSEQ 9] [PPID 0x0] - ForCES Config Response - ForCES Version 1 len 60B flags 0x38400000 - SrcID 0x3(FE) DstID 0x40000001(CE) Correlator 0x9 - ForCES flags: - NoACK(0x0), prio=7, execute-all-or-none(0x1), - Standalone(0x0), StartofTransaction(0x0) - Extra flags: rsv(b5-7) 0x0 rsv(b13-31) 0x0 - LFBselect TLV, length 36 (data length 32 Bytes) - #14(Classid e) instance 1 - Oper TLV DelResp(0x6) length 24 - PATH-DATA TLV, length 20 (data encapsulated 16 Bytes) - Pathdata: Flags 0x0 ID count 1 - ID#01: 1 - RESULT TLV (Length 8 DataLen 4 Bytes) - Result: SUCCESS (code 0x0) - - -23:39:22.995584 IP (tos 0x2,ECT(0), ttl 64, id 20, offset 0, flags [DF], proto SCTP (132), length 48) - 172.20.4.63.16700 > 172.20.4.93.6700: sctp[ForCES HP] - 1) [SACK] [cum ack 1811362573] [a_rwnd 55264] [#gap acks 0] [#dup tsns 0] -23:39:23.001212 IP (tos 0x2,ECT(0), ttl 64, id 19, offset 0, flags [DF], proto SCTP (132), length 48) - 172.20.4.93.6700 > 172.20.4.63.16700: sctp[ForCES HP] - 1) [SACK] [cum ack 2958179478] [a_rwnd 54760] [#gap acks 0] [#dup tsns 0] diff --git a/tests/geneve-tcp.out b/tests/geneve-tcp.out deleted file mode 100644 index e2cdc37..0000000 --- a/tests/geneve-tcp.out +++ /dev/null @@ -1,33 +0,0 @@ -IP 20.0.0.2.43443 > 20.0.0.1.6081: Geneve, Flags [none], vni 0xb: IP 30.0.0.2.51225 > 30.0.0.1.22: Flags [S], seq 397610159, win 14600, options [mss 1460,sackOK,TS val 2876069566 ecr 0,nop,wscale 7], length 0 -IP 20.0.0.1.22540 > 20.0.0.2.6081: Geneve, Flags [C], vni 0xa, options [8 bytes]: IP 30.0.0.1.22 > 30.0.0.2.51225: Flags [S.], seq 2910871522, ack 397610160, win 28960, options [mss 1460,sackOK,TS val 84248969 ecr 2876069566,nop,wscale 7], length 0 -IP 20.0.0.2.43443 > 20.0.0.1.6081: Geneve, Flags [none], vni 0xb: IP 30.0.0.2.51225 > 30.0.0.1.22: Flags [.], ack 1, win 115, options [nop,nop,TS val 2876069566 ecr 84248969], length 0 -IP 20.0.0.1.22540 > 20.0.0.2.6081: Geneve, Flags [C], vni 0xa, options [8 bytes]: IP 30.0.0.1.22 > 30.0.0.2.51225: Flags [P.], seq 1:40, ack 1, win 227, options [nop,nop,TS val 84248971 ecr 2876069566], length 39 -IP 20.0.0.2.43443 > 20.0.0.1.6081: Geneve, Flags [none], vni 0xb: IP 30.0.0.2.51225 > 30.0.0.1.22: Flags [.], ack 40, win 115, options [nop,nop,TS val 2876069573 ecr 84248971], length 0 -IP 20.0.0.2.43443 > 20.0.0.1.6081: Geneve, Flags [none], vni 0xb: IP 30.0.0.2.51225 > 30.0.0.1.22: Flags [P.], seq 1:22, ack 40, win 115, options [nop,nop,TS val 2876069573 ecr 84248971], length 21 -IP 20.0.0.1.22540 > 20.0.0.2.6081: Geneve, Flags [C], vni 0xa, options [8 bytes]: IP 30.0.0.1.22 > 30.0.0.2.51225: Flags [.], ack 22, win 227, options [nop,nop,TS val 84248971 ecr 2876069573], length 0 -IP 20.0.0.2.43443 > 20.0.0.1.6081: Geneve, Flags [none], vni 0xb: IP 30.0.0.2.51225 > 30.0.0.1.22: Flags [P.], seq 22:814, ack 40, win 115, options [nop,nop,TS val 2876069573 ecr 84248971], length 792 -IP 20.0.0.1.22540 > 20.0.0.2.6081: Geneve, Flags [C], vni 0xa, options [8 bytes]: IP 30.0.0.1.22 > 30.0.0.2.51225: Flags [.], ack 814, win 239, options [nop,nop,TS val 84248971 ecr 2876069573], length 0 -IP 20.0.0.1.22540 > 20.0.0.2.6081: Geneve, Flags [C], vni 0xa, options [8 bytes]: IP 30.0.0.1.22 > 30.0.0.2.51225: Flags [P.], seq 40:1024, ack 814, win 239, options [nop,nop,TS val 84248971 ecr 2876069573], length 984 -IP 20.0.0.2.43443 > 20.0.0.1.6081: Geneve, Flags [none], vni 0xb: IP 30.0.0.2.51225 > 30.0.0.1.22: Flags [P.], seq 814:838, ack 1024, win 130, options [nop,nop,TS val 2876069574 ecr 84248971], length 24 -IP 20.0.0.1.22540 > 20.0.0.2.6081: Geneve, Flags [C], vni 0xa, options [8 bytes]: IP 30.0.0.1.22 > 30.0.0.2.51225: Flags [P.], seq 1024:1176, ack 838, win 239, options [nop,nop,TS val 84248972 ecr 2876069574], length 152 -IP 20.0.0.2.43443 > 20.0.0.1.6081: Geneve, Flags [none], vni 0xb: IP 30.0.0.2.51225 > 30.0.0.1.22: Flags [P.], seq 838:982, ack 1176, win 145, options [nop,nop,TS val 2876069577 ecr 84248972], length 144 -IP 20.0.0.1.22540 > 20.0.0.2.6081: Geneve, Flags [C], vni 0xa, options [8 bytes]: IP 30.0.0.1.22 > 30.0.0.2.51225: Flags [P.], seq 1176:1896, ack 982, win 251, options [nop,nop,TS val 84248973 ecr 2876069577], length 720 -IP 20.0.0.2.43443 > 20.0.0.1.6081: Geneve, Flags [none], vni 0xb: IP 30.0.0.2.51225 > 30.0.0.1.22: Flags [P.], seq 982:998, ack 1896, win 161, options [nop,nop,TS val 2876069583 ecr 84248973], length 16 -IP 20.0.0.1.22540 > 20.0.0.2.6081: Geneve, Flags [C], vni 0xa, options [8 bytes]: IP 30.0.0.1.22 > 30.0.0.2.51225: Flags [.], ack 998, win 251, options [nop,nop,TS val 84248983 ecr 2876069583], length 0 -IP 20.0.0.2.43443 > 20.0.0.1.6081: Geneve, Flags [none], vni 0xb: IP 30.0.0.2.51225 > 30.0.0.1.22: Flags [P.], seq 998:1046, ack 1896, win 161, options [nop,nop,TS val 2876069620 ecr 84248983], length 48 -IP 20.0.0.1.22540 > 20.0.0.2.6081: Geneve, Flags [C], vni 0xa, options [8 bytes]: IP 30.0.0.1.22 > 30.0.0.2.51225: Flags [.], ack 1046, win 251, options [nop,nop,TS val 84248983 ecr 2876069620], length 0 -IP 20.0.0.1.22540 > 20.0.0.2.6081: Geneve, Flags [C], vni 0xa, options [8 bytes]: IP 30.0.0.1.22 > 30.0.0.2.51225: Flags [P.], seq 1896:1944, ack 1046, win 251, options [nop,nop,TS val 84248983 ecr 2876069620], length 48 -IP 20.0.0.2.43443 > 20.0.0.1.6081: Geneve, Flags [none], vni 0xb: IP 30.0.0.2.51225 > 30.0.0.1.22: Flags [P.], seq 1046:1110, ack 1944, win 161, options [nop,nop,TS val 2876069621 ecr 84248983], length 64 -IP 20.0.0.1.22540 > 20.0.0.2.6081: Geneve, Flags [C], vni 0xa, options [8 bytes]: IP 30.0.0.1.22 > 30.0.0.2.51225: Flags [P.], seq 1944:2008, ack 1110, win 251, options [nop,nop,TS val 84248983 ecr 2876069621], length 64 -IP 20.0.0.2.43443 > 20.0.0.1.6081: Geneve, Flags [none], vni 0xb: IP 30.0.0.2.51225 > 30.0.0.1.22: Flags [.], ack 2008, win 161, options [nop,nop,TS val 2876069662 ecr 84248983], length 0 -IP 20.0.0.2.43443 > 20.0.0.1.6081: Geneve, Flags [none], vni 0xb: IP 30.0.0.2.51225 > 30.0.0.1.22: Flags [P.], seq 1110:1254, ack 2008, win 161, options [nop,nop,TS val 2876070845 ecr 84248983], length 144 -IP 20.0.0.1.22540 > 20.0.0.2.6081: Geneve, Flags [C], vni 0xa, options [8 bytes]: IP 30.0.0.1.22 > 30.0.0.2.51225: Flags [P.], seq 2008:2040, ack 1254, win 264, options [nop,nop,TS val 84249289 ecr 2876070845], length 32 -IP 20.0.0.2.43443 > 20.0.0.1.6081: Geneve, Flags [none], vni 0xb: IP 30.0.0.2.51225 > 30.0.0.1.22: Flags [.], ack 2040, win 161, options [nop,nop,TS val 2876070846 ecr 84249289], length 0 -IP 20.0.0.2.43443 > 20.0.0.1.6081: Geneve, Flags [none], vni 0xb: IP 30.0.0.2.51225 > 30.0.0.1.22: Flags [P.], seq 1254:1382, ack 2040, win 161, options [nop,nop,TS val 2876070846 ecr 84249289], length 128 -IP 20.0.0.1.22540 > 20.0.0.2.6081: Geneve, Flags [C], vni 0xa, options [8 bytes]: IP 30.0.0.1.22 > 30.0.0.2.51225: Flags [P.], seq 2040:2088, ack 1382, win 276, options [nop,nop,TS val 84249292 ecr 2876070846], length 48 -IP 20.0.0.2.43443 > 20.0.0.1.6081: Geneve, Flags [none], vni 0xb: IP 30.0.0.2.51225 > 30.0.0.1.22: Flags [P.], seq 1382:1830, ack 2088, win 161, options [nop,nop,TS val 2876070859 ecr 84249292], length 448 -IP 20.0.0.1.22540 > 20.0.0.2.6081: Geneve, Flags [C], vni 0xa, options [8 bytes]: IP 30.0.0.1.22 > 30.0.0.2.51225: Flags [P.], seq 2088:2200, ack 1830, win 289, options [nop,nop,TS val 84249292 ecr 2876070859], length 112 -IP 20.0.0.1.22540 > 20.0.0.2.6081: Geneve, Flags [C], vni 0xa, options [8 bytes]: IP 30.0.0.1.22 > 30.0.0.2.51225: Flags [P.], seq 2200:2488, ack 1830, win 289, options [nop,nop,TS val 84249293 ecr 2876070859], length 288 -IP 20.0.0.2.43443 > 20.0.0.1.6081: Geneve, Flags [none], vni 0xb: IP 30.0.0.2.51225 > 30.0.0.1.22: Flags [.], ack 2488, win 176, options [nop,nop,TS val 2876070861 ecr 84249292], length 0 -IP 20.0.0.1.22540 > 20.0.0.2.6081: Geneve, Flags [C], vni 0xa, options [8 bytes]: IP 30.0.0.1.22 > 30.0.0.2.51225: Flags [P.], seq 2488:2568, ack 1830, win 289, options [nop,nop,TS val 84249351 ecr 2876070861], length 80 -IP 20.0.0.2.43443 > 20.0.0.1.6081: Geneve, Flags [none], vni 0xb: IP 30.0.0.2.51225 > 30.0.0.1.22: Flags [.], ack 2568, win 176, options [nop,nop,TS val 2876071133 ecr 84249351], length 0 diff --git a/tests/geneve-vni.out b/tests/geneve-vni.out deleted file mode 100644 index 8b6858b..0000000 --- a/tests/geneve-vni.out +++ /dev/null @@ -1,20 +0,0 @@ -IP 20.0.0.2.50525 > 20.0.0.1.6081: Geneve, Flags [none], vni 0xb: IP 30.0.0.2 > 30.0.0.1: ICMP echo reply, id 10578, seq 23, length 64 -IP 20.0.0.2.43443 > 20.0.0.1.6081: Geneve, Flags [none], vni 0xb: IP 30.0.0.2.51225 > 30.0.0.1.22: Flags [S], seq 397610159, win 14600, options [mss 1460,sackOK,TS val 2876069566 ecr 0,nop,wscale 7], length 0 -IP 20.0.0.2.43443 > 20.0.0.1.6081: Geneve, Flags [none], vni 0xb: IP 30.0.0.2.51225 > 30.0.0.1.22: Flags [.], ack 2910871523, win 115, options [nop,nop,TS val 2876069566 ecr 84248969], length 0 -IP 20.0.0.2.43443 > 20.0.0.1.6081: Geneve, Flags [none], vni 0xb: IP 30.0.0.2.51225 > 30.0.0.1.22: Flags [.], ack 40, win 115, options [nop,nop,TS val 2876069573 ecr 84248971], length 0 -IP 20.0.0.2.43443 > 20.0.0.1.6081: Geneve, Flags [none], vni 0xb: IP 30.0.0.2.51225 > 30.0.0.1.22: Flags [P.], seq 0:21, ack 40, win 115, options [nop,nop,TS val 2876069573 ecr 84248971], length 21 -IP 20.0.0.2.43443 > 20.0.0.1.6081: Geneve, Flags [none], vni 0xb: IP 30.0.0.2.51225 > 30.0.0.1.22: Flags [P.], seq 21:813, ack 40, win 115, options [nop,nop,TS val 2876069573 ecr 84248971], length 792 -IP 20.0.0.2.43443 > 20.0.0.1.6081: Geneve, Flags [none], vni 0xb: IP 30.0.0.2.51225 > 30.0.0.1.22: Flags [P.], seq 813:837, ack 1024, win 130, options [nop,nop,TS val 2876069574 ecr 84248971], length 24 -IP 20.0.0.2.43443 > 20.0.0.1.6081: Geneve, Flags [none], vni 0xb: IP 30.0.0.2.51225 > 30.0.0.1.22: Flags [P.], seq 837:981, ack 1176, win 145, options [nop,nop,TS val 2876069577 ecr 84248972], length 144 -IP 20.0.0.2.43443 > 20.0.0.1.6081: Geneve, Flags [none], vni 0xb: IP 30.0.0.2.51225 > 30.0.0.1.22: Flags [P.], seq 981:997, ack 1896, win 161, options [nop,nop,TS val 2876069583 ecr 84248973], length 16 -IP 20.0.0.2.43443 > 20.0.0.1.6081: Geneve, Flags [none], vni 0xb: IP 30.0.0.2.51225 > 30.0.0.1.22: Flags [P.], seq 997:1045, ack 1896, win 161, options [nop,nop,TS val 2876069620 ecr 84248983], length 48 -IP 20.0.0.2.43443 > 20.0.0.1.6081: Geneve, Flags [none], vni 0xb: IP 30.0.0.2.51225 > 30.0.0.1.22: Flags [P.], seq 1045:1109, ack 1944, win 161, options [nop,nop,TS val 2876069621 ecr 84248983], length 64 -IP 20.0.0.2.43443 > 20.0.0.1.6081: Geneve, Flags [none], vni 0xb: IP 30.0.0.2.51225 > 30.0.0.1.22: Flags [.], ack 2008, win 161, options [nop,nop,TS val 2876069662 ecr 84248983], length 0 -IP 20.0.0.2.50525 > 20.0.0.1.6081: Geneve, Flags [none], vni 0xb: IP 30.0.0.2 > 30.0.0.1: ICMP echo reply, id 10578, seq 24, length 64 -IP 20.0.0.2.43443 > 20.0.0.1.6081: Geneve, Flags [none], vni 0xb: IP 30.0.0.2.51225 > 30.0.0.1.22: Flags [P.], seq 1109:1253, ack 2008, win 161, options [nop,nop,TS val 2876070845 ecr 84248983], length 144 -IP 20.0.0.2.43443 > 20.0.0.1.6081: Geneve, Flags [none], vni 0xb: IP 30.0.0.2.51225 > 30.0.0.1.22: Flags [.], ack 2040, win 161, options [nop,nop,TS val 2876070846 ecr 84249289], length 0 -IP 20.0.0.2.43443 > 20.0.0.1.6081: Geneve, Flags [none], vni 0xb: IP 30.0.0.2.51225 > 30.0.0.1.22: Flags [P.], seq 1253:1381, ack 2040, win 161, options [nop,nop,TS val 2876070846 ecr 84249289], length 128 -IP 20.0.0.2.43443 > 20.0.0.1.6081: Geneve, Flags [none], vni 0xb: IP 30.0.0.2.51225 > 30.0.0.1.22: Flags [P.], seq 1381:1829, ack 2088, win 161, options [nop,nop,TS val 2876070859 ecr 84249292], length 448 -IP 20.0.0.2.43443 > 20.0.0.1.6081: Geneve, Flags [none], vni 0xb: IP 30.0.0.2.51225 > 30.0.0.1.22: Flags [.], ack 2488, win 176, options [nop,nop,TS val 2876070861 ecr 84249292], length 0 -IP 20.0.0.2.43443 > 20.0.0.1.6081: Geneve, Flags [none], vni 0xb: IP 30.0.0.2.51225 > 30.0.0.1.22: Flags [.], ack 2568, win 176, options [nop,nop,TS val 2876071133 ecr 84249351], length 0 -IP 20.0.0.2.50525 > 20.0.0.1.6081: Geneve, Flags [none], vni 0xb: IP 30.0.0.2 > 30.0.0.1: ICMP echo reply, id 10578, seq 25, length 64 diff --git a/tests/geneve-vv.out b/tests/geneve-vv.out deleted file mode 100644 index eb50e66..0000000 --- a/tests/geneve-vv.out +++ /dev/null @@ -1,156 +0,0 @@ -IP (tos 0x0, ttl 64, id 57261, offset 0, flags [DF], proto UDP (17), length 142) - 20.0.0.1.12618 > 20.0.0.2.6081: [no cksum] Geneve, Flags [C], vni 0xa, options [class Standard (0x0) type 0x80(C) len 8 data 0000000c] - IP (tos 0x0, ttl 64, id 48546, offset 0, flags [DF], proto ICMP (1), length 84) - 30.0.0.1 > 30.0.0.2: ICMP echo request, id 10578, seq 23, length 64 -IP (tos 0x0, ttl 64, id 34821, offset 0, flags [DF], proto UDP (17), length 134) - 20.0.0.2.50525 > 20.0.0.1.6081: [no cksum] Geneve, Flags [none], vni 0xb - IP (tos 0x0, ttl 64, id 4595, offset 0, flags [none], proto ICMP (1), length 84) - 30.0.0.2 > 30.0.0.1: ICMP echo reply, id 10578, seq 23, length 64 -IP (tos 0x0, ttl 64, id 34822, offset 0, flags [DF], proto UDP (17), length 110) - 20.0.0.2.43443 > 20.0.0.1.6081: [no cksum] Geneve, Flags [none], vni 0xb - IP (tos 0x0, ttl 64, id 23057, offset 0, flags [DF], proto TCP (6), length 60) - 30.0.0.2.51225 > 30.0.0.1.22: Flags [S], cksum 0xe437 (correct), seq 397610159, win 14600, options [mss 1460,sackOK,TS val 2876069566 ecr 0,nop,wscale 7], length 0 -IP (tos 0x0, ttl 64, id 57274, offset 0, flags [DF], proto UDP (17), length 118) - 20.0.0.1.22540 > 20.0.0.2.6081: [no cksum] Geneve, Flags [C], vni 0xa, options [class Standard (0x0) type 0x80(C) len 8 data 0000000c] - IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto TCP (6), length 60) - 30.0.0.1.22 > 30.0.0.2.51225: Flags [S.], cksum 0x101d (correct), seq 2910871522, ack 397610160, win 28960, options [mss 1460,sackOK,TS val 84248969 ecr 2876069566,nop,wscale 7], length 0 -IP (tos 0x0, ttl 64, id 34823, offset 0, flags [DF], proto UDP (17), length 102) - 20.0.0.2.43443 > 20.0.0.1.6081: [no cksum] Geneve, Flags [none], vni 0xb - IP (tos 0x0, ttl 64, id 23058, offset 0, flags [DF], proto TCP (6), length 52) - 30.0.0.2.51225 > 30.0.0.1.22: Flags [.], cksum 0xaf96 (correct), seq 1, ack 1, win 115, options [nop,nop,TS val 2876069566 ecr 84248969], length 0 -IP (tos 0x0, ttl 64, id 57275, offset 0, flags [DF], proto UDP (17), length 149) - 20.0.0.1.22540 > 20.0.0.2.6081: [no cksum] Geneve, Flags [C], vni 0xa, options [class Standard (0x0) type 0x80(C) len 8 data 0000000c] - IP (tos 0x0, ttl 64, id 54890, offset 0, flags [DF], proto TCP (6), length 91) - 30.0.0.1.22 > 30.0.0.2.51225: Flags [P.], cksum 0xf103 (correct), seq 1:40, ack 1, win 227, options [nop,nop,TS val 84248971 ecr 2876069566], length 39 -IP (tos 0x0, ttl 64, id 34824, offset 0, flags [DF], proto UDP (17), length 102) - 20.0.0.2.43443 > 20.0.0.1.6081: [no cksum] Geneve, Flags [none], vni 0xb - IP (tos 0x0, ttl 64, id 23059, offset 0, flags [DF], proto TCP (6), length 52) - 30.0.0.2.51225 > 30.0.0.1.22: Flags [.], cksum 0xaf66 (correct), seq 1, ack 40, win 115, options [nop,nop,TS val 2876069573 ecr 84248971], length 0 -IP (tos 0x0, ttl 64, id 34825, offset 0, flags [DF], proto UDP (17), length 123) - 20.0.0.2.43443 > 20.0.0.1.6081: [no cksum] Geneve, Flags [none], vni 0xb - IP (tos 0x0, ttl 64, id 23060, offset 0, flags [DF], proto TCP (6), length 73) - 30.0.0.2.51225 > 30.0.0.1.22: Flags [P.], cksum 0xeea0 (correct), seq 1:22, ack 40, win 115, options [nop,nop,TS val 2876069573 ecr 84248971], length 21 -IP (tos 0x0, ttl 64, id 57276, offset 0, flags [DF], proto UDP (17), length 110) - 20.0.0.1.22540 > 20.0.0.2.6081: [no cksum] Geneve, Flags [C], vni 0xa, options [class Standard (0x0) type 0x80(C) len 8 data 0000000c] - IP (tos 0x0, ttl 64, id 54891, offset 0, flags [DF], proto TCP (6), length 52) - 30.0.0.1.22 > 30.0.0.2.51225: Flags [.], cksum 0xaee1 (correct), seq 40, ack 22, win 227, options [nop,nop,TS val 84248971 ecr 2876069573], length 0 -IP (tos 0x0, ttl 64, id 34826, offset 0, flags [DF], proto UDP (17), length 894) - 20.0.0.2.43443 > 20.0.0.1.6081: [no cksum] Geneve, Flags [none], vni 0xb - IP (tos 0x0, ttl 64, id 23061, offset 0, flags [DF], proto TCP (6), length 844) - 30.0.0.2.51225 > 30.0.0.1.22: Flags [P.], cksum 0xe70f (correct), seq 22:814, ack 40, win 115, options [nop,nop,TS val 2876069573 ecr 84248971], length 792 -IP (tos 0x0, ttl 64, id 57277, offset 0, flags [DF], proto UDP (17), length 110) - 20.0.0.1.22540 > 20.0.0.2.6081: [no cksum] Geneve, Flags [C], vni 0xa, options [class Standard (0x0) type 0x80(C) len 8 data 0000000c] - IP (tos 0x0, ttl 64, id 54892, offset 0, flags [DF], proto TCP (6), length 52) - 30.0.0.1.22 > 30.0.0.2.51225: Flags [.], cksum 0xabbd (correct), seq 40, ack 814, win 239, options [nop,nop,TS val 84248971 ecr 2876069573], length 0 -IP (tos 0x0, ttl 64, id 57278, offset 0, flags [DF], proto UDP (17), length 1094) - 20.0.0.1.22540 > 20.0.0.2.6081: [no cksum] Geneve, Flags [C], vni 0xa, options [class Standard (0x0) type 0x80(C) len 8 data 0000000c] - IP (tos 0x0, ttl 64, id 54893, offset 0, flags [DF], proto TCP (6), length 1036) - 30.0.0.1.22 > 30.0.0.2.51225: Flags [P.], cksum 0xb8b1 (correct), seq 40:1024, ack 814, win 239, options [nop,nop,TS val 84248971 ecr 2876069573], length 984 -IP (tos 0x0, ttl 64, id 34827, offset 0, flags [DF], proto UDP (17), length 126) - 20.0.0.2.43443 > 20.0.0.1.6081: [no cksum] Geneve, Flags [none], vni 0xb - IP (tos 0x0, ttl 64, id 23062, offset 0, flags [DF], proto TCP (6), length 76) - 30.0.0.2.51225 > 30.0.0.1.22: Flags [P.], cksum 0x79fb (correct), seq 814:838, ack 1024, win 130, options [nop,nop,TS val 2876069574 ecr 84248971], length 24 -IP (tos 0x0, ttl 64, id 57279, offset 0, flags [DF], proto UDP (17), length 262) - 20.0.0.1.22540 > 20.0.0.2.6081: [no cksum] Geneve, Flags [C], vni 0xa, options [class Standard (0x0) type 0x80(C) len 8 data 0000000c] - IP (tos 0x0, ttl 64, id 54894, offset 0, flags [DF], proto TCP (6), length 204) - 30.0.0.1.22 > 30.0.0.2.51225: Flags [P.], cksum 0xa779 (correct), seq 1024:1176, ack 838, win 239, options [nop,nop,TS val 84248972 ecr 2876069574], length 152 -IP (tos 0x0, ttl 64, id 34828, offset 0, flags [DF], proto UDP (17), length 246) - 20.0.0.2.43443 > 20.0.0.1.6081: [no cksum] Geneve, Flags [none], vni 0xb - IP (tos 0x0, ttl 64, id 23063, offset 0, flags [DF], proto TCP (6), length 196) - 30.0.0.2.51225 > 30.0.0.1.22: Flags [P.], cksum 0xecb6 (correct), seq 838:982, ack 1176, win 145, options [nop,nop,TS val 2876069577 ecr 84248972], length 144 -IP (tos 0x0, ttl 64, id 57280, offset 0, flags [DF], proto UDP (17), length 830) - 20.0.0.1.22540 > 20.0.0.2.6081: [no cksum] Geneve, Flags [C], vni 0xa, options [class Standard (0x0) type 0x80(C) len 8 data 0000000c] - IP (tos 0x0, ttl 64, id 54895, offset 0, flags [DF], proto TCP (6), length 772) - 30.0.0.1.22 > 30.0.0.2.51225: Flags [P.], cksum 0x6255 (correct), seq 1176:1896, ack 982, win 251, options [nop,nop,TS val 84248973 ecr 2876069577], length 720 -IP (tos 0x0, ttl 64, id 34829, offset 0, flags [DF], proto UDP (17), length 118) - 20.0.0.2.43443 > 20.0.0.1.6081: [no cksum] Geneve, Flags [none], vni 0xb - IP (tos 0x0, ttl 64, id 23064, offset 0, flags [DF], proto TCP (6), length 68) - 30.0.0.2.51225 > 30.0.0.1.22: Flags [P.], cksum 0x99de (correct), seq 982:998, ack 1896, win 161, options [nop,nop,TS val 2876069583 ecr 84248973], length 16 -IP (tos 0x0, ttl 64, id 57288, offset 0, flags [DF], proto UDP (17), length 110) - 20.0.0.1.22540 > 20.0.0.2.6081: [no cksum] Geneve, Flags [C], vni 0xa, options [class Standard (0x0) type 0x80(C) len 8 data 0000000c] - IP (tos 0x0, ttl 64, id 54896, offset 0, flags [DF], proto TCP (6), length 52) - 30.0.0.1.22 > 30.0.0.2.51225: Flags [.], cksum 0xa3a3 (correct), seq 1896, ack 998, win 251, options [nop,nop,TS val 84248983 ecr 2876069583], length 0 -IP (tos 0x0, ttl 64, id 34830, offset 0, flags [DF], proto UDP (17), length 150) - 20.0.0.2.43443 > 20.0.0.1.6081: [no cksum] Geneve, Flags [none], vni 0xb - IP (tos 0x0, ttl 64, id 23065, offset 0, flags [DF], proto TCP (6), length 100) - 30.0.0.2.51225 > 30.0.0.1.22: Flags [P.], cksum 0xb953 (correct), seq 998:1046, ack 1896, win 161, options [nop,nop,TS val 2876069620 ecr 84248983], length 48 -IP (tos 0x0, ttl 64, id 57289, offset 0, flags [DF], proto UDP (17), length 110) - 20.0.0.1.22540 > 20.0.0.2.6081: [no cksum] Geneve, Flags [C], vni 0xa, options [class Standard (0x0) type 0x80(C) len 8 data 0000000c] - IP (tos 0x0, ttl 64, id 54897, offset 0, flags [DF], proto TCP (6), length 52) - 30.0.0.1.22 > 30.0.0.2.51225: Flags [.], cksum 0xa34e (correct), seq 1896, ack 1046, win 251, options [nop,nop,TS val 84248983 ecr 2876069620], length 0 -IP (tos 0x0, ttl 64, id 57290, offset 0, flags [DF], proto UDP (17), length 158) - 20.0.0.1.22540 > 20.0.0.2.6081: [no cksum] Geneve, Flags [C], vni 0xa, options [class Standard (0x0) type 0x80(C) len 8 data 0000000c] - IP (tos 0x0, ttl 64, id 54898, offset 0, flags [DF], proto TCP (6), length 100) - 30.0.0.1.22 > 30.0.0.2.51225: Flags [P.], cksum 0xd5ed (correct), seq 1896:1944, ack 1046, win 251, options [nop,nop,TS val 84248983 ecr 2876069620], length 48 -IP (tos 0x0, ttl 64, id 34831, offset 0, flags [DF], proto UDP (17), length 166) - 20.0.0.2.43443 > 20.0.0.1.6081: [no cksum] Geneve, Flags [none], vni 0xb - IP (tos 0x0, ttl 64, id 23066, offset 0, flags [DF], proto TCP (6), length 116) - 30.0.0.2.51225 > 30.0.0.1.22: Flags [P.], cksum 0xf2f0 (correct), seq 1046:1110, ack 1944, win 161, options [nop,nop,TS val 2876069621 ecr 84248983], length 64 -IP (tos 0x0, ttl 64, id 57291, offset 0, flags [DF], proto UDP (17), length 174) - 20.0.0.1.22540 > 20.0.0.2.6081: [no cksum] Geneve, Flags [C], vni 0xa, options [class Standard (0x0) type 0x80(C) len 8 data 0000000c] - IP (tos 0x0, ttl 64, id 54899, offset 0, flags [DF], proto TCP (6), length 116) - 30.0.0.1.22 > 30.0.0.2.51225: Flags [P.], cksum 0x4ac6 (correct), seq 1944:2008, ack 1110, win 251, options [nop,nop,TS val 84248983 ecr 2876069621], length 64 -IP (tos 0x0, ttl 64, id 34832, offset 0, flags [DF], proto UDP (17), length 102) - 20.0.0.2.43443 > 20.0.0.1.6081: [no cksum] Geneve, Flags [none], vni 0xb - IP (tos 0x0, ttl 64, id 23067, offset 0, flags [DF], proto TCP (6), length 52) - 30.0.0.2.51225 > 30.0.0.1.22: Flags [.], cksum 0xa2ce (correct), seq 1110, ack 2008, win 161, options [nop,nop,TS val 2876069662 ecr 84248983], length 0 -IP (tos 0x0, ttl 64, id 57466, offset 0, flags [DF], proto UDP (17), length 142) - 20.0.0.1.12618 > 20.0.0.2.6081: [no cksum] Geneve, Flags [C], vni 0xa, options [class Standard (0x0) type 0x80(C) len 8 data 0000000c] - IP (tos 0x0, ttl 64, id 48621, offset 0, flags [DF], proto ICMP (1), length 84) - 30.0.0.1 > 30.0.0.2: ICMP echo request, id 10578, seq 24, length 64 -IP (tos 0x0, ttl 64, id 34833, offset 0, flags [DF], proto UDP (17), length 134) - 20.0.0.2.50525 > 20.0.0.1.6081: [no cksum] Geneve, Flags [none], vni 0xb - IP (tos 0x0, ttl 64, id 4596, offset 0, flags [none], proto ICMP (1), length 84) - 30.0.0.2 > 30.0.0.1: ICMP echo reply, id 10578, seq 24, length 64 -IP (tos 0x0, ttl 64, id 34834, offset 0, flags [DF], proto UDP (17), length 246) - 20.0.0.2.43443 > 20.0.0.1.6081: [no cksum] Geneve, Flags [none], vni 0xb - IP (tos 0x0, ttl 64, id 23068, offset 0, flags [DF], proto TCP (6), length 196) - 30.0.0.2.51225 > 30.0.0.1.22: Flags [P.], cksum 0x318f (correct), seq 1110:1254, ack 2008, win 161, options [nop,nop,TS val 2876070845 ecr 84248983], length 144 -IP (tos 0x0, ttl 64, id 57567, offset 0, flags [DF], proto UDP (17), length 142) - 20.0.0.1.22540 > 20.0.0.2.6081: [no cksum] Geneve, Flags [C], vni 0xa, options [class Standard (0x0) type 0x80(C) len 8 data 0000000c] - IP (tos 0x0, ttl 64, id 54900, offset 0, flags [DF], proto TCP (6), length 84) - 30.0.0.1.22 > 30.0.0.2.51225: Flags [P.], cksum 0x3a95 (correct), seq 2008:2040, ack 1254, win 264, options [nop,nop,TS val 84249289 ecr 2876070845], length 32 -IP (tos 0x0, ttl 64, id 34835, offset 0, flags [DF], proto UDP (17), length 102) - 20.0.0.2.43443 > 20.0.0.1.6081: [no cksum] Geneve, Flags [none], vni 0xb - IP (tos 0x0, ttl 64, id 23069, offset 0, flags [DF], proto TCP (6), length 52) - 30.0.0.2.51225 > 30.0.0.1.22: Flags [.], cksum 0x9c4c (correct), seq 1254, ack 2040, win 161, options [nop,nop,TS val 2876070846 ecr 84249289], length 0 -IP (tos 0x0, ttl 64, id 34836, offset 0, flags [DF], proto UDP (17), length 230) - 20.0.0.2.43443 > 20.0.0.1.6081: [no cksum] Geneve, Flags [none], vni 0xb - IP (tos 0x0, ttl 64, id 23070, offset 0, flags [DF], proto TCP (6), length 180) - 30.0.0.2.51225 > 30.0.0.1.22: Flags [P.], cksum 0x31d7 (correct), seq 1254:1382, ack 2040, win 161, options [nop,nop,TS val 2876070846 ecr 84249289], length 128 -IP (tos 0x0, ttl 64, id 57570, offset 0, flags [DF], proto UDP (17), length 158) - 20.0.0.1.22540 > 20.0.0.2.6081: [no cksum] Geneve, Flags [C], vni 0xa, options [class Standard (0x0) type 0x80(C) len 8 data 0000000c] - IP (tos 0x0, ttl 64, id 54901, offset 0, flags [DF], proto TCP (6), length 100) - 30.0.0.1.22 > 30.0.0.2.51225: Flags [P.], cksum 0x8215 (correct), seq 2040:2088, ack 1382, win 276, options [nop,nop,TS val 84249292 ecr 2876070846], length 48 -IP (tos 0x0, ttl 64, id 34837, offset 0, flags [DF], proto UDP (17), length 550) - 20.0.0.2.43443 > 20.0.0.1.6081: [no cksum] Geneve, Flags [none], vni 0xb - IP (tos 0x10, ttl 64, id 23071, offset 0, flags [DF], proto TCP (6), length 500) - 30.0.0.2.51225 > 30.0.0.1.22: Flags [P.], cksum 0x5e86 (correct), seq 1382:1830, ack 2088, win 161, options [nop,nop,TS val 2876070859 ecr 84249292], length 448 -IP (tos 0x0, ttl 64, id 57571, offset 0, flags [DF], proto UDP (17), length 222) - 20.0.0.1.22540 > 20.0.0.2.6081: [no cksum] Geneve, Flags [C], vni 0xa, options [class Standard (0x0) type 0x80(C) len 8 data 0000000c] - IP (tos 0x0, ttl 64, id 54902, offset 0, flags [DF], proto TCP (6), length 164) - 30.0.0.1.22 > 30.0.0.2.51225: Flags [P.], cksum 0x2c83 (correct), seq 2088:2200, ack 1830, win 289, options [nop,nop,TS val 84249292 ecr 2876070859], length 112 -IP (tos 0x0, ttl 64, id 57572, offset 0, flags [DF], proto UDP (17), length 398) - 20.0.0.1.22540 > 20.0.0.2.6081: [no cksum] Geneve, Flags [C], vni 0xa, options [class Standard (0x0) type 0x80(C) len 8 data 0000000c] - IP (tos 0x0, ttl 64, id 54903, offset 0, flags [DF], proto TCP (6), length 340) - 30.0.0.1.22 > 30.0.0.2.51225: Flags [P.], cksum 0xbe0e (correct), seq 2200:2488, ack 1830, win 289, options [nop,nop,TS val 84249293 ecr 2876070859], length 288 -IP (tos 0x0, ttl 64, id 34838, offset 0, flags [DF], proto UDP (17), length 102) - 20.0.0.2.43443 > 20.0.0.1.6081: [no cksum] Geneve, Flags [none], vni 0xb - IP (tos 0x10, ttl 64, id 23072, offset 0, flags [DF], proto TCP (6), length 52) - 30.0.0.2.51225 > 30.0.0.1.22: Flags [.], cksum 0x982b (correct), seq 1830, ack 2488, win 176, options [nop,nop,TS val 2876070861 ecr 84249292], length 0 -IP (tos 0x0, ttl 64, id 57627, offset 0, flags [DF], proto UDP (17), length 190) - 20.0.0.1.22540 > 20.0.0.2.6081: [no cksum] Geneve, Flags [C], vni 0xa, options [class Standard (0x0) type 0x80(C) len 8 data 0000000c] - IP (tos 0x0, ttl 64, id 54904, offset 0, flags [DF], proto TCP (6), length 132) - 30.0.0.1.22 > 30.0.0.2.51225: Flags [P.], cksum 0x3d51 (correct), seq 2488:2568, ack 1830, win 289, options [nop,nop,TS val 84249351 ecr 2876070861], length 80 -IP (tos 0x0, ttl 64, id 34839, offset 0, flags [DF], proto UDP (17), length 102) - 20.0.0.2.43443 > 20.0.0.1.6081: [no cksum] Geneve, Flags [none], vni 0xb - IP (tos 0x10, ttl 64, id 23073, offset 0, flags [DF], proto TCP (6), length 52) - 30.0.0.2.51225 > 30.0.0.1.22: Flags [.], cksum 0x9690 (correct), seq 1830, ack 2568, win 176, options [nop,nop,TS val 2876071133 ecr 84249351], length 0 -IP (tos 0x0, ttl 64, id 57691, offset 0, flags [DF], proto UDP (17), length 142) - 20.0.0.1.12618 > 20.0.0.2.6081: [no cksum] Geneve, Flags [C], vni 0xa, options [class Standard (0x0) type 0x80(C) len 8 data 0000000c] - IP (tos 0x0, ttl 64, id 48733, offset 0, flags [DF], proto ICMP (1), length 84) - 30.0.0.1 > 30.0.0.2: ICMP echo request, id 10578, seq 25, length 64 -IP (tos 0x0, ttl 64, id 34840, offset 0, flags [DF], proto UDP (17), length 134) - 20.0.0.2.50525 > 20.0.0.1.6081: [no cksum] Geneve, Flags [none], vni 0xb - IP (tos 0x0, ttl 64, id 4597, offset 0, flags [none], proto ICMP (1), length 84) - 30.0.0.2 > 30.0.0.1: ICMP echo reply, id 10578, seq 25, length 64 diff --git a/tests/geneve.pcap b/tests/geneve.pcap deleted file mode 100644 index 2795493..0000000 Binary files a/tests/geneve.pcap and /dev/null differ diff --git a/tests/geonet_and_calm_fast.out b/tests/geonet_and_calm_fast.out deleted file mode 100644 index eae996f..0000000 --- a/tests/geonet_and_calm_fast.out +++ /dev/null @@ -1,169 +0,0 @@ -GeoNet src:00:0c:42:6d:54:db; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:db lat:0 lon:0 -GeoNet src:00:0c:42:6d:54:d5; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:d5 lat:514769562 lon:56597275 -GeoNet src:00:0c:42:6d:54:df; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:df lat:514770788 lon:56598784 -GeoNet src:00:0c:42:6d:54:db; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:db lat:0 lon:0 -GeoNet src:00:0c:42:6d:54:d5; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:d5 lat:514769562 lon:56597275 -GeoNet src:00:0c:42:6d:54:df; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:df lat:514770788 lon:56598784 -GeoNet src:00:0c:42:6d:54:db; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:db lat:0 lon:0 -GeoNet src:00:0c:42:6d:54:d5; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:d5 lat:514769562 lon:56597275 -GeoNet src:00:0c:42:6d:54:df; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:df lat:514770822 lon:56598670 -GeoNet src:00:0c:42:6d:54:db; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:db lat:0 lon:0 -GeoNet src:00:0c:42:6d:54:d5; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:d5 lat:514769562 lon:56597275 -GeoNet src:00:0c:42:6d:54:df; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:df lat:514770711 lon:56598670 -GeoNet src:00:0c:42:6d:54:db; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:db lat:0 lon:0 -GeoNet src:00:0c:42:6d:54:d5; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:d5 lat:514769562 lon:56597275 -GeoNet src:00:0c:42:6d:54:df; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:df lat:514770711 lon:56598670 -GeoNet src:00:0c:42:69:68:be; v:0 NH:1-BTP-A HT:5-1-TopoScopeBcast-MH HopLim:2 Payload:29 GN_ADDR:c0:cc:00:0c:42:69:68:be lat:514775183 lon:56605966; BTP Dst:5000 Src:5000; ItsPduHeader v:0 t:0-CAM - 0x0000: 0000 013c f7d0 912d 0000 0019 8400 6bf4 ...<...-......k. - 0x0010: d607 abb5 6c80 09f6 00 ....l.... -GeoNet src:00:0c:42:6d:54:db; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:db lat:0 lon:0 -GeoNet src:00:0c:42:6d:54:d5; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:d5 lat:514769429 lon:56597103 -GeoNet src:00:0c:42:6d:54:df; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:df lat:514770711 lon:56598670 -CALM FAST src:00:0c:42:69:68:be; SrcNwref:0; DstNwref:0; - 0x0000: 0000 01ac 8005 4455 3540 1c02 a2b3 0290 ......DU5@...... - 0x0010: 2035 6fa0 6041 a4b6 1737 4656 56c2 0547 .5o.`A...7FVV..G - 0x0020: 2617 6657 2736 52f5 a756 9646 5696 e646 &.fW'6R..V.FV..F - 0x0030: 5020 4047 063f 9300 0030 P.@G.?...0 -GeoNet src:00:0c:42:6d:54:db; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:db lat:0 lon:0 -GeoNet src:00:0c:42:6d:54:d5; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:d5 lat:514769429 lon:56597103 -GeoNet src:00:0c:42:6d:54:df; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:df lat:514770641 lon:56598655 -GeoNet src:00:0c:42:6d:54:db; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:db lat:0 lon:0 -GeoNet src:00:0c:42:6d:54:d5; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:d5 lat:514769429 lon:56597103 -GeoNet src:00:0c:42:6d:54:df; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:df lat:514770641 lon:56598655 -GeoNet src:00:0c:42:6d:54:db; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:db lat:0 lon:0 -GeoNet src:00:0c:42:6d:54:d5; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:d5 lat:514769429 lon:56597103 -GeoNet src:00:0c:42:6d:54:df; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:df lat:514770717 lon:56598526 -GeoNet src:00:0c:42:6d:54:db; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:db lat:0 lon:0 -GeoNet src:00:0c:42:6d:54:d5; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:d5 lat:514769415 lon:56597089 -GeoNet src:00:0c:42:6d:54:df; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:df lat:514770717 lon:56598526 -GeoNet src:00:0c:42:6d:54:db; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:db lat:0 lon:0 -GeoNet src:00:0c:42:6d:54:d5; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:d5 lat:514769415 lon:56597089 -GeoNet src:00:0c:42:6d:54:df; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:df lat:514770606 lon:56598526 -GeoNet src:00:0c:42:69:68:be; v:0 NH:1-BTP-A HT:5-1-TopoScopeBcast-MH HopLim:2 Payload:29 GN_ADDR:c0:cc:00:0c:42:69:68:be lat:514775183 lon:56605966; BTP Dst:5000 Src:5000; ItsPduHeader v:0 t:0-CAM - 0x0000: 0000 013c f7d0 9ce7 0000 0019 8400 6bf4 ...<..........k. - 0x0010: d607 abb5 6c80 09f6 00 ....l.... -GeoNet src:00:0c:42:6d:54:db; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:db lat:0 lon:0 -GeoNet src:00:0c:42:6d:54:d5; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:d5 lat:514769422 lon:56596946 -GeoNet src:00:0c:42:6d:54:df; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:df lat:514770606 lon:56598526 -GeoNet src:00:0c:42:6d:54:db; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:db lat:0 lon:0 -GeoNet src:00:0c:42:6d:54:d5; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:d5 lat:514769422 lon:56596946 -GeoNet src:00:0c:42:6d:54:df; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:df lat:514770620 lon:56598541 -GeoNet src:00:0c:42:69:68:be; v:0 NH:1-BTP-A HT:5-1-TopoScopeBcast-MH HopLim:2 Payload:29 GN_ADDR:c0:cc:00:0c:42:69:68:be lat:514775183 lon:56605966; BTP Dst:5000 Src:5000; ItsPduHeader v:0 t:0-CAM - 0x0000: 0000 013c f7d0 a0d0 0000 0019 8400 6bf4 ...<..........k. - 0x0010: d607 abb5 6c80 09f6 00 ....l.... -GeoNet src:00:0c:42:6d:54:db; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:db lat:0 lon:0 -CALM FAST src:00:0c:42:69:68:be; SrcNwref:0; DstNwref:0; - 0x0000: 0000 02dc 8005 4455 3540 1c02 0513 04f3 ......DU5@...... - 0x0010: 0380 2030 0ff8 4020 356f a060 a010 2300 ...0..@.5o.`..#. - 0x0020: a020 4512 4d10 e020 202c 9300 c020 402b ..E.M....,....@+ - 0x0030: 2fc1 5020 4188 be06 5300 6020 1000 2010 /.P.A...S.`..... - 0x0040: 0020 1000 2010 00a0 101a 1133 0000 2010 ...........3.... - 0x0050: 0020 1000 a010 2020 1000 2010 0040 0060 .............@.` -GeoNet src:00:0c:42:6d:54:d5; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:d5 lat:514769408 lon:56596932 -GeoNet src:00:0c:42:6d:54:df; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:df lat:514770514 lon:56598397 -CALM FAST src:00:0c:42:69:68:be; SrcNwref:0; DstNwref:0; - 0x0000: 0000 01ac 8005 4455 3540 1c02 a2b3 0290 ......DU5@...... - 0x0010: 2035 6fa0 6041 a4b6 1737 4656 56c2 0547 .5o.`A...7FVV..G - 0x0020: 2617 6657 2736 52f5 a756 9646 5696 e646 &.fW'6R..V.FV..F - 0x0030: 5020 4039 226f 5300 0030 P.@9"oS..0 -GeoNet src:00:0c:42:6d:54:db; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:db lat:0 lon:0 -GeoNet src:00:0c:42:6d:54:d5; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:d5 lat:514769408 lon:56596932 -GeoNet src:00:0c:42:6d:54:df; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:df lat:514770514 lon:56598397 -GeoNet src:00:0c:42:69:68:be; v:0 NH:1-BTP-A HT:5-1-TopoScopeBcast-MH HopLim:2 Payload:29 GN_ADDR:c0:cc:00:0c:42:69:68:be lat:514775183 lon:56605966; BTP Dst:5000 Src:5000; ItsPduHeader v:0 t:0-CAM - 0x0000: 0000 013c f7d0 a4b9 0000 0019 8400 6bf4 ...<..........k. - 0x0010: d607 abb5 6c80 09f6 00 ....l.... -GeoNet src:00:0c:42:6d:54:db; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:db lat:0 lon:0 -GeoNet src:00:0c:42:6d:54:d5; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:d5 lat:514769352 lon:56596932 -GeoNet src:00:0c:42:6d:54:df; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:df lat:514770514 lon:56598397 -CALM FAST src:00:0c:42:69:68:be; SrcNwref:0; DstNwref:0; - 0x0000: 0000 01ac 8005 4455 3540 1c02 a2b3 0290 ......DU5@...... - 0x0010: 2035 6fa0 6041 a4b6 1737 4656 56c2 0547 .5o.`A...7FVV..G - 0x0020: 2617 6657 2736 52f5 a756 9646 5696 e646 &.fW'6R..V.FV..F - 0x0030: 5020 4039 226f 5300 0030 P.@9"oS..0 -GeoNet src:00:0c:42:69:68:be; v:0 NH:1-BTP-A HT:5-1-TopoScopeBcast-MH HopLim:2 Payload:138 GN_ADDR:c0:cc:00:0c:42:69:68:be lat:514775183 lon:56605966; BTP Dst:6103 Src:6103; ItsPduHeader v:0 t:106-ecoCAM - 0x0000: 006a 013c f7d0 a6aa 0000 0066 0026 013c .j.<.......f.&.< - 0x0010: f7d0 ba32 0080 0280 00cc 0407 d456 4c00 ...2.........VL. - 0x0020: 8000 9e7b e857 2100 9e7b e857 2100 00cc ...{.W!..{.W!... - 0x0030: 0407 d4ab cc00 8000 9e7b e85a ed00 9e7b .........{.Z...{ - 0x0040: e85a ed00 00cc 0407 d501 cc00 8000 9e7b .Z.............{ - 0x0050: e85e b900 9e7b e85e b900 00cc 0407 d557 .^...{.^.......W - 0x0060: 4c00 8000 9e7b e862 8500 9e7b e862 8500 L....{.b...{.b.. - 0x0070: 00cc 0407 d5ad 4c00 8000 9e7b e866 5100 ......L....{.fQ. - 0x0080: 9e7b e866 5100 .{.fQ. -GeoNet src:00:0c:42:69:68:be; v:0 NH:1-BTP-A HT:5-1-TopoScopeBcast-MH HopLim:2 Payload:29 GN_ADDR:c0:cc:00:0c:42:69:68:be lat:514775183 lon:56605966; BTP Dst:5000 Src:5000; ItsPduHeader v:0 t:0-CAM - 0x0000: 0000 013c f7d0 a6ae 0000 0019 8400 6bf4 ...<..........k. - 0x0010: d607 abb5 6c80 09f6 00 ....l.... -GeoNet src:00:0c:42:69:68:be; v:0 NH:1-BTP-A HT:5-1-TopoScopeBcast-MH HopLim:2 Payload:236 GN_ADDR:c0:cc:00:0c:42:69:68:be lat:514775183 lon:56605966; BTP Dst:6102 Src:6102; ItsPduHeader v:0 t:106-ecoCAM - 0x0000: 006a 013c f7d0 a6e1 0000 0066 fe7f 013c .j.<.......f...< - 0x0010: f7d0 ba69 0006 6000 b402 03e9 0004 4e34 ...i..`.......N4 - 0x0020: 4030 000f de81 770f 4602 03ea 0204 4e4a @0....w.F.....NJ - 0x0030: 044e 4a80 3000 0fde 85dc 0f20 0004 0203 .NJ.0........... - 0x0040: eb00 044e 5c40 3000 0fde 8947 0f44 0207 ...N\@0....G.D.. - 0x0050: d400 049c 9040 3000 0fde 80bb 8f44 0207 .....@0......D.. - 0x0060: d500 049c a440 3000 0fde 8232 8f44 0207 .....@0....2.D.. - 0x0070: d600 044e 9840 3000 0fde 8232 8f44 020b ...N.@0....2.D.. - 0x0080: bf00 04ea ec40 3000 0fde 83a9 8f46 020b .....@0......F.. - 0x0090: c002 04eb 0204 eb02 8030 000f de85 dc0f .........0...... - 0x00a0: 2000 0602 0bc1 0004 eb14 4030 000f de86 ..........@0.... - 0x00b0: 978f 4000 1402 0faa 0006 0139 4840 3000 ..@........9H@0. - 0x00c0: 0fde 86d6 0f44 020f ab00 0601 395c 4030 .....D......9\@0 - 0x00d0: 000f de8a 7f8f 4402 0fac 0006 0139 7040 ......D......9p@ - 0x00e0: 3000 0fde 8b3b 0f40 0....;.@ -GeoNet src:00:0c:42:6d:54:db; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:db lat:0 lon:0 -GeoNet src:00:0c:42:6d:54:d5; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:d5 lat:514769352 lon:56596932 -GeoNet src:00:0c:42:6d:54:df; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:df lat:514770473 lon:56598412 -GeoNet src:00:0c:42:6d:54:db; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:db lat:0 lon:0 -GeoNet src:00:0c:42:6d:54:d5; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:d5 lat:514769345 lon:56597075 -GeoNet src:00:0c:42:6d:54:df; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:df lat:514770473 lon:56598412 -GeoNet src:00:0c:42:6d:54:db; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:db lat:0 lon:0 -CALM FAST src:00:0c:42:69:68:be; SrcNwref:0; DstNwref:0; - 0x0000: 0000 02dc 8005 4455 3540 1c02 0513 04f3 ......DU5@...... - 0x0010: 0380 2030 0ff8 9020 356f a060 a010 2300 ...0....5o.`..#. - 0x0020: a020 4512 4d11 1020 200d e300 c020 402b ..E.M.........@+ - 0x0030: 2fc1 5020 4188 be06 5300 6020 1000 2010 /.P.A...S.`..... - 0x0040: 0020 1000 2010 00a0 101a 1133 0000 2010 ...........3.... - 0x0050: 0020 1000 a010 2020 1000 2010 0040 0060 .............@.` -GeoNet src:00:0c:42:6d:54:d5; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:d5 lat:514769345 lon:56597075 -GeoNet src:00:0c:42:6d:54:df; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:df lat:514770528 lon:56598412 -GeoNet src:00:0c:42:6d:54:db; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:db lat:0 lon:0 -GeoNet src:00:0c:42:6d:54:d5; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:d5 lat:514769345 lon:56597075 -GeoNet src:00:0c:42:6d:54:df; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:df lat:514770528 lon:56598412 -GeoNet src:00:0c:42:6d:54:db; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:db lat:0 lon:0 -GeoNet src:00:0c:42:6d:54:d5; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:d5 lat:514769345 lon:56597075 -GeoNet src:00:0c:42:6d:54:df; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:df lat:514770473 lon:56598412 -GeoNet src:00:0c:42:6d:54:db; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:db lat:0 lon:0 -GeoNet src:00:0c:42:6d:54:d5; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:d5 lat:514769289 lon:56597075 -GeoNet src:00:0c:42:6d:54:df; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:df lat:514770473 lon:56598412 -GeoNet src:00:0c:42:6d:54:db; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:db lat:0 lon:0 -GeoNet src:00:0c:42:6d:54:d5; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:d5 lat:514769289 lon:56597075 -GeoNet src:00:0c:42:6d:54:df; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:df lat:514770486 lon:56598426 -GeoNet src:00:0c:42:6d:54:db; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:db lat:0 lon:0 -GeoNet src:00:0c:42:6d:54:d5; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:d5 lat:514769289 lon:56597075 -GeoNet src:00:0c:42:6d:54:df; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:df lat:514770486 lon:56598426 -GeoNet src:00:0c:42:69:68:be; v:0 NH:1-BTP-A HT:5-1-TopoScopeBcast-MH HopLim:2 Payload:29 GN_ADDR:c0:cc:00:0c:42:69:68:be lat:514775183 lon:56605966; BTP Dst:5000 Src:5000; ItsPduHeader v:0 t:0-CAM - 0x0000: 0000 013c f7d0 b651 0000 0019 8400 6bf4 ...<...Q......k. - 0x0010: d607 abb5 6c80 09f6 00 ....l.... -GeoNet src:00:0c:42:69:68:be; v:0 NH:1-BTP-A HT:5-1-TopoScopeBcast-MH HopLim:2 Payload:138 GN_ADDR:c0:cc:00:0c:42:69:68:be lat:514775183 lon:56605966; BTP Dst:6103 Src:6103; ItsPduHeader v:0 t:106-ecoCAM - 0x0000: 006a 013c f7d0 b650 0000 0066 002e 013c .j.<...P...f...< - 0x0010: f7d0 c9d8 0080 0280 00cc 0407 d456 4c00 .............VL. - 0x0020: 8000 9e7b e85e f400 9e7b e85e f400 00cc ...{.^...{.^.... - 0x0030: 0407 d4ab cc00 8000 9e7b e862 c000 9e7b .........{.b...{ - 0x0040: e862 c000 00cc 0407 d501 cc00 8000 9e7b .b.............{ - 0x0050: e866 8c00 9e7b e866 8c00 00cc 0407 d557 .f...{.f.......W - 0x0060: 4c00 8000 9e7b e86a 5800 9e7b e86a 5800 L....{.jX..{.jX. - 0x0070: 00cc 0407 d5ad 4c00 8000 9e7b e86e 2400 ......L....{.n$. - 0x0080: 9e7b e86e 2400 .{.n$. -GeoNet src:00:0c:42:6d:54:db; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:db lat:0 lon:0 -GeoNet src:00:0c:42:6d:54:d5; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:d5 lat:514769289 lon:56597075 -GeoNet src:00:0c:42:6d:54:df; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:df lat:514770486 lon:56598426 -GeoNet src:00:0c:42:6d:54:db; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:db lat:0 lon:0 -GeoNet src:00:0c:42:6d:54:d5; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:d5 lat:514769289 lon:56597075 -GeoNet src:00:0c:42:6d:54:df; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:df lat:514770486 lon:56598426 -GeoNet src:00:0c:42:6d:54:db; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:db lat:0 lon:0 -GeoNet src:00:0c:42:6d:54:d5; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:d5 lat:514769289 lon:56597075 -GeoNet src:00:0c:42:6d:54:df; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:df lat:514770592 lon:56598569 -GeoNet src:00:0c:42:6d:54:db; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:db lat:0 lon:0 -GeoNet src:00:0c:42:6d:54:d5; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:d5 lat:514769289 lon:56597075 -GeoNet src:00:0c:42:6d:54:df; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:df lat:514770592 lon:56598569 -GeoNet src:00:0c:42:6d:54:db; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:db lat:0 lon:0 -GeoNet src:00:0c:42:6d:54:d5; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:6d:54:d5 lat:514769289 lon:56597075 diff --git a/tests/geonet_and_calm_fast.pcap b/tests/geonet_and_calm_fast.pcap deleted file mode 100644 index eaaebe5..0000000 Binary files a/tests/geonet_and_calm_fast.pcap and /dev/null differ diff --git a/tests/hdlc1.out b/tests/hdlc1.out deleted file mode 100644 index 3c510e0..0000000 --- a/tests/hdlc1.out +++ /dev/null @@ -1 +0,0 @@ -SLARP (length: 18), keepalive: mineseen=0x000d0a31, yourseen=0x57405e26, reliability=0x04ff, link uptime=49d12h52m33s diff --git a/tests/hdlc2.out b/tests/hdlc2.out deleted file mode 100644 index 78a2663..0000000 --- a/tests/hdlc2.out +++ /dev/null @@ -1 +0,0 @@ -SLARP (length: 14), keepalive: mineseen=0x000d0a31, yourseen=0x57405e26, reliability=0x04ff diff --git a/tests/hdlc3.out b/tests/hdlc3.out deleted file mode 100644 index edbc605..0000000 --- a/tests/hdlc3.out +++ /dev/null @@ -1,38 +0,0 @@ -SLARP (length: 20), keepalive: mineseen=0x00000005, yourseen=0x00000002, reliability=0xffff, link uptime=0d2h12m5s -SLARP (length: 20), keepalive: mineseen=0x00000003, yourseen=0x00000005, reliability=0xffff, link uptime=0d6h51m44s -SLARP (length: 20), keepalive: mineseen=0x00000006, yourseen=0x00000003, reliability=0xffff, link uptime=0d2h12m15s -SLARP (length: 20), keepalive: mineseen=0x00000004, yourseen=0x00000006, reliability=0xffff, link uptime=0d6h51m54s -SLARP (length: 20), keepalive: mineseen=0x00000007, yourseen=0x00000004, reliability=0xffff, link uptime=0d2h12m25s -SLARP (length: 20), keepalive: mineseen=0x00000005, yourseen=0x00000007, reliability=0xffff, link uptime=0d6h52m4s -IP 10.0.0.1 > 10.0.0.2: ICMP echo request, id 0, seq 0, length 80 -IP 10.0.0.2 > 10.0.0.1: ICMP echo reply, id 0, seq 0, length 80 -IP 10.0.0.1 > 10.0.0.2: ICMP echo request, id 0, seq 1, length 80 -IP 10.0.0.2 > 10.0.0.1: ICMP echo reply, id 0, seq 1, length 80 -IP 10.0.0.1 > 10.0.0.2: ICMP echo request, id 0, seq 2, length 80 -IP 10.0.0.2 > 10.0.0.1: ICMP echo reply, id 0, seq 2, length 80 -IP 10.0.0.1 > 10.0.0.2: ICMP echo request, id 0, seq 3, length 80 -IP 10.0.0.2 > 10.0.0.1: ICMP echo reply, id 0, seq 3, length 80 -IP 10.0.0.1 > 10.0.0.2: ICMP echo request, id 0, seq 4, length 80 -IP 10.0.0.2 > 10.0.0.1: ICMP echo reply, id 0, seq 4, length 80 -unknown CHDLC protocol (0x2000) -SLARP (length: 20), keepalive: mineseen=0x00000008, yourseen=0x00000005, reliability=0xffff, link uptime=0d2h12m35s -SLARP (length: 20), keepalive: mineseen=0x00000006, yourseen=0x00000008, reliability=0xffff, link uptime=0d6h52m14s -unknown CHDLC protocol (0x2000) -SLARP (length: 20), keepalive: mineseen=0x00000009, yourseen=0x00000006, reliability=0xffff, link uptime=0d2h12m45s -SLARP (length: 20), keepalive: mineseen=0x00000007, yourseen=0x00000009, reliability=0xffff, link uptime=0d6h52m24s -SLARP (length: 20), keepalive: mineseen=0x0000000a, yourseen=0x00000007, reliability=0xffff, link uptime=0d2h12m55s -SLARP (length: 20), keepalive: mineseen=0x00000008, yourseen=0x0000000a, reliability=0xffff, link uptime=0d6h52m34s -SLARP (length: 20), keepalive: mineseen=0x0000000b, yourseen=0x00000008, reliability=0xffff, link uptime=0d2h13m5s -SLARP (length: 20), keepalive: mineseen=0x00000009, yourseen=0x0000000b, reliability=0xffff, link uptime=0d6h52m44s -SLARP (length: 20), keepalive: mineseen=0x0000000c, yourseen=0x00000009, reliability=0xffff, link uptime=0d2h13m15s -SLARP (length: 20), keepalive: mineseen=0x0000000a, yourseen=0x0000000c, reliability=0xffff, link uptime=0d6h52m54s -SLARP (length: 20), keepalive: mineseen=0x0000000d, yourseen=0x0000000a, reliability=0xffff, link uptime=0d2h13m25s -SLARP (length: 20), keepalive: mineseen=0x0000000b, yourseen=0x0000000d, reliability=0xffff, link uptime=0d6h53m4s -unknown CHDLC protocol (0x2000) -SLARP (length: 20), keepalive: mineseen=0x0000000e, yourseen=0x0000000b, reliability=0xffff, link uptime=0d2h13m35s -SLARP (length: 20), keepalive: mineseen=0x0000000c, yourseen=0x0000000e, reliability=0xffff, link uptime=0d6h53m14s -unknown CHDLC protocol (0x2000) -SLARP (length: 20), keepalive: mineseen=0x0000000f, yourseen=0x0000000c, reliability=0xffff, link uptime=0d2h13m45s -SLARP (length: 20), keepalive: mineseen=0x0000000d, yourseen=0x0000000f, reliability=0xffff, link uptime=0d6h53m24s -SLARP (length: 20), keepalive: mineseen=0x00000010, yourseen=0x0000000d, reliability=0xffff, link uptime=0d2h13m55s -SLARP (length: 20), keepalive: mineseen=0x0000000e, yourseen=0x00000010, reliability=0xffff, link uptime=0d6h53m34s diff --git a/tests/hdlc4.out b/tests/hdlc4.out deleted file mode 100644 index deffd79..0000000 --- a/tests/hdlc4.out +++ /dev/null @@ -1,7 +0,0 @@ -SLARP (length: 20), keepalive: mineseen=0x00000001, yourseen=0x00000000, reliability=0xffff, link uptime=1d0h1m32s -SLARP (length: 20), request -SLARP (length: 20), reply 15.0.0.1/255.255.255.252 -SLARP (length: 20), keepalive: mineseen=0x00000001, yourseen=0x00000000, reliability=0xffff, link uptime=1d0h1m42s -SLARP (length: 20), keepalive: mineseen=0x00000001, yourseen=0x00000001, reliability=0xffff, link uptime=1d4h41m19s -SLARP (length: 20), keepalive: mineseen=0x00000002, yourseen=0x00000001, reliability=0xffff, link uptime=1d0h1m52s -SLARP (length: 20), keepalive: mineseen=0x00000002, yourseen=0x00000002, reliability=0xffff, link uptime=1d4h41m29s diff --git a/tests/hdlc_slarp.pcap b/tests/hdlc_slarp.pcap deleted file mode 100644 index 3a24dca..0000000 Binary files a/tests/hdlc_slarp.pcap and /dev/null differ diff --git a/tests/hncp.out b/tests/hncp.out deleted file mode 100644 index 5a171e7..0000000 --- a/tests/hncp.out +++ /dev/null @@ -1,53 +0,0 @@ -IP6 (hlim 1, next-header UDP (17) payload length: 32) fe80::218:f3ff:fea9:914e.8231 > ff02::11.8231: [udp sum ok] hncp (24) - Node endpoint (12) NID: 31:da:78:d2 EPID: 03000000 - Network state (12) hash: 2ae5f77255200bcc -IP6 (hlim 64, next-header UDP (17) payload length: 12) fe80::21e:64ff:fe23:4d34.8231 > fe80::218:f3ff:fea9:914e.8231: [udp sum ok] hncp (4) - Request network state (4) -IP6 (hlim 64, next-header UDP (17) payload length: 80) fe80::218:f3ff:fea9:914e.8231 > fe80::21e:64ff:fe23:4d34.8231: [udp sum ok] hncp (72) - Node endpoint (12) NID: 31:da:78:d2 EPID: 03000000 - Network state (12) hash: 2ae5f77255200bcc - Node state (24) NID: 31:da:78:d2 seqno: 19 290.16s hash: 800088c8e0714638 - Node state (24) NID: 61:69:ed:63 seqno: 12 521.77s hash: 011fffa1da966148 -IP6 (hlim 64, next-header UDP (17) payload length: 16) fe80::21e:64ff:fe23:4d34.8231 > fe80::218:f3ff:fea9:914e.8231: [udp sum ok] hncp (8) - Request node state (8) NID: 31:da:78:d2 -IP6 (hlim 64, next-header UDP (17) payload length: 16) fe80::21e:64ff:fe23:4d34.8231 > fe80::218:f3ff:fea9:914e.8231: [udp sum ok] hncp (8) - Request node state (8) NID: 61:69:ed:63 -IP6 (hlim 64, next-header UDP (17) payload length: 332) fe80::218:f3ff:fea9:914e.8231 > fe80::21e:64ff:fe23:4d34.8231: [udp sum ok] hncp (324) - Node endpoint (12) NID: 31:da:78:d2 EPID: 03000000 - Node state (312) NID: 31:da:78:d2 seqno: 19 290.33s hash: 800088c8e0714638 - Peer (16) Peer-NID: 61:69:ed:63 Peer-EPID: 01000000 Local-EPID: 01000000 - HNCP-Version (22) M: 0 P: 4 H: 4 L: 4 User-agent: hnetd/cac971d - External-Connection (52) - Delegated-Prefix (36) VLSO: 5.99s PLSO: 2.99s Prefix: 10.0.0.0/8 - Prefix-Policy (5) type: Internet connectivity - DHCPv4-Data (10) - DNS-server (6) 192.168.1.254 - Assigned-Prefix (18) EPID: 03000000 Prty: 2 Prefix: fd1f:f88c:e207:dbbc::/64 - Assigned-Prefix (25) EPID: 01000000 Prty: 2 Prefix: 10.0.99.0/24 - Assigned-Prefix (25) EPID: 03000000 Prty: 2 Prefix: 10.0.101.0/24 - Node-Address (24) EPID: 01000000 IP Address: 10.0.99.2 - Node-Address (24) EPID: 01000000 IP Address: fd1f:f88c:e207::2 - Node-Address (24) EPID: 03000000 IP Address: 10.0.101.27 - Node-Address (24) EPID: 03000000 IP Address: fd1f:f88c:e207:dbbc::1b - Node-Name (23) IP-Address: 10.0.101.27 Name: "r1" -IP6 (hlim 64, next-header UDP (17) payload length: 564) fe80::218:f3ff:fea9:914e.8231 > fe80::21e:64ff:fe23:4d34.8231: [udp sum ok] hncp (556) - Node endpoint (12) NID: 31:da:78:d2 EPID: 03000000 - Node state (544) NID: 61:69:ed:63 seqno: 12 521.95s hash: 011fffa1da966148 - Peer (16) Peer-NID: 31:da:78:d2 Peer-EPID: 01000000 Local-EPID: 01000000 - HNCP-Version (22) M: 0 P: 4 H: 4 L: 4 User-agent: hnetd/cac971d - External-Connection (23) - Delegated-Prefix (19) VLSO: 5.99s PLSO: 2.99s Prefix: fd1f:f88c:e207::/48 - Assigned-Prefix (18) EPID: 01000000 Prty: 2 Prefix: fd1f:f88c:e207::/64 - Assigned-Prefix (18) EPID: 03000000 Prty: 2 Prefix: fd1f:f88c:e207:17::/64 - Assigned-Prefix (25) EPID: 03000000 Prty: 2 Prefix: 10.0.116.0/24 - Node-Address (24) EPID: 01000000 IP Address: 10.0.99.41 - Node-Address (24) EPID: 01000000 IP Address: fd1f:f88c:e207::69 - Node-Address (24) EPID: 03000000 IP Address: 10.0.116.44 - Node-Address (24) EPID: 03000000 IP Address: fd1f:f88c:e207:17::6c - DNS-Delegated-Zone (33) IP-Address: fd1f:f88c:e207::69 lb- lan.r.home - DNS-Delegated-Zone (35) IP-Address: fd1f:f88c:e207:17::6c lb- wlan0.r.home - DNS-Delegated-Zone (44) IP-Address: fd1f:f88c:e207:17::6c --- 116.0.10.in-addr.arpa - DNS-Delegated-Zone (63) IP-Address: fd1f:f88c:e207::69 --- 0.0.0.0.7.0.2.e.c.8.8.f.f.1.d.f.ip6.arpa - DNS-Delegated-Zone (63) IP-Address: fd1f:f88c:e207:17::6c --- 7.1.0.0.7.0.2.e.c.8.8.f.f.1.d.f.ip6.arpa - Node-Name (22) IP-Address: 10.0.116.44 Name: "r" - Node-Name (22) IP-Address: fd1f:f88c:e207:17::6c Name: "r" diff --git a/tests/hncp.pcap b/tests/hncp.pcap deleted file mode 100644 index 16d7047..0000000 Binary files a/tests/hncp.pcap and /dev/null differ diff --git a/tests/hsrp_1-v.out b/tests/hsrp_1-v.out deleted file mode 100644 index 61b8e2b..0000000 --- a/tests/hsrp_1-v.out +++ /dev/null @@ -1,102 +0,0 @@ -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.20.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.20.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.20.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 44) - 192.168.0.20.1985 > 224.0.0.2.1985: HSRPv0-unknown (3) 16: state=initial group=2 [|hsrp] -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.20.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.20.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.20.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.20.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 44) - 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-unknown (3) 16: state=initial group=2 [|hsrp] -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 44) - 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-unknown (3) 16: state=initial group=2 [|hsrp] -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 44) - 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-unknown (3) 16: state=initial group=3 [|hsrp] -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-coup 20: state=listen group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=200 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 44) - 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-unknown (3) 16: state=initial group=2 [|hsrp] -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 44) - 192.168.0.20.1985 > 224.0.0.2.1985: HSRPv0-unknown (3) 16: state=initial group=2 [|hsrp] -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 44) - 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-unknown (3) 16: state=initial group=3 [|hsrp] -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=speak group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=200 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=200 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=speak group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=200 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=speak group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=200 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=speak group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=200 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=200 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=200 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=200 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=200 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=200 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=200 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=200 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 44) - 192.168.0.20.1985 > 224.0.0.2.1985: HSRPv0-unknown (3) 16: state=initial group=2 [|hsrp] -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 44) - 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-unknown (3) 16: state=initial group=2 [|hsrp] -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=200 auth="cisco^@^@^@" diff --git a/tests/hsrp_1.out b/tests/hsrp_1.out deleted file mode 100644 index 326e57b..0000000 --- a/tests/hsrp_1.out +++ /dev/null @@ -1,51 +0,0 @@ -IP 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 -IP 192.168.0.20.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1 -IP 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 -IP 192.168.0.20.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1 -IP 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 -IP 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 -IP 192.168.0.20.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1 -IP 192.168.0.20.1985 > 224.0.0.2.1985: HSRPv0-unknown (3) 16: state=initial group=2 [|hsrp] -IP 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 -IP 192.168.0.20.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1 -IP 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 -IP 192.168.0.20.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1 -IP 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 -IP 192.168.0.20.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1 -IP 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 -IP 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 -IP 192.168.0.20.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1 -IP 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-unknown (3) 16: state=initial group=2 [|hsrp] -IP 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 -IP 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-unknown (3) 16: state=initial group=2 [|hsrp] -IP 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-unknown (3) 16: state=initial group=3 [|hsrp] -IP 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-coup 20: state=listen group=1 addr=192.168.0.1 -IP 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-unknown (3) 16: state=initial group=2 [|hsrp] -IP 192.168.0.20.1985 > 224.0.0.2.1985: HSRPv0-unknown (3) 16: state=initial group=2 [|hsrp] -IP 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-unknown (3) 16: state=initial group=3 [|hsrp] -IP 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=speak group=1 addr=192.168.0.1 -IP 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 -IP 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 -IP 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=speak group=1 addr=192.168.0.1 -IP 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 -IP 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=speak group=1 addr=192.168.0.1 -IP 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 -IP 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=speak group=1 addr=192.168.0.1 -IP 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 -IP 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1 -IP 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 -IP 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1 -IP 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 -IP 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1 -IP 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 -IP 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 -IP 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1 -IP 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 -IP 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1 -IP 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 -IP 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1 -IP 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 -IP 192.168.0.20.1985 > 224.0.0.2.1985: HSRPv0-unknown (3) 16: state=initial group=2 [|hsrp] -IP 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-unknown (3) 16: state=initial group=2 [|hsrp] -IP 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1 -IP 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 diff --git a/tests/hsrp_2-v.out b/tests/hsrp_2-v.out deleted file mode 100644 index d96227f..0000000 --- a/tests/hsrp_2-v.out +++ /dev/null @@ -1,98 +0,0 @@ -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=speak group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=200 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=speak group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.20.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=speak group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=speak group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=200 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 44) - 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-unknown (3) 16: state=initial group=2 [|hsrp] -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=speak group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=200 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 44) - 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-unknown (3) 16: state=initial group=2 [|hsrp] -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=speak group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=200 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=200 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 44) - 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-unknown (3) 16: state=initial group=3 [|hsrp] -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=200 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 44) - 192.168.0.20.1985 > 224.0.0.2.1985: HSRPv0-unknown (3) 16: state=initial group=2 [|hsrp] -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 44) - 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-unknown (3) 16: state=initial group=2 [|hsrp] -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=200 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=200 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=200 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=200 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=speak group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.20.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=speak group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=200 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=speak group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=200 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=speak group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=200 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=speak group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=200 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=200 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=200 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=200 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 44) - 192.168.0.20.1985 > 224.0.0.2.1985: HSRPv0-unknown (3) 16: state=initial group=2 [|hsrp] -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=200 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 44) - 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-unknown (3) 16: state=initial group=2 [|hsrp] -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=200 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=200 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=200 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=200 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=200 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=200 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=200 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" diff --git a/tests/hsrp_3-v.out b/tests/hsrp_3-v.out deleted file mode 100644 index 54a78f4..0000000 --- a/tests/hsrp_3-v.out +++ /dev/null @@ -1,78 +0,0 @@ -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=200 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 44) - 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-unknown (3) 16: state=initial group=2 [|hsrp] -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=200 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=200 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=200 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 44) - 192.168.0.20.1985 > 224.0.0.2.1985: HSRPv0-unknown (3) 16: state=initial group=2 [|hsrp] -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=200 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.10.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=200 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.20.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=speak group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 44) - 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-unknown (3) 16: state=initial group=3 [|hsrp] -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 44) - 192.168.0.20.1985 > 224.0.0.2.1985: HSRPv0-unknown (3) 16: state=initial group=2 [|hsrp] -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.20.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=speak group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.20.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=speak group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.20.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=speak group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.20.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.20.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.20.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.20.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.20.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.20.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 44) - 192.168.0.20.1985 > 224.0.0.2.1985: HSRPv0-unknown (3) 16: state=initial group=2 [|hsrp] -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [none], proto UDP (17), length 48) - 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 hellotime=3s holdtime=10s priority=100 auth="cisco^@^@^@" diff --git a/tests/icmpv6.out b/tests/icmpv6.out deleted file mode 100644 index bb7775e..0000000 --- a/tests/icmpv6.out +++ /dev/null @@ -1,26 +0,0 @@ -IP6 (hlim 255, next-header ICMPv6 (58) payload length: 176) fe80::b299:28ff:fec8:d66c > ff02::1: [icmp6 sum ok] ICMP6, router advertisement, length 176 - hop limit 64, Flags [home agent], pref medium, router lifetime 15s, reachable time 0s, retrans time 0s - prefix info option (3), length 32 (4): 2222:3333:4444:5555:6600::/72, Flags [onlink, auto], valid time 2592000s, pref. time 604800s - 0x0000: 48c0 0027 8d00 0009 3a80 0000 0000 2222 - 0x0010: 3333 4444 5555 6600 0000 0000 0000 - rdnss option (25), length 40 (5): lifetime 5s, addr: abcd::efef addr: 1234:5678::1 - 0x0000: 0000 0000 0005 abcd 0000 0000 0000 0000 - 0x0010: 0000 0000 efef 1234 5678 0000 0000 0000 - 0x0020: 0000 0000 0001 - dnssl option (31), length 56 (7): lifetime 5s, domain(s): example.com. example.org. dom1.dom2.tld. - 0x0000: 0000 0000 0005 0765 7861 6d70 6c65 0363 - 0x0010: 6f6d 0007 6578 616d 706c 6503 6f72 6700 - 0x0020: 0464 6f6d 3104 646f 6d32 0374 6c64 0000 - 0x0030: 0000 0000 0000 - mtu option (5), length 8 (1): 100 - 0x0000: 0000 0000 0064 - source link-address option (1), length 8 (1): b0:99:28:c8:d6:6c - 0x0000: b099 28c8 d66c - advertisement interval option (7), length 8 (1): 5000ms - 0x0000: 0000 0000 1388 - homeagent information option (8), length 8 (1): preference 50001, lifetime 15 - 0x0000: 0000 c351 000f -IP6 (hlim 1, next-header Options (0) payload length: 36) fe80::215:17ff:fecc:e546 > ff02::16: HBH (rtalert: 0x0000) (padn) [icmp6 sum ok] ICMP6, multicast listener report v2, 1 group record(s) [gaddr ff02::db8:1122:3344 to_ex { }] -IP6 (hlim 1, next-header Options (0) payload length: 36) fe80::b2a8:6eff:fe0c:d4e8 > ff02::1: HBH (rtalert: 0x0000) (padn) [icmp6 sum ok] ICMP6, multicast listener query v2 [max resp delay=10000] [gaddr :: robustness=2 qqi=60] -IP6 (hlim 1, next-header Options (0) payload length: 96) fe80::215:17ff:fecc:e546 > ff02::16: HBH (rtalert: 0x0000) (padn) [icmp6 sum ok] ICMP6, multicast listener report v2, 4 group record(s) [gaddr ff02::db8:1122:3344 is_ex { }] [gaddr ff02::1:ffcc:e546 is_ex { }] [gaddr ff02::1:ffa7:10ad is_ex { }] [gaddr ff02::1:ff00:2 is_ex { }] -IP6 (hlim 1, next-header Options (0) payload length: 36) fe80::215:17ff:fecc:e546 > ff02::16: HBH (rtalert: 0x0000) (padn) [icmp6 sum ok] ICMP6, multicast listener report v2, 1 group record(s) [gaddr ff02::db8:1122:3344 to_in { }] diff --git a/tests/icmpv6.pcap b/tests/icmpv6.pcap deleted file mode 100644 index d480e72..0000000 Binary files a/tests/icmpv6.pcap and /dev/null differ diff --git a/tests/icmpv6_opt24-v.out b/tests/icmpv6_opt24-v.out deleted file mode 100644 index 2b7cf09..0000000 --- a/tests/icmpv6_opt24-v.out +++ /dev/null @@ -1,16 +0,0 @@ -IP6 (hlim 255, next-header ICMPv6 (58) payload length: 120) fe80::16cf:92ff:fe87:23d6 > ff02::1: [icmp6 sum ok] ICMP6, router advertisement, length 120 - hop limit 0, Flags [managed, other stateful], pref medium, router lifetime 0s, reachable time 0s, retrans time 0s - source link-address option (1), length 8 (1): 14:cf:92:87:23:d6 - mtu option (5), length 8 (1): 1500 - prefix info option (3), length 32 (4): fd8d:4fb3:5b2e::/64, Flags [onlink, auto], valid time 7200s, pref. time 1800s - route info option (24), length 16 (2): fd8d:4fb3:5b2e::/48, pref=medium, lifetime=7200s - rdnss option (25), length 24 (3): lifetime 1800s, addr: fd8d:4fb3:5b2e::1 - dnssl option (31), length 16 (2): lifetime 1800s, domain(s): lan. -IP6 (hlim 255, next-header ICMPv6 (58) payload length: 120) fe80::16cf:92ff:fe87:23d6 > ff02::1: [icmp6 sum ok] ICMP6, router advertisement, length 120 - hop limit 0, Flags [managed, other stateful], pref medium, router lifetime 0s, reachable time 0s, retrans time 0s - source link-address option (1), length 8 (1): 14:cf:92:87:23:d6 - mtu option (5), length 8 (1): 1500 - prefix info option (3), length 32 (4): fd8d:4fb3:5b2e::/64, Flags [onlink, auto], valid time 7200s, pref. time 1800s - route info option (24), length 16 (2): fd8d:4fb3:5b2e::/48, pref=medium, lifetime=7200s - rdnss option (25), length 24 (3): lifetime 1800s, addr: fd8d:4fb3:5b2e::1 - dnssl option (31), length 16 (2): lifetime 1800s, domain(s): lan. diff --git a/tests/icmpv6_opt24.pcap b/tests/icmpv6_opt24.pcap deleted file mode 100644 index 974e7a3..0000000 Binary files a/tests/icmpv6_opt24.pcap and /dev/null differ diff --git a/tests/ieee802.11_exthdr.out b/tests/ieee802.11_exthdr.out deleted file mode 100644 index 7b217e5..0000000 --- a/tests/ieee802.11_exthdr.out +++ /dev/null @@ -1,26 +0,0 @@ -10016360us tsft 1.0 Mb/s 2412 MHz 11b -22dBm signal -86dBm noise antenna 1 [bit 32] Probe Request (omus) [1.0 2.0 5.5 11.0 6.0 9.0 12.0 18.0 Mbit] -10018922us tsft 1.0 Mb/s 2412 MHz 11b -19dBm signal -86dBm noise antenna 0 [bit 32] Acknowledgment RA:90:a4:de:c0:46:0a -10017245us tsft 1.0 Mb/s -86dBm noise 27dBm tx power [bit 15] Probe Response (omus) [1.0* 2.0* 5.5* 11.0* 6.0 9.0 12.0 18.0 Mbit] CH: 1 -10085301us tsft 1.0 Mb/s 2412 MHz 11b -19dBm signal -86dBm noise antenna 1 [bit 32] Probe Request (omus) [1.0 2.0 5.5 11.0 6.0 9.0 12.0 18.0 Mbit] -10087718us tsft 1.0 Mb/s 2412 MHz 11b -18dBm signal -86dBm noise antenna 0 [bit 32] Acknowledgment RA:90:a4:de:c0:46:0a -10086042us tsft 1.0 Mb/s -86dBm noise 27dBm tx power [bit 15] Probe Response (omus) [1.0* 2.0* 5.5* 11.0* 6.0 9.0 12.0 18.0 Mbit] CH: 1 -10284358us tsft 1.0 Mb/s 2412 MHz 11b -61dBm signal -86dBm noise antenna 1 [bit 32] Probe Request (omus) [1.0 2.0 5.5 11.0 6.0 9.0 12.0 18.0 Mbit] -10288217us tsft 1.0 Mb/s 2412 MHz 11b -46dBm signal -86dBm noise antenna 0 [bit 32] Acknowledgment RA:90:a4:de:c0:46:0a -10286542us tsft 1.0 Mb/s -86dBm noise 27dBm tx power [bit 15] Probe Response (omus) [1.0* 2.0* 5.5* 11.0* 6.0 9.0 12.0 18.0 Mbit] CH: 1 -10351366us tsft 1.0 Mb/s 2412 MHz 11b -70dBm signal -86dBm noise antenna 1 [bit 32] Probe Request (omus) [1.0 2.0 5.5 11.0 6.0 9.0 12.0 18.0 Mbit] -10353769us tsft 1.0 Mb/s 2412 MHz 11b -57dBm signal -86dBm noise antenna 0 [bit 32] Acknowledgment RA:90:a4:de:c0:46:0a -10352092us tsft 1.0 Mb/s -86dBm noise 27dBm tx power [bit 15] Probe Response (omus) [1.0* 2.0* 5.5* 11.0* 6.0 9.0 12.0 18.0 Mbit] CH: 1 -10418368us tsft 1.0 Mb/s 2412 MHz 11b -67dBm signal -86dBm noise antenna 1 [bit 32] Probe Request (omus) [1.0 2.0 5.5 11.0 6.0 9.0 12.0 18.0 Mbit] -10420929us tsft 1.0 Mb/s 2412 MHz 11b -73dBm signal -86dBm noise antenna 0 [bit 32] Acknowledgment RA:90:a4:de:c0:46:0a -10419253us tsft 1.0 Mb/s -86dBm noise 27dBm tx power [bit 15] Probe Response (omus) [1.0* 2.0* 5.5* 11.0* 6.0 9.0 12.0 18.0 Mbit] CH: 1 -10485371us tsft 1.0 Mb/s 2412 MHz 11b -72dBm signal -86dBm noise antenna 1 [bit 32] Probe Request (omus) [1.0 2.0 5.5 11.0 6.0 9.0 12.0 18.0 Mbit] -10489278us tsft 1.0 Mb/s 2412 MHz 11b -74dBm signal -86dBm noise antenna 0 [bit 32] Acknowledgment RA:90:a4:de:c0:46:0a -10487602us tsft 1.0 Mb/s -86dBm noise 27dBm tx power [bit 15] Probe Response (omus) [1.0* 2.0* 5.5* 11.0* 6.0 9.0 12.0 18.0 Mbit] CH: 1 -13338508us tsft 1.0 Mb/s 2412 MHz 11b -14dBm signal -86dBm noise antenna 1 [bit 32] Authentication (Open System)-1: Successful -13340215us tsft 1.0 Mb/s 2412 MHz 11b -17dBm signal -86dBm noise antenna 0 [bit 32] Acknowledgment RA:90:a4:de:c0:46:0a -13339435us tsft 1.0 Mb/s -86dBm noise 27dBm tx power [bit 15] Authentication (Open System)-2: -13341999us tsft 1.0 Mb/s 2412 MHz 11b -18dBm signal -86dBm noise antenna 1 [bit 32] Assoc Request (omus) [1.0 2.0 5.5 11.0 6.0 9.0 12.0 18.0 Mbit] -13346458us tsft 1.0 Mb/s 2412 MHz 11b -18dBm signal -86dBm noise antenna 0 [bit 32] Acknowledgment RA:90:a4:de:c0:46:0a -13344925us tsft 1.0 Mb/s -86dBm noise 27dBm tx power [bit 15] Assoc Response AID(1) :: Successful -13355433us tsft 2412 MHz 11n -22dBm signal -86dBm noise antenna 1 19.5 Mb/s MCS 2 20 MHz long GI [bit 32] -13454791us tsft 2412 MHz 11n -21dBm signal -86dBm noise antenna 1 52.0 Mb/s MCS 11 20 MHz long GI [bit 32] diff --git a/tests/ieee802.11_exthdr.pcap b/tests/ieee802.11_exthdr.pcap deleted file mode 100644 index 613a443..0000000 Binary files a/tests/ieee802.11_exthdr.pcap and /dev/null differ diff --git a/tests/ieee802.11_rx-stbc.out b/tests/ieee802.11_rx-stbc.out deleted file mode 100644 index 8369b62..0000000 --- a/tests/ieee802.11_rx-stbc.out +++ /dev/null @@ -1,3 +0,0 @@ -7268us tsft 2462 MHz 11n -51dBm signal antenna 1 150.0 Mb/s MCS 7 40 MHz short GI RX-STBC1 Data IV: 11 Pad 20 KeyID 0 -119738173us tsft 2462 MHz 11n -46dBm signal antenna 1 135.0 Mb/s MCS 7 40 MHz long GI RX-STBC2 Data IV: 1 Pad 20 KeyID 0 -470382336us tsft 2462 MHz 11n -45dBm signal antenna 1 150.0 Mb/s MCS 7 40 MHz short GI RX-STBC3 Data IV: 5 Pad 20 KeyID 0 diff --git a/tests/ieee802.11_rx-stbc.pcap b/tests/ieee802.11_rx-stbc.pcap deleted file mode 100644 index b825a0a..0000000 Binary files a/tests/ieee802.11_rx-stbc.pcap and /dev/null differ diff --git a/tests/igmpv1.out b/tests/igmpv1.out deleted file mode 100644 index ad8618f..0000000 --- a/tests/igmpv1.out +++ /dev/null @@ -1,27 +0,0 @@ -IP 10.0.200.151 > 224.0.0.1: igmp query v1 -IP 10.0.200.163 > 224.0.0.252: igmp v1 report 224.0.0.252 -IP 192.168.1.3 > 239.255.255.250: igmp v1 report 239.255.255.250 -IP 10.0.200.108 > 224.0.1.24: igmp v1 report 224.0.1.24 -IP 10.0.200.100 > 224.0.1.60: igmp v1 report 224.0.1.60 -IP 10.0.200.144 > 224.0.0.9: igmp v1 report 224.0.0.9 -IP 10.0.200.108 > 239.255.255.254: igmp v1 report 239.255.255.254 -IP 10.0.200.10 > 224.0.0.251: igmp v1 report 224.0.0.251 -IP 10.0.200.151 > 224.0.0.1: igmp query v1 -IP 10.0.200.108 > 239.255.255.250: igmp v1 report 239.255.255.250 -IP 10.0.200.108 > 239.255.255.254: igmp v1 report 239.255.255.254 -IP 10.0.200.10 > 224.0.0.251: igmp v1 report 224.0.0.251 -IP 10.0.200.163 > 224.0.0.252: igmp v1 report 224.0.0.252 -IP 10.0.200.108 > 224.0.1.24: igmp v1 report 224.0.1.24 -IP 10.0.200.144 > 224.0.0.9: igmp v1 report 224.0.0.9 -IP 10.0.200.100 > 224.0.1.60: igmp v1 report 224.0.1.60 -IP 10.0.200.25 > 239.255.255.250: igmp v1 report 239.255.255.250 -IP 10.0.200.25 > 239.255.255.250: igmp v1 report 239.255.255.250 -IP 10.0.200.25 > 239.255.255.250: igmp v1 report 239.255.255.250 -IP 10.0.200.151 > 224.0.0.1: igmp query v1 -IP 10.0.200.163 > 239.255.255.250: igmp v1 report 239.255.255.250 -IP 10.0.200.144 > 224.0.0.9: igmp v1 report 224.0.0.9 -IP 10.0.200.163 > 224.0.0.252: igmp v1 report 224.0.0.252 -IP 10.0.200.100 > 224.0.1.60: igmp v1 report 224.0.1.60 -IP 10.0.200.108 > 224.0.1.24: igmp v1 report 224.0.1.24 -IP 10.0.200.108 > 239.255.255.254: igmp v1 report 239.255.255.254 -IP 10.0.200.10 > 224.0.0.251: igmp v1 report 224.0.0.251 diff --git a/tests/igmpv2.out b/tests/igmpv2.out deleted file mode 100644 index ae340da..0000000 --- a/tests/igmpv2.out +++ /dev/null @@ -1,18 +0,0 @@ -IP 192.168.1.2 > 224.0.0.1: igmp query v2 -IP 192.168.1.64 > 239.255.255.250: igmp v2 report 239.255.255.250 -IP 192.168.11.201 > 225.10.10.10: igmp v2 report 225.10.10.10 -IP 192.168.11.201 > 225.1.1.3: igmp v2 report 225.1.1.3 -IP 192.168.11.201 > 224.0.0.2: igmp leave 225.1.1.3 -IP 192.168.1.2 > 225.1.1.3: igmp query v2 [max resp time 10] [gaddr 225.1.1.3] -IP 192.168.11.201 > 225.1.1.4: igmp v2 report 225.1.1.4 -IP 192.168.11.201 > 225.1.1.4: igmp v2 report 225.1.1.4 -IP 192.168.11.201 > 225.1.1.4: igmp v2 report 225.1.1.4 -IP 192.168.11.201 > 224.0.0.2: igmp leave 225.1.1.4 -IP 192.168.1.2 > 225.1.1.4: igmp query v2 [max resp time 10] [gaddr 225.1.1.4] -IP 192.168.11.201 > 225.1.1.5: igmp v2 report 225.1.1.5 -IP 192.168.11.201 > 225.1.1.5: igmp v2 report 225.1.1.5 -IP 192.168.11.201 > 225.1.1.5: igmp v2 report 225.1.1.5 -IP 192.168.1.2 > 224.0.0.1: igmp query v2 -IP 192.168.11.201 > 225.10.10.10: igmp v2 report 225.10.10.10 -IP 192.168.1.64 > 239.255.255.250: igmp v2 report 239.255.255.250 -IP 192.168.11.201 > 225.1.1.5: igmp v2 report 225.1.1.5 diff --git a/tests/igmpv3-queries.out b/tests/igmpv3-queries.out deleted file mode 100644 index 9db6f9b..0000000 --- a/tests/igmpv3-queries.out +++ /dev/null @@ -1,6 +0,0 @@ -IP 192.2.0.2 > 224.0.0.1: igmp query v3 -IP 192.2.0.2 > 224.0.0.1: igmp query v3 [max resp time 51m12s] -IP 192.2.0.2 > 224.0.0.1: igmp query v3 [max resp time 51m12s] -IP 192.2.0.2 > 224.0.0.1: igmp query v3 [max resp time 1.0s] -IP 192.2.0.2 > 224.0.0.1: igmp query v3 [max resp time 1.0s] -IP 192.2.0.2 > 224.0.0.1: igmp query v3 [max resp time 1.0s] diff --git a/tests/igmpv3-queries.pcap b/tests/igmpv3-queries.pcap deleted file mode 100644 index df653ce..0000000 Binary files a/tests/igmpv3-queries.pcap and /dev/null differ diff --git a/tests/ikev2four.out b/tests/ikev2four.out deleted file mode 100644 index db2e8ef..0000000 --- a/tests/ikev2four.out +++ /dev/null @@ -1,107 +0,0 @@ -IP (tos 0x0, ttl 64, id 19908, offset 0, flags [none], proto UDP (17), length 404) - 192.168.1.2.500 > 192.168.1.1.500: isakmp 2.0 msgid 00000000: parent_sa ikev2_init[I]: - (sa: len=116 - (p: #1 protoid=isakmp transform=12 len=116 - (t: #1 type=encr id=aes (type=keylen value=0080)) - (t: #2 type=encr id=aes (type=keylen value=0100)) - (t: #3 type=encr id=aes (type=keylen value=00c0)) - (t: #4 type=encr id=3des ) - (t: #5 type=prf id=hmac-sha ) - (t: #6 type=prf id=hmac-md5 ) - (t: #7 type=prf id=aes128_xcbc ) - (t: #8 type=integ id=hmac-sha ) - (t: #9 type=integ id=hmac-md5 ) - (t: #10 type=integ id=aes-xcbc ) - (t: #11 type=dh id=modp1024 ) - (t: #12 type=dh id=modp2048 ))) - (v2ke: len=128 group=modp1024) - (nonce: len=32 data=(6128ebd023a864e94a7f...ba041b5de59955900d818ac54e18b236739d9e8b)) - (n: prot_id=#0 type=16388(nat_detection_source_ip)) - (n: prot_id=#0 type=16389(nat_detection_destination_ip)) -IP (tos 0x0, ttl 64, id 19909, offset 0, flags [none], proto UDP (17), length 88) - 192.168.1.1.500 > 192.168.1.2.500: isakmp 2.0 msgid 00000000: parent_sa ikev2_init[R]: - (n: prot_id=#0 type=16390(cookie) data=(00000001c2221e50c16e123f2b0c71aefcf0cb3b798782c6)) -IP (tos 0x0, ttl 64, id 19910, offset 0, flags [none], proto UDP (17), length 436) - 192.168.1.2.500 > 192.168.1.1.500: isakmp 2.0 msgid 00000000: parent_sa ikev2_init[I]: - (n: prot_id=#0 type=16390(cookie) data=(00000001c2221e50c16e...ba041b5de59955900d818ac54e18b236739d9e8b)) - (sa: len=116 - (p: #1 protoid=isakmp transform=12 len=116 - (t: #1 type=encr id=aes (type=keylen value=0080)) - (t: #2 type=encr id=aes (type=keylen value=0100)) - (t: #3 type=encr id=aes (type=keylen value=00c0)) - (t: #4 type=encr id=3des ) - (t: #5 type=prf id=hmac-sha ) - (t: #6 type=prf id=hmac-md5 ) - (t: #7 type=prf id=aes128_xcbc ) - (t: #8 type=integ id=hmac-sha ) - (t: #9 type=integ id=hmac-md5 ) - (t: #10 type=integ id=aes-xcbc ) - (t: #11 type=dh id=modp1024 ) - (t: #12 type=dh id=modp2048 ))) - (v2ke: len=128 group=modp1024) - (nonce: len=32 data=(6128ebd023a864e94a7f...ba041b5de59955900d818ac54e18b236739d9e8b)) - (n: prot_id=#0 type=16388(nat_detection_source_ip)) - (n: prot_id=#0 type=16389(nat_detection_destination_ip)) -IP (tos 0x0, ttl 64, id 19911, offset 0, flags [none], proto UDP (17), length 332) - 192.168.1.1.500 > 192.168.1.2.500: isakmp 2.0 msgid 00000000: parent_sa ikev2_init[R]: - (sa: len=44 - (p: #1 protoid=isakmp transform=4 len=44 - (t: #1 type=encr id=aes (type=keylen value=0080)) - (t: #2 type=prf id=hmac-sha ) - (t: #3 type=integ id=hmac-sha ) - (t: #4 type=dh id=modp1024 ))) - (v2ke: len=128 group=modp1024) - (nonce: len=32 data=(b31c379f272ce2984bd1...905954a783be2c37e2ccc4fdd270a532dbe6f428)) - (n: prot_id=#0 type=16388(nat_detection_source_ip)) - (n: prot_id=#0 type=16389(nat_detection_destination_ip)) -IP (tos 0x0, ttl 64, id 19912, offset 0, flags [none], proto UDP (17), length 264) - 192.168.1.2.500 > 192.168.1.1.500: isakmp 2.0 msgid 00000001: child_sa ikev2_auth[I]: - (v2e: len=204) -IP (tos 0x0, ttl 64, id 19913, offset 0, flags [none], proto UDP (17), length 184) - 192.168.1.1.500 > 192.168.1.2.500: isakmp 2.0 msgid 00000001: child_sa ikev2_auth[R]: - (v2e: len=124) -IP (tos 0x0, ttl 64, id 19914, offset 0, flags [none], proto UDP (17), length 280) - 192.168.1.2.500 > 192.168.1.1.500: isakmp 2.0 msgid 00000002: child_sa child_sa[I]: - (v2e: len=220) -IP (tos 0x0, ttl 64, id 19915, offset 0, flags [none], proto UDP (17), length 248) - 192.168.1.2.500 > 192.168.1.1.500: isakmp 2.0 msgid 00000003: child_sa child_sa[I]: - (v2e: len=188) -IP (tos 0x0, ttl 64, id 19916, offset 0, flags [none], proto UDP (17), length 104) - 192.168.1.1.500 > 192.168.1.2.500: isakmp 2.0 msgid 00000002: child_sa child_sa[R]: - (v2e: len=44) -IP (tos 0x0, ttl 64, id 19917, offset 0, flags [none], proto UDP (17), length 104) - 192.168.1.1.500 > 192.168.1.2.500: isakmp 2.0 msgid 00000003: child_sa child_sa[R]: - (v2e: len=44) -IP (tos 0x0, ttl 64, id 19918, offset 0, flags [none], proto UDP (17), length 312) - 192.168.1.2.500 > 192.168.1.1.500: isakmp 2.0 msgid 00000004: child_sa child_sa[I]: - (v2e: len=252) -IP (tos 0x0, ttl 64, id 19919, offset 0, flags [none], proto UDP (17), length 280) - 192.168.1.2.500 > 192.168.1.1.500: isakmp 2.0 msgid 00000005: child_sa child_sa[I]: - (v2e: len=220) -IP (tos 0x0, ttl 64, id 19920, offset 0, flags [none], proto UDP (17), length 232) - 192.168.1.1.500 > 192.168.1.2.500: isakmp 2.0 msgid 00000004: child_sa child_sa[R]: - (v2e: len=172) -IP (tos 0x0, ttl 64, id 19921, offset 0, flags [none], proto UDP (17), length 232) - 192.168.1.1.500 > 192.168.1.2.500: isakmp 2.0 msgid 00000005: child_sa child_sa[R]: - (v2e: len=172) -IP (tos 0x0, ttl 64, id 19922, offset 0, flags [none], proto UDP (17), length 312) - 192.168.1.2.500 > 192.168.1.1.500: isakmp 2.0 msgid 00000006: child_sa child_sa[I]: - (v2e: len=252) -IP (tos 0x0, ttl 64, id 19923, offset 0, flags [none], proto UDP (17), length 280) - 192.168.1.2.500 > 192.168.1.1.500: isakmp 2.0 msgid 00000007: child_sa child_sa[I]: - (v2e: len=220) -IP (tos 0x0, ttl 64, id 19924, offset 0, flags [none], proto UDP (17), length 232) - 192.168.1.1.500 > 192.168.1.2.500: isakmp 2.0 msgid 00000006: child_sa child_sa[R]: - (v2e: len=172) -IP (tos 0x0, ttl 64, id 19925, offset 0, flags [none], proto UDP (17), length 232) - 192.168.1.1.500 > 192.168.1.2.500: isakmp 2.0 msgid 00000007: child_sa child_sa[R]: - (v2e: len=172) -IP (tos 0x0, ttl 64, id 19926, offset 0, flags [none], proto UDP (17), length 392) - 192.168.1.2.500 > 192.168.1.1.500: isakmp 2.0 msgid 00000008: child_sa child_sa[I]: - (v2e: len=332) -IP (tos 0x0, ttl 64, id 19927, offset 0, flags [none], proto UDP (17), length 344) - 192.168.1.1.500 > 192.168.1.2.500: isakmp 2.0 msgid 00000008: child_sa child_sa[R]: - (v2e: len=284) -IP (tos 0x0, ttl 64, id 19928, offset 0, flags [none], proto UDP (17), length 120) - 192.168.1.2.500 > 192.168.1.1.500: isakmp 2.0 msgid 00000000: parent_sa inf2[I]: - (v2e: len=60) diff --git a/tests/ikev2four.pcap b/tests/ikev2four.pcap deleted file mode 100644 index 4b1d0bf..0000000 Binary files a/tests/ikev2four.pcap and /dev/null differ diff --git a/tests/ikev2fourv.out b/tests/ikev2fourv.out deleted file mode 100644 index 15c482f..0000000 --- a/tests/ikev2fourv.out +++ /dev/null @@ -1,107 +0,0 @@ -IP (tos 0x0, ttl 64, id 19908, offset 0, flags [none], proto UDP (17), length 404) - 192.168.1.2.500 > 192.168.1.1.500: [bad udp cksum 0x0765 -> 0xf5df!] isakmp 2.0 msgid 00000000 cookie a88875a8198992a6->0000000000000000: parent_sa ikev2_init[I]: - (sa: len=116 - (p: #1 protoid=isakmp transform=12 len=116 - (t: #1 type=encr id=aes (type=keylen value=0080)) - (t: #2 type=encr id=aes (type=keylen value=0100)) - (t: #3 type=encr id=aes (type=keylen value=00c0)) - (t: #4 type=encr id=3des ) - (t: #5 type=prf id=hmac-sha ) - (t: #6 type=prf id=hmac-md5 ) - (t: #7 type=prf id=aes128_xcbc ) - (t: #8 type=integ id=hmac-sha ) - (t: #9 type=integ id=hmac-md5 ) - (t: #10 type=integ id=aes-xcbc ) - (t: #11 type=dh id=modp1024 ) - (t: #12 type=dh id=modp2048 ))) - (v2ke: len=128 group=modp1024 b5445bd60cece6fdcd3c96a52cbb7bb426a8c7a0f56a9c38d1b1c4f0c3a6e8e7dba5c7339b6ed02e757119dfb5b6933ce93b604987fbbc77221b2a0c7cdd32787eff10572bef546c361462f9da34847969a42e51c755996beac42e6fba961a75de0fc1b23f099380896ee89202122dedac1bd54aa8494ac3d740be4d2a4cf39d) - (nonce: len=32 nonce=(6128ebd023a864e94a7ffb74bf7cce2fd4367322b8b073f942282bd52ebfe3e6) ) - (n: prot_id=#0 type=16388(nat_detection_source_ip)) - (n: prot_id=#0 type=16389(nat_detection_destination_ip)) -IP (tos 0x0, ttl 64, id 19909, offset 0, flags [none], proto UDP (17), length 88) - 192.168.1.1.500 > 192.168.1.2.500: [bad udp cksum 0x0629 -> 0x0cd0!] isakmp 2.0 msgid 00000000 cookie a88875a8198992a6->0000000000000000: parent_sa ikev2_init[R]: - (n: prot_id=#0 type=16390(cookie) data=(00000001c2221e50c16e123f2b0c71aefcf0cb3b798782c6)) -IP (tos 0x0, ttl 64, id 19910, offset 0, flags [none], proto UDP (17), length 436) - 192.168.1.2.500 > 192.168.1.1.500: [bad udp cksum 0x0785 -> 0x7702!] isakmp 2.0 msgid 00000000 cookie a88875a8198992a6->0000000000000000: parent_sa ikev2_init[I]: - (n: prot_id=#0 type=16390(cookie) data=(00000001c2221e50c16e...ba041b5de59955900d818ac54e18b236739d9e8b)) - (sa: len=116 - (p: #1 protoid=isakmp transform=12 len=116 - (t: #1 type=encr id=aes (type=keylen value=0080)) - (t: #2 type=encr id=aes (type=keylen value=0100)) - (t: #3 type=encr id=aes (type=keylen value=00c0)) - (t: #4 type=encr id=3des ) - (t: #5 type=prf id=hmac-sha ) - (t: #6 type=prf id=hmac-md5 ) - (t: #7 type=prf id=aes128_xcbc ) - (t: #8 type=integ id=hmac-sha ) - (t: #9 type=integ id=hmac-md5 ) - (t: #10 type=integ id=aes-xcbc ) - (t: #11 type=dh id=modp1024 ) - (t: #12 type=dh id=modp2048 ))) - (v2ke: len=128 group=modp1024 b5445bd60cece6fdcd3c96a52cbb7bb426a8c7a0f56a9c38d1b1c4f0c3a6e8e7dba5c7339b6ed02e757119dfb5b6933ce93b604987fbbc77221b2a0c7cdd32787eff10572bef546c361462f9da34847969a42e51c755996beac42e6fba961a75de0fc1b23f099380896ee89202122dedac1bd54aa8494ac3d740be4d2a4cf39d) - (nonce: len=32 nonce=(6128ebd023a864e94a7ffb74bf7cce2fd4367322b8b073f942282bd52ebfe3e6) ) - (n: prot_id=#0 type=16388(nat_detection_source_ip)) - (n: prot_id=#0 type=16389(nat_detection_destination_ip)) -IP (tos 0x0, ttl 64, id 19911, offset 0, flags [none], proto UDP (17), length 332) - 192.168.1.1.500 > 192.168.1.2.500: [bad udp cksum 0x071d -> 0x8650!] isakmp 2.0 msgid 00000000 cookie a88875a8198992a6->71be8358efae7663: parent_sa ikev2_init[R]: - (sa: len=44 - (p: #1 protoid=isakmp transform=4 len=44 - (t: #1 type=encr id=aes (type=keylen value=0080)) - (t: #2 type=prf id=hmac-sha ) - (t: #3 type=integ id=hmac-sha ) - (t: #4 type=dh id=modp1024 ))) - (v2ke: len=128 group=modp1024 5a56714d3abf64e3a3f401ead9f5323ff0b77faa5f1e99199b13ac821f0a0c4f854786ca09b7a76aa508bcee11f16369a16d5fa041ca2d9a8dfa8228c61f2482d2175c5c1a9491fc221bec7a1fa69f656d4c98ba49ae9d721dedf4a02d7ecdfc201dc785a13ed74e4f3982762a2720ffdfc365ee4e37279af496cd86f881fd15) - (nonce: len=32 nonce=(b31c379f272ce2984bd17ca38c8729e1edbc081a14fb0f67cff81721dfeec1f9) ) - (n: prot_id=#0 type=16388(nat_detection_source_ip)) - (n: prot_id=#0 type=16389(nat_detection_destination_ip)) -IP (tos 0x0, ttl 64, id 19912, offset 0, flags [none], proto UDP (17), length 264) - 192.168.1.2.500 > 192.168.1.1.500: [bad udp cksum 0x07d9 -> 0xb2d6!] isakmp 2.0 msgid 00000001 cookie a88875a8198992a6->71be8358efae7663: child_sa ikev2_auth[I]: - (v2e: len=204 f606135ad373e70836fda91b63ca4c608e1ad58218488c2647ff1e8a912958aa77efbc3068a2ae6ab7c3d0cb1e6fb864df99c62f2cc045708084708154a393c2f4cbefad1f6848525d49db563e13345a4e6e2fd066c04e2ce291f4714baec6bf328356c446247cab835bda3e8e1aae5967248f01eb3a1c02a541b4da09b3276b400d50a067542a678468c5f41e54017c00964f1003f8c88896a6f12215a5f1a060713cc83802cae3abee18417c0c35dc6f58a01adb96ed1c009c68e3069ae70f4b10afb7736c111ade4d826e) -IP (tos 0x0, ttl 64, id 19913, offset 0, flags [none], proto UDP (17), length 184) - 192.168.1.1.500 > 192.168.1.2.500: [bad udp cksum 0x0689 -> 0x0748!] isakmp 2.0 msgid 00000001 cookie a88875a8198992a6->71be8358efae7663: child_sa ikev2_auth[R]: - (v2e: len=124 6afe95bc5147b0ad7e4ccb9141c160a44f7c6eddc6b29d414ad5e2b882544fdc6c3ee6983ae1408b5764b1649343876454d1bf4d515aaf03c15eafe71be6b4cf51ab60630c45bcf0e2a2db8eee70095a4e010fdb342adb6d03dae5def9d4907cdfc8ccd6f3da9b7497c58e84a952d983bafb941ab1de1b0bb9ffad3b) -IP (tos 0x0, ttl 64, id 19914, offset 0, flags [none], proto UDP (17), length 280) - 192.168.1.2.500 > 192.168.1.1.500: [bad udp cksum 0x07e9 -> 0x35ac!] isakmp 2.0 msgid 00000002 cookie a88875a8198992a6->71be8358efae7663: child_sa child_sa[I]: - (v2e: len=220 53cc6c0b41f14e4fc057c7f6a3524adde8521f26f67c058430a902db1a52ed16d322630d2eb515372dc12d97dc7c20552607e2ed193d9b33939e10aa2fc37b6199f0a629c6b58135f5b6f9e07906cd30dc3cae7d55fe08d95d3e660a623731c396a325adbff11c490f9fd102224391a65fb7bbe862945b64cf1fb833b9ce68c83df0b9d2ce7bd54f650864af9445e547cdfe5caa393344ae5274933b7efcf616821ea7daa9c5a6e8275ad6c688700cb7f4bcd6fb8025e93bb6dd5f581faebcbecb798c87617a4ec1b06ba290ac5fc1d6e4c2725c1f9f0e10b144fbbe) -IP (tos 0x0, ttl 64, id 19915, offset 0, flags [none], proto UDP (17), length 248) - 192.168.1.2.500 > 192.168.1.1.500: [bad udp cksum 0x06c9 -> 0xdeaf!] isakmp 2.0 msgid 00000003 cookie a88875a8198992a6->71be8358efae7663: child_sa child_sa[I]: - (v2e: len=188 9603e03f280964782717da15a502f0a9e9f17dbf4487c6923cf00b7040d539bc947c705790e4e99b834a7ae2a8d79f5620e11615e0a762889aab821e0d03132dfb8cc6b3718582411bcd98c242a8b10a66274dae1ce055fb30a4d3e64c969be6e08b626958f4446c6e4a0c8d7a24522959c6152e63a575c06930c2097539bfbdff08c70533428cf6b452e0b8b0259c2292925d2ed62e8956bc7e3a911a61509be1ac8f7b7cd4636176e524f4d0f17573f2aeddce2251fd6d5d9cd54d) -IP (tos 0x0, ttl 64, id 19916, offset 0, flags [none], proto UDP (17), length 104) - 192.168.1.1.500 > 192.168.1.2.500: [bad udp cksum 0x0639 -> 0xc72b!] isakmp 2.0 msgid 00000002 cookie a88875a8198992a6->71be8358efae7663: child_sa child_sa[R]: - (v2e: len=44 5bd2d26cb43b6cec30dec13fa387359797baf7b41e783422bc4dabf5d03ab2420d277d3b2f28d1f003da98d1) -IP (tos 0x0, ttl 64, id 19917, offset 0, flags [none], proto UDP (17), length 104) - 192.168.1.1.500 > 192.168.1.2.500: [bad udp cksum 0x0639 -> 0x4119!] isakmp 2.0 msgid 00000003 cookie a88875a8198992a6->71be8358efae7663: child_sa child_sa[R]: - (v2e: len=44 38f60ab69110967961ae04af4e47a770260d61e29d18fb13ce093a47970068dacb342f7999cc3d0d59f77a94) -IP (tos 0x0, ttl 64, id 19918, offset 0, flags [none], proto UDP (17), length 312) - 192.168.1.2.500 > 192.168.1.1.500: [bad udp cksum 0x0709 -> 0x236f!] isakmp 2.0 msgid 00000004 cookie a88875a8198992a6->71be8358efae7663: child_sa child_sa[I]: - (v2e: len=252 c7f2f1cc4997b30a61623222d4bfb535baa302199c4d8c1fdcfa745b0b29b5e7618ff0356848444d25010e5ad420760890ede066c838269b22d9e30d4fec1a012e731a210c243f803b661970d32e998e919f573c5742d2288949052c5a46a0cd7c4a1a295ede296c4fd9839b64dc4944e11a35f42a8ce18b447200fd03dbd58a71583b3a27c380148c801ce14452f7d756b1f55b10b84a58cfa9526001fff7157154645022e4456085517ceed98b79e20ed33297cf5ad80287e782728a8c6b87d2b422e7eeda1c72b33ebc51a5b76def9a59ffd1b4f97dec88c22a4f5448a71aeedf20c87dae5b44cd2e7a519d719a509f83f3b2faf6f5c607da609f) -IP (tos 0x0, ttl 64, id 19919, offset 0, flags [none], proto UDP (17), length 280) - 192.168.1.2.500 > 192.168.1.1.500: [bad udp cksum 0x07e9 -> 0xd8ba!] isakmp 2.0 msgid 00000005 cookie a88875a8198992a6->71be8358efae7663: child_sa child_sa[I]: - (v2e: len=220 dae6134a9cff1a4e3cc59a79e019a93f8469dd4e2faaaad1c3afba22ecd128fdb1e8954c753f8f62aeb6aac9732f414b065ec39569a670be6980c81eb3e44bc93ec63e9a754d0456c6703cd718371edeef674928180f9d14c39e52cfa4a517368e7db2fa0bfdb41cf56d97006233103f22650fdcd5ffab8418e40903e4749e126d06e9dc2a18cfd5bfda0013e3e9eb53e79bbe30eadf0f4ddcefbab0c08e870b29d39b2401c75b68fc46a066782857ca48d547e410ac15cabb6738875200b535cbd9ae1e1ce99839c9c25639070e5ed977809c50b6bb9550b50b49bb) -IP (tos 0x0, ttl 64, id 19920, offset 0, flags [none], proto UDP (17), length 232) - 192.168.1.1.500 > 192.168.1.2.500: [bad udp cksum 0x06b9 -> 0x7194!] isakmp 2.0 msgid 00000004 cookie a88875a8198992a6->71be8358efae7663: child_sa child_sa[R]: - (v2e: len=172 1fd8516b57b1ab1bdbcdba1930a5097decc023c5c534497ca53f178b9d4d11228746454371b0cc6ec067e14e1e5c5652840cfdae0ea84c7f0a6e799ff7fb131d15763feef45e80f24716cde47d23527f68e055a7c3adc7225489295e1bc3f1029b63822872865df55c6c275dead8a6f64bda8ae44f42c318fa71eb04eed7312dafd2dd8665fd5d3225f3aae6f7335b581c3a89c07af1009871dea9927f046432cd01b04234204d01583baf3a) -IP (tos 0x0, ttl 64, id 19921, offset 0, flags [none], proto UDP (17), length 232) - 192.168.1.1.500 > 192.168.1.2.500: [bad udp cksum 0x06b9 -> 0x6053!] isakmp 2.0 msgid 00000005 cookie a88875a8198992a6->71be8358efae7663: child_sa child_sa[R]: - (v2e: len=172 f6fc8113f34b92eb7d595a048f57d46593441ad9a61919e5919e7de4454fa35882937d3b74c83ab959fd053c6a12a51b04a0e92e01683782658bb9af2bbcc7a4bd5e1eef2dbcdc7715cac6eaecfbcc051a46f2263d1b8387bdad7e68c6e4ba1be9794e163e484768995a9f4a18edcbc6a44f0a74cb01c318e7848562e0866f388b8d04f14f1af87de7de6cee1f889d4330d82932a7127b7d1a934e641c32b76e33b37706d50286f8cbe335ba) -IP (tos 0x0, ttl 64, id 19922, offset 0, flags [none], proto UDP (17), length 312) - 192.168.1.2.500 > 192.168.1.1.500: [bad udp cksum 0x0709 -> 0xfb68!] isakmp 2.0 msgid 00000006 cookie a88875a8198992a6->71be8358efae7663: child_sa child_sa[I]: - (v2e: len=252 0aa2636a3b897ff3fa8093282ad1724ec9f326b64bf998e781d6edbb77a369a8444dc47a4dc095ebd3ac3b1dc337570bc42c93cd6dcb7289bc99a90874e66cc4ede7a13a58ce17c65b185e86def83d66f4c4ddc433e66baf1834e54296671357a5139b0b63ebf32e652df0938badea5a960ee1758e00faa643bed85f7adee2e2e75baeec9e0df88857a67ca5f2a2f4919d0b272313d42c791eb75feca145756a0ccae3640ee98c16689df511443228846d2c5b8830ea6d149c1abed11ad0a28ca33993036e91965d48a82a898145ada994af55978696480ab6cb697e13e67968a7748c3338786efb77250e5411b3a7eac84cd221324bd7b9109d9a69) -IP (tos 0x0, ttl 64, id 19923, offset 0, flags [none], proto UDP (17), length 280) - 192.168.1.2.500 > 192.168.1.1.500: [bad udp cksum 0x07e9 -> 0x9881!] isakmp 2.0 msgid 00000007 cookie a88875a8198992a6->71be8358efae7663: child_sa child_sa[I]: - (v2e: len=220 02c703f4bdd83246adc67e1ca07d7e7cfe21b6bde94637680a332813b8a4ca47341abd3a9c37263896c08252bfb1ea6c7ea44783b92ac52acb4fbfec53f03554281c6377650c09208f3d778b11e77b5fbd983be1e96699232392ef31a501fda73c6150fcc2e80bab1e0d49845bd5d511f7c9285ec08352687a2ac8d70d0dec3476491c40b97cb9da405606fc5e8d46bbe199e6d91ae993b7faa0583ec4296a80812fb7e0ae88d3bd54c4a30e5edb2778c960f3e0cb5b1369e999f84de4dc72b5d006805efb7e2d2ed4033e11ff9578012d22942e3799c9382506a021) -IP (tos 0x0, ttl 64, id 19924, offset 0, flags [none], proto UDP (17), length 232) - 192.168.1.1.500 > 192.168.1.2.500: [bad udp cksum 0x06b9 -> 0x3549!] isakmp 2.0 msgid 00000006 cookie a88875a8198992a6->71be8358efae7663: child_sa child_sa[R]: - (v2e: len=172 7e2e6623c66e161de9641ac7e1b6dfdcf3a5f45bbed123be88f3754d12514404afc054b3c7f789eb52a432a438359dde31152c11b8d209203d62779ca064823d70536c40f846d43d6694a2f12a3176f57007a3506c82fffaf3dbb713bbdbb5f540b7b39aee3c97145671504356095f7ab0c5a84347c0268bce259ca51b4a2dd75a7e3a7ee79f3bffc58d2fc0ac36686229f2309b5cd0c0dcc2af798664c14f5f166ab5e3c1f693092121aa44) -IP (tos 0x0, ttl 64, id 19925, offset 0, flags [none], proto UDP (17), length 232) - 192.168.1.1.500 > 192.168.1.2.500: [bad udp cksum 0x06b9 -> 0xe402!] isakmp 2.0 msgid 00000007 cookie a88875a8198992a6->71be8358efae7663: child_sa child_sa[R]: - (v2e: len=172 7b545033a2d35df2ab9f26c4bc444713910a32e60fb04cb10a9e76634787f9ddc138c6792faa074be2ebcb43f83f444249679018ec6dc7d4e2247dd8cb915778d90fa5597f1ecba8471db53e3b4da8f73d1eb60c23ca9fb5fa599dc526a961364471b49e5288fcef6a24d02a084d29c4a5c5d1fa305310dba01d09c9c36c86c0af297e05d3fc8559a11666a4363bacc354e96c941349b3f60dd397eb4c2bb09f381831167c0b33686c6bb5d8) -IP (tos 0x0, ttl 64, id 19926, offset 0, flags [none], proto UDP (17), length 392) - 192.168.1.2.500 > 192.168.1.1.500: [bad udp cksum 0x0759 -> 0x3076!] isakmp 2.0 msgid 00000008 cookie a88875a8198992a6->71be8358efae7663: child_sa child_sa[I]: - (v2e: len=332 c4bf89ec6e7936ac98a432a525c2406de940b338c9149ce19cb1bf23a69dfd481df7b3ada1adbb70bf17074643edf97e63ade5ed07f74674f26c48d2d6a9044477ee9f203084c26e85405987ec8b9693deaea20ce78c2a451bf4e834d7bcc3c54c1322b5f28ba307f2ce31a00552b97b8fc103a29fee2e0040ccddfa10bf3ab3d1209e643c228dec575240c7bd750cf4d6d06c958f66bd8a79831df871f6fbd93e025b16bd03de35ffcdbabac65570d2367e624d9f8e8560da9bc3a2142b75008b7ceb8e839dbf425da74c4be15c9dc31735ef1ac6f65c2375042dcf9682df74259b8c4437d7ee8df19fea6ec1d5bd491409cc7276d70ee0ba9172b4177fbce7fa28171a236ca8e2e0c149e602c9c6a0a3ff5f054287f54b7c314b07cdf6d246241dd364c7419cc0647422d08f5511b13e7b5cb719616466e1c6966f5ccd4d2ca2b12dda7047c6f63af5dd47) -IP (tos 0x0, ttl 64, id 19927, offset 0, flags [none], proto UDP (17), length 344) - 192.168.1.1.500 > 192.168.1.2.500: [bad udp cksum 0x0729 -> 0xd64e!] isakmp 2.0 msgid 00000008 cookie a88875a8198992a6->71be8358efae7663: child_sa child_sa[R]: - (v2e: len=284 2c1ac864ae2c8499b3c7af8c61a8c4dc9e1af23577b588d6bb3fdef3e483cc2f0158c07071d6dfaef73dccb6cdcf7a5758e41778daceb71cf6733e17168beff6ef2015d670c0b6574fc72e97d4282909966f394a9f9e0fced8e269bbf60e93f0f2080f48dcd4e02ff1129b94f68b268ddd9cff436f38e78fa7986d87e622d1f3da3b3c2795570ebc27d3c3d51f29ef0fff01ae89bd71d2e10ab8faee7d7bb4b5be8a9ee0ea9b5e347bbaf3ebdfaf19735d75e6faa020d6ea72826c2aa5cb2ee648de6b36cbb25087428dea44bd34504e05f2d4fef43c48e2a690510e9278ca8ff2f775792af061b5ccbcf77b3fee658851289969c55edc6d561718a0c761b09b0f67c96e61d00a7fa2929023b5adcfdd33436f63a478141d51b52333) -IP (tos 0x0, ttl 64, id 19928, offset 0, flags [none], proto UDP (17), length 120) - 192.168.1.2.500 > 192.168.1.1.500: [bad udp cksum 0x0649 -> 0x85b7!] isakmp 2.0 msgid 00000000 cookie 1d9be9451d4f97a8->64a2a4b5d0e17b6a: parent_sa inf2[I]: - (v2e: len=60 691b48829b6c5d6dd93fa8e33c38dd4c00f5434dc22b4251c0876f0bdb5dbba3dd06283907559a272f07ec7709b9d596a24cd8fe69b82a1f65dbf6f2) diff --git a/tests/ikev2fourv4.out b/tests/ikev2fourv4.out deleted file mode 100644 index dd6c3ee..0000000 --- a/tests/ikev2fourv4.out +++ /dev/null @@ -1,107 +0,0 @@ -IP (tos 0x0, ttl 64, id 19908, offset 0, flags [none], proto UDP (17), length 404) - 192.168.1.2.500 > 192.168.1.1.500: [bad udp cksum 0x0765 -> 0xf5df!] isakmp 2.0 msgid 00000000 cookie a88875a8198992a6->0000000000000000: parent_sa ikev2_init[I]: - (sa: len=116 - (p: #1 protoid=isakmp transform=12 len=116 - (t: #1 type=encr id=aes (type=keylen value=0080)) - (t: #2 type=encr id=aes (type=keylen value=0100)) - (t: #3 type=encr id=aes (type=keylen value=00c0)) - (t: #4 type=encr id=3des ) - (t: #5 type=prf id=hmac-sha ) - (t: #6 type=prf id=hmac-md5 ) - (t: #7 type=prf id=aes128_xcbc ) - (t: #8 type=integ id=hmac-sha ) - (t: #9 type=integ id=hmac-md5 ) - (t: #10 type=integ id=aes-xcbc ) - (t: #11 type=dh id=modp1024 ) - (t: #12 type=dh id=modp2048 ))) - (v2ke: len=128 group=modp1024 b5445bd60cece6fdcd3c96a52cbb7bb426a8c7a0f56a9c38d1b1c4f0c3a6e8e7dba5c7339b6ed02e757119dfb5b6933ce93b604987fbbc77221b2a0c7cdd32787eff10572bef546c361462f9da34847969a42e51c755996beac42e6fba961a75de0fc1b23f099380896ee89202122dedac1bd54aa8494ac3d740be4d2a4cf39d) - (nonce: len=32 nonce=(6128ebd023a864e94a7ffb74bf7cce2fd4367322b8b073f942282bd52ebfe3e6) ) - (n: prot_id=#0 type=16388(nat_detection_source_ip) data=(442ffe5aea0cee4dbacc758e801233bdc09a0abf0000001c00004005ba041b5de59955900d818ac54e18b236739d9e8b)) - (n: prot_id=#0 type=16389(nat_detection_destination_ip) data=(ba041b5de59955900d818ac54e18b236739d9e8b)) -IP (tos 0x0, ttl 64, id 19909, offset 0, flags [none], proto UDP (17), length 88) - 192.168.1.1.500 > 192.168.1.2.500: [bad udp cksum 0x0629 -> 0x0cd0!] isakmp 2.0 msgid 00000000 cookie a88875a8198992a6->0000000000000000: parent_sa ikev2_init[R]: - (n: prot_id=#0 type=16390(cookie) data=(00000001c2221e50c16e123f2b0c71aefcf0cb3b798782c6)) -IP (tos 0x0, ttl 64, id 19910, offset 0, flags [none], proto UDP (17), length 436) - 192.168.1.2.500 > 192.168.1.1.500: [bad udp cksum 0x0785 -> 0x7702!] isakmp 2.0 msgid 00000000 cookie a88875a8198992a6->0000000000000000: parent_sa ikev2_init[I]: - (n: prot_id=#0 type=16390(cookie) data=(00000001c2221e50c16e123f2b0c71aefcf0cb3b798782c622000078000000740101000c0300000c0100000c800e00800300000c0100000c800e01000300000c0100000c800e00c003000008010000030300000802000002030000080200000103000008020000040300000803000002030000080300000103000008030000050300000804000002000000080400000e2800008800020000b5445bd60cece6fdcd3c96a52cbb7bb426a8c7a0f56a9c38d1b1c4f0c3a6e8e7dba5c7339b6ed02e757119dfb5b6933ce93b604987fbbc77221b2a0c7cdd32787eff10572bef546c361462f9da34847969a42e51c755996beac42e6fba961a75de0fc1b23f099380896ee89202122dedac1bd54aa8494ac3d740be4d2a4cf39d290000246128ebd023a864e94a7ffb74bf7cce2fd4367322b8b073f942282bd52ebfe3e62900001c00004004442ffe5aea0cee4dbacc758e801233bdc09a0abf0000001c00004005ba041b5de59955900d818ac54e18b236739d9e8b)) - (sa: len=116 - (p: #1 protoid=isakmp transform=12 len=116 - (t: #1 type=encr id=aes (type=keylen value=0080)) - (t: #2 type=encr id=aes (type=keylen value=0100)) - (t: #3 type=encr id=aes (type=keylen value=00c0)) - (t: #4 type=encr id=3des ) - (t: #5 type=prf id=hmac-sha ) - (t: #6 type=prf id=hmac-md5 ) - (t: #7 type=prf id=aes128_xcbc ) - (t: #8 type=integ id=hmac-sha ) - (t: #9 type=integ id=hmac-md5 ) - (t: #10 type=integ id=aes-xcbc ) - (t: #11 type=dh id=modp1024 ) - (t: #12 type=dh id=modp2048 ))) - (v2ke: len=128 group=modp1024 b5445bd60cece6fdcd3c96a52cbb7bb426a8c7a0f56a9c38d1b1c4f0c3a6e8e7dba5c7339b6ed02e757119dfb5b6933ce93b604987fbbc77221b2a0c7cdd32787eff10572bef546c361462f9da34847969a42e51c755996beac42e6fba961a75de0fc1b23f099380896ee89202122dedac1bd54aa8494ac3d740be4d2a4cf39d) - (nonce: len=32 nonce=(6128ebd023a864e94a7ffb74bf7cce2fd4367322b8b073f942282bd52ebfe3e6) ) - (n: prot_id=#0 type=16388(nat_detection_source_ip) data=(442ffe5aea0cee4dbacc758e801233bdc09a0abf0000001c00004005ba041b5de59955900d818ac54e18b236739d9e8b)) - (n: prot_id=#0 type=16389(nat_detection_destination_ip) data=(ba041b5de59955900d818ac54e18b236739d9e8b)) -IP (tos 0x0, ttl 64, id 19911, offset 0, flags [none], proto UDP (17), length 332) - 192.168.1.1.500 > 192.168.1.2.500: [bad udp cksum 0x071d -> 0x8650!] isakmp 2.0 msgid 00000000 cookie a88875a8198992a6->71be8358efae7663: parent_sa ikev2_init[R]: - (sa: len=44 - (p: #1 protoid=isakmp transform=4 len=44 - (t: #1 type=encr id=aes (type=keylen value=0080)) - (t: #2 type=prf id=hmac-sha ) - (t: #3 type=integ id=hmac-sha ) - (t: #4 type=dh id=modp1024 ))) - (v2ke: len=128 group=modp1024 5a56714d3abf64e3a3f401ead9f5323ff0b77faa5f1e99199b13ac821f0a0c4f854786ca09b7a76aa508bcee11f16369a16d5fa041ca2d9a8dfa8228c61f2482d2175c5c1a9491fc221bec7a1fa69f656d4c98ba49ae9d721dedf4a02d7ecdfc201dc785a13ed74e4f3982762a2720ffdfc365ee4e37279af496cd86f881fd15) - (nonce: len=32 nonce=(b31c379f272ce2984bd17ca38c8729e1edbc081a14fb0f67cff81721dfeec1f9) ) - (n: prot_id=#0 type=16388(nat_detection_source_ip) data=(fe2bfb7c2c81ed0b61f756b57fac78a75ced8af60000001c00004005905954a783be2c37e2ccc4fdd270a532dbe6f428)) - (n: prot_id=#0 type=16389(nat_detection_destination_ip) data=(905954a783be2c37e2ccc4fdd270a532dbe6f428)) -IP (tos 0x0, ttl 64, id 19912, offset 0, flags [none], proto UDP (17), length 264) - 192.168.1.2.500 > 192.168.1.1.500: [bad udp cksum 0x07d9 -> 0xb2d6!] isakmp 2.0 msgid 00000001 cookie a88875a8198992a6->71be8358efae7663: child_sa ikev2_auth[I]: - (v2e: len=204 f606135ad373e70836fda91b63ca4c608e1ad58218488c2647ff1e8a912958aa77efbc3068a2ae6ab7c3d0cb1e6fb864df99c62f2cc045708084708154a393c2f4cbefad1f6848525d49db563e13345a4e6e2fd066c04e2ce291f4714baec6bf328356c446247cab835bda3e8e1aae5967248f01eb3a1c02a541b4da09b3276b400d50a067542a678468c5f41e54017c00964f1003f8c88896a6f12215a5f1a060713cc83802cae3abee18417c0c35dc6f58a01adb96ed1c009c68e3069ae70f4b10afb7736c111ade4d826e) -IP (tos 0x0, ttl 64, id 19913, offset 0, flags [none], proto UDP (17), length 184) - 192.168.1.1.500 > 192.168.1.2.500: [bad udp cksum 0x0689 -> 0x0748!] isakmp 2.0 msgid 00000001 cookie a88875a8198992a6->71be8358efae7663: child_sa ikev2_auth[R]: - (v2e: len=124 6afe95bc5147b0ad7e4ccb9141c160a44f7c6eddc6b29d414ad5e2b882544fdc6c3ee6983ae1408b5764b1649343876454d1bf4d515aaf03c15eafe71be6b4cf51ab60630c45bcf0e2a2db8eee70095a4e010fdb342adb6d03dae5def9d4907cdfc8ccd6f3da9b7497c58e84a952d983bafb941ab1de1b0bb9ffad3b) -IP (tos 0x0, ttl 64, id 19914, offset 0, flags [none], proto UDP (17), length 280) - 192.168.1.2.500 > 192.168.1.1.500: [bad udp cksum 0x07e9 -> 0x35ac!] isakmp 2.0 msgid 00000002 cookie a88875a8198992a6->71be8358efae7663: child_sa child_sa[I]: - (v2e: len=220 53cc6c0b41f14e4fc057c7f6a3524adde8521f26f67c058430a902db1a52ed16d322630d2eb515372dc12d97dc7c20552607e2ed193d9b33939e10aa2fc37b6199f0a629c6b58135f5b6f9e07906cd30dc3cae7d55fe08d95d3e660a623731c396a325adbff11c490f9fd102224391a65fb7bbe862945b64cf1fb833b9ce68c83df0b9d2ce7bd54f650864af9445e547cdfe5caa393344ae5274933b7efcf616821ea7daa9c5a6e8275ad6c688700cb7f4bcd6fb8025e93bb6dd5f581faebcbecb798c87617a4ec1b06ba290ac5fc1d6e4c2725c1f9f0e10b144fbbe) -IP (tos 0x0, ttl 64, id 19915, offset 0, flags [none], proto UDP (17), length 248) - 192.168.1.2.500 > 192.168.1.1.500: [bad udp cksum 0x06c9 -> 0xdeaf!] isakmp 2.0 msgid 00000003 cookie a88875a8198992a6->71be8358efae7663: child_sa child_sa[I]: - (v2e: len=188 9603e03f280964782717da15a502f0a9e9f17dbf4487c6923cf00b7040d539bc947c705790e4e99b834a7ae2a8d79f5620e11615e0a762889aab821e0d03132dfb8cc6b3718582411bcd98c242a8b10a66274dae1ce055fb30a4d3e64c969be6e08b626958f4446c6e4a0c8d7a24522959c6152e63a575c06930c2097539bfbdff08c70533428cf6b452e0b8b0259c2292925d2ed62e8956bc7e3a911a61509be1ac8f7b7cd4636176e524f4d0f17573f2aeddce2251fd6d5d9cd54d) -IP (tos 0x0, ttl 64, id 19916, offset 0, flags [none], proto UDP (17), length 104) - 192.168.1.1.500 > 192.168.1.2.500: [bad udp cksum 0x0639 -> 0xc72b!] isakmp 2.0 msgid 00000002 cookie a88875a8198992a6->71be8358efae7663: child_sa child_sa[R]: - (v2e: len=44 5bd2d26cb43b6cec30dec13fa387359797baf7b41e783422bc4dabf5d03ab2420d277d3b2f28d1f003da98d1) -IP (tos 0x0, ttl 64, id 19917, offset 0, flags [none], proto UDP (17), length 104) - 192.168.1.1.500 > 192.168.1.2.500: [bad udp cksum 0x0639 -> 0x4119!] isakmp 2.0 msgid 00000003 cookie a88875a8198992a6->71be8358efae7663: child_sa child_sa[R]: - (v2e: len=44 38f60ab69110967961ae04af4e47a770260d61e29d18fb13ce093a47970068dacb342f7999cc3d0d59f77a94) -IP (tos 0x0, ttl 64, id 19918, offset 0, flags [none], proto UDP (17), length 312) - 192.168.1.2.500 > 192.168.1.1.500: [bad udp cksum 0x0709 -> 0x236f!] isakmp 2.0 msgid 00000004 cookie a88875a8198992a6->71be8358efae7663: child_sa child_sa[I]: - (v2e: len=252 c7f2f1cc4997b30a61623222d4bfb535baa302199c4d8c1fdcfa745b0b29b5e7618ff0356848444d25010e5ad420760890ede066c838269b22d9e30d4fec1a012e731a210c243f803b661970d32e998e919f573c5742d2288949052c5a46a0cd7c4a1a295ede296c4fd9839b64dc4944e11a35f42a8ce18b447200fd03dbd58a71583b3a27c380148c801ce14452f7d756b1f55b10b84a58cfa9526001fff7157154645022e4456085517ceed98b79e20ed33297cf5ad80287e782728a8c6b87d2b422e7eeda1c72b33ebc51a5b76def9a59ffd1b4f97dec88c22a4f5448a71aeedf20c87dae5b44cd2e7a519d719a509f83f3b2faf6f5c607da609f) -IP (tos 0x0, ttl 64, id 19919, offset 0, flags [none], proto UDP (17), length 280) - 192.168.1.2.500 > 192.168.1.1.500: [bad udp cksum 0x07e9 -> 0xd8ba!] isakmp 2.0 msgid 00000005 cookie a88875a8198992a6->71be8358efae7663: child_sa child_sa[I]: - (v2e: len=220 dae6134a9cff1a4e3cc59a79e019a93f8469dd4e2faaaad1c3afba22ecd128fdb1e8954c753f8f62aeb6aac9732f414b065ec39569a670be6980c81eb3e44bc93ec63e9a754d0456c6703cd718371edeef674928180f9d14c39e52cfa4a517368e7db2fa0bfdb41cf56d97006233103f22650fdcd5ffab8418e40903e4749e126d06e9dc2a18cfd5bfda0013e3e9eb53e79bbe30eadf0f4ddcefbab0c08e870b29d39b2401c75b68fc46a066782857ca48d547e410ac15cabb6738875200b535cbd9ae1e1ce99839c9c25639070e5ed977809c50b6bb9550b50b49bb) -IP (tos 0x0, ttl 64, id 19920, offset 0, flags [none], proto UDP (17), length 232) - 192.168.1.1.500 > 192.168.1.2.500: [bad udp cksum 0x06b9 -> 0x7194!] isakmp 2.0 msgid 00000004 cookie a88875a8198992a6->71be8358efae7663: child_sa child_sa[R]: - (v2e: len=172 1fd8516b57b1ab1bdbcdba1930a5097decc023c5c534497ca53f178b9d4d11228746454371b0cc6ec067e14e1e5c5652840cfdae0ea84c7f0a6e799ff7fb131d15763feef45e80f24716cde47d23527f68e055a7c3adc7225489295e1bc3f1029b63822872865df55c6c275dead8a6f64bda8ae44f42c318fa71eb04eed7312dafd2dd8665fd5d3225f3aae6f7335b581c3a89c07af1009871dea9927f046432cd01b04234204d01583baf3a) -IP (tos 0x0, ttl 64, id 19921, offset 0, flags [none], proto UDP (17), length 232) - 192.168.1.1.500 > 192.168.1.2.500: [bad udp cksum 0x06b9 -> 0x6053!] isakmp 2.0 msgid 00000005 cookie a88875a8198992a6->71be8358efae7663: child_sa child_sa[R]: - (v2e: len=172 f6fc8113f34b92eb7d595a048f57d46593441ad9a61919e5919e7de4454fa35882937d3b74c83ab959fd053c6a12a51b04a0e92e01683782658bb9af2bbcc7a4bd5e1eef2dbcdc7715cac6eaecfbcc051a46f2263d1b8387bdad7e68c6e4ba1be9794e163e484768995a9f4a18edcbc6a44f0a74cb01c318e7848562e0866f388b8d04f14f1af87de7de6cee1f889d4330d82932a7127b7d1a934e641c32b76e33b37706d50286f8cbe335ba) -IP (tos 0x0, ttl 64, id 19922, offset 0, flags [none], proto UDP (17), length 312) - 192.168.1.2.500 > 192.168.1.1.500: [bad udp cksum 0x0709 -> 0xfb68!] isakmp 2.0 msgid 00000006 cookie a88875a8198992a6->71be8358efae7663: child_sa child_sa[I]: - (v2e: len=252 0aa2636a3b897ff3fa8093282ad1724ec9f326b64bf998e781d6edbb77a369a8444dc47a4dc095ebd3ac3b1dc337570bc42c93cd6dcb7289bc99a90874e66cc4ede7a13a58ce17c65b185e86def83d66f4c4ddc433e66baf1834e54296671357a5139b0b63ebf32e652df0938badea5a960ee1758e00faa643bed85f7adee2e2e75baeec9e0df88857a67ca5f2a2f4919d0b272313d42c791eb75feca145756a0ccae3640ee98c16689df511443228846d2c5b8830ea6d149c1abed11ad0a28ca33993036e91965d48a82a898145ada994af55978696480ab6cb697e13e67968a7748c3338786efb77250e5411b3a7eac84cd221324bd7b9109d9a69) -IP (tos 0x0, ttl 64, id 19923, offset 0, flags [none], proto UDP (17), length 280) - 192.168.1.2.500 > 192.168.1.1.500: [bad udp cksum 0x07e9 -> 0x9881!] isakmp 2.0 msgid 00000007 cookie a88875a8198992a6->71be8358efae7663: child_sa child_sa[I]: - (v2e: len=220 02c703f4bdd83246adc67e1ca07d7e7cfe21b6bde94637680a332813b8a4ca47341abd3a9c37263896c08252bfb1ea6c7ea44783b92ac52acb4fbfec53f03554281c6377650c09208f3d778b11e77b5fbd983be1e96699232392ef31a501fda73c6150fcc2e80bab1e0d49845bd5d511f7c9285ec08352687a2ac8d70d0dec3476491c40b97cb9da405606fc5e8d46bbe199e6d91ae993b7faa0583ec4296a80812fb7e0ae88d3bd54c4a30e5edb2778c960f3e0cb5b1369e999f84de4dc72b5d006805efb7e2d2ed4033e11ff9578012d22942e3799c9382506a021) -IP (tos 0x0, ttl 64, id 19924, offset 0, flags [none], proto UDP (17), length 232) - 192.168.1.1.500 > 192.168.1.2.500: [bad udp cksum 0x06b9 -> 0x3549!] isakmp 2.0 msgid 00000006 cookie a88875a8198992a6->71be8358efae7663: child_sa child_sa[R]: - (v2e: len=172 7e2e6623c66e161de9641ac7e1b6dfdcf3a5f45bbed123be88f3754d12514404afc054b3c7f789eb52a432a438359dde31152c11b8d209203d62779ca064823d70536c40f846d43d6694a2f12a3176f57007a3506c82fffaf3dbb713bbdbb5f540b7b39aee3c97145671504356095f7ab0c5a84347c0268bce259ca51b4a2dd75a7e3a7ee79f3bffc58d2fc0ac36686229f2309b5cd0c0dcc2af798664c14f5f166ab5e3c1f693092121aa44) -IP (tos 0x0, ttl 64, id 19925, offset 0, flags [none], proto UDP (17), length 232) - 192.168.1.1.500 > 192.168.1.2.500: [bad udp cksum 0x06b9 -> 0xe402!] isakmp 2.0 msgid 00000007 cookie a88875a8198992a6->71be8358efae7663: child_sa child_sa[R]: - (v2e: len=172 7b545033a2d35df2ab9f26c4bc444713910a32e60fb04cb10a9e76634787f9ddc138c6792faa074be2ebcb43f83f444249679018ec6dc7d4e2247dd8cb915778d90fa5597f1ecba8471db53e3b4da8f73d1eb60c23ca9fb5fa599dc526a961364471b49e5288fcef6a24d02a084d29c4a5c5d1fa305310dba01d09c9c36c86c0af297e05d3fc8559a11666a4363bacc354e96c941349b3f60dd397eb4c2bb09f381831167c0b33686c6bb5d8) -IP (tos 0x0, ttl 64, id 19926, offset 0, flags [none], proto UDP (17), length 392) - 192.168.1.2.500 > 192.168.1.1.500: [bad udp cksum 0x0759 -> 0x3076!] isakmp 2.0 msgid 00000008 cookie a88875a8198992a6->71be8358efae7663: child_sa child_sa[I]: - (v2e: len=332 c4bf89ec6e7936ac98a432a525c2406de940b338c9149ce19cb1bf23a69dfd481df7b3ada1adbb70bf17074643edf97e63ade5ed07f74674f26c48d2d6a9044477ee9f203084c26e85405987ec8b9693deaea20ce78c2a451bf4e834d7bcc3c54c1322b5f28ba307f2ce31a00552b97b8fc103a29fee2e0040ccddfa10bf3ab3d1209e643c228dec575240c7bd750cf4d6d06c958f66bd8a79831df871f6fbd93e025b16bd03de35ffcdbabac65570d2367e624d9f8e8560da9bc3a2142b75008b7ceb8e839dbf425da74c4be15c9dc31735ef1ac6f65c2375042dcf9682df74259b8c4437d7ee8df19fea6ec1d5bd491409cc7276d70ee0ba9172b4177fbce7fa28171a236ca8e2e0c149e602c9c6a0a3ff5f054287f54b7c314b07cdf6d246241dd364c7419cc0647422d08f5511b13e7b5cb719616466e1c6966f5ccd4d2ca2b12dda7047c6f63af5dd47) -IP (tos 0x0, ttl 64, id 19927, offset 0, flags [none], proto UDP (17), length 344) - 192.168.1.1.500 > 192.168.1.2.500: [bad udp cksum 0x0729 -> 0xd64e!] isakmp 2.0 msgid 00000008 cookie a88875a8198992a6->71be8358efae7663: child_sa child_sa[R]: - (v2e: len=284 2c1ac864ae2c8499b3c7af8c61a8c4dc9e1af23577b588d6bb3fdef3e483cc2f0158c07071d6dfaef73dccb6cdcf7a5758e41778daceb71cf6733e17168beff6ef2015d670c0b6574fc72e97d4282909966f394a9f9e0fced8e269bbf60e93f0f2080f48dcd4e02ff1129b94f68b268ddd9cff436f38e78fa7986d87e622d1f3da3b3c2795570ebc27d3c3d51f29ef0fff01ae89bd71d2e10ab8faee7d7bb4b5be8a9ee0ea9b5e347bbaf3ebdfaf19735d75e6faa020d6ea72826c2aa5cb2ee648de6b36cbb25087428dea44bd34504e05f2d4fef43c48e2a690510e9278ca8ff2f775792af061b5ccbcf77b3fee658851289969c55edc6d561718a0c761b09b0f67c96e61d00a7fa2929023b5adcfdd33436f63a478141d51b52333) -IP (tos 0x0, ttl 64, id 19928, offset 0, flags [none], proto UDP (17), length 120) - 192.168.1.2.500 > 192.168.1.1.500: [bad udp cksum 0x0649 -> 0x85b7!] isakmp 2.0 msgid 00000000 cookie 1d9be9451d4f97a8->64a2a4b5d0e17b6a: parent_sa inf2[I]: - (v2e: len=60 691b48829b6c5d6dd93fa8e33c38dd4c00f5434dc22b4251c0876f0bdb5dbba3dd06283907559a272f07ec7709b9d596a24cd8fe69b82a1f65dbf6f2) diff --git a/tests/ikev2pI2-secrets.txt b/tests/ikev2pI2-secrets.txt deleted file mode 100644 index efe9636..0000000 --- a/tests/ikev2pI2-secrets.txt +++ /dev/null @@ -1,2 +0,0 @@ -ikev2 I 0x0001020304050607 0xc02e7a3031a03188 sha1:0x4ea8e662b07cdd430f6944c6723e4b82d5722418 aes128:0x3f44bf47cafd8150591deb088199fcbf -ikev2 R 0x0001020304050607 0xc02e7a3031a03188 sha1:0x515b0bd22e6d76b34fdb760aa7bfad80b109b75d aes128:0xbedb67ec7dc3d00cccac42e70cd63bde diff --git a/tests/ikev2pI2.out b/tests/ikev2pI2.out deleted file mode 100644 index 7940e8c..0000000 --- a/tests/ikev2pI2.out +++ /dev/null @@ -1,41 +0,0 @@ -IP (tos 0x0, ttl 64, id 0, offset 0, flags [none], proto UDP (17), length 536, bad cksum 0 (->f48e)!) - 192.1.2.45.500 > 192.1.2.23.500: [no cksum] isakmp 2.0 msgid 00000000 cookie 0001020304050607->0000000000000000: parent_sa ikev2_init[I]: - (sa[C]: len=240 - (p: #1 protoid=isakmp transform=4 len=40 - (t: #1 type=encr id=aes ) - (t: #2 type=integ id=hmac-sha ) - (t: #3 type=prf id=hmac-sha ) - (t: #4 type=dh id=modp1536 )) - (p: #2 protoid=isakmp transform=4 len=40 - (t: #1 type=encr id=aes ) - (t: #2 type=integ id=hmac-sha ) - (t: #3 type=prf id=hmac-md5 ) - (t: #4 type=dh id=modp1536 )) - (p: #3 protoid=isakmp transform=4 len=40 - (t: #1 type=encr id=3des ) - (t: #2 type=integ id=hmac-sha ) - (t: #3 type=prf id=hmac-sha ) - (t: #4 type=dh id=modp1536 )) - (p: #4 protoid=isakmp transform=4 len=40 - (t: #1 type=encr id=3des ) - (t: #2 type=integ id=hmac-sha ) - (t: #3 type=prf id=hmac-md5 ) - (t: #4 type=dh id=modp1536 )) - (p: #5 protoid=isakmp transform=4 len=40 - (t: #1 type=encr id=3des ) - (t: #2 type=integ id=hmac-sha ) - (t: #3 type=prf id=hmac-sha ) - (t: #4 type=dh id=modp1024 )) - (p: #6 protoid=isakmp transform=4 len=40 - (t: #1 type=encr id=3des ) - (t: #2 type=integ id=hmac-sha ) - (t: #3 type=prf id=hmac-md5 ) - (t: #4 type=dh id=modp1024 ))) - (v2ke: len=192 group=modp1536 ffbc6a92a6b9559b05fa96a7a43507b4c1e1c0861a5871d9ba73a163113788c0debb3979e7ff0c52b4ce6050eb05369ea4300d2bff3b1b299f3b802ccb13318c2ab9e3b5627cb4b35eb939982076b57c050d7b35c3c5c7cc8c0feab7b64a7d7b6b8f6b4dabf4ac406dd20126b90a98ac766efa37a7890c4394ff9a77615b58f52d651bbfa58d2a549af8b01aa4bca3d762426663b155d4ebda9f60a6a13573e6a888135cdc673dd483029903f3a90eca23e1ec1e270331b2d050f4f758f49927) - (nonce[C]: len=16 nonce=(b5ce8419095c6e2b6b62d3055305b3c4) ) - (v2vid: len=12 vid=OErlA\nQukSR 4f45726c415c6e51756b5352) -IP (tos 0x0, ttl 64, id 0, offset 0, flags [none], proto UDP (17), length 312, bad cksum 0 (->f56e)!) - 192.1.2.45.500 > 192.1.2.23.500: [no cksum] isakmp 2.0 msgid 00000000 cookie 0001020304050607->c02e7a3031a03188: parent_sa ikev2_auth[I]: - (v2e[C]: len=252 000102030405060708090a0b0c0d0e0f4bcf2da20444caca5fb591c1ab4b9b4d4f22ac7cb49e6b08d2738884fb3efd8eebc607accc1f80f890e24df65e53d61e899f1d319d89c033524d036fd4ea7e0345def93356e2865e5481a6a20a7604083de04595e1071a2e98179eefb4e6ae4708e6875ae297b4dc5b2602d971e36f66cef12303946eea897d86bbb5903115281a266f4dcb627e146972ff2f7102931df82f24a2e40df594afc11e0a85eb1c56b9eddb7e2de52fa95cf51f4b4c9b5d53237ae39f64519413d201374a987fa8d1ce460fa2d67c417462203f2948c0b9ed8b734a69a015ff63bde767f44f83c3cfe5119d72d74e695b1032b957 - (v2IDi: len=8 0200000077657374 fqdn:west) - (v2auth: len=196 method=rsasig authdata=(000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) )) diff --git a/tests/ikev2pI2.pcap b/tests/ikev2pI2.pcap deleted file mode 100644 index 8d5eb48..0000000 Binary files a/tests/ikev2pI2.pcap and /dev/null differ diff --git a/tests/ipv6-bad-version.out b/tests/ipv6-bad-version.out deleted file mode 100644 index cd9150b..0000000 --- a/tests/ipv6-bad-version.out +++ /dev/null @@ -1,4 +0,0 @@ -IP6 :: > ff02::1:ff76:6c14: ICMP6, neighbor solicitation, who has fe80::20c:29ff:fe76:6c14, length 24 -IP6 version error: 0 != 6 -IP6 :: > ff02::1:ff76:6c14: ICMP6, neighbor solicitation, who has 1111:2222:3333:4444:20c:29ff:fe76:6c14, length 24 -IP6 version error: 0 != 6 diff --git a/tests/ipv6-bad-version.pcap b/tests/ipv6-bad-version.pcap deleted file mode 100644 index 357a6ee..0000000 Binary files a/tests/ipv6-bad-version.pcap and /dev/null differ diff --git a/tests/ipv6-routing-header.out b/tests/ipv6-routing-header.out deleted file mode 100644 index c19b879..0000000 --- a/tests/ipv6-routing-header.out +++ /dev/null @@ -1,4 +0,0 @@ -IP6 (hlim 4, next-header Routing (43) payload length: 32) 2200::244:212:3fff:feae:22f7 > 2200::240:2:0:0:4: srcrt (len=2, type=0, segleft=1, rsv=0x0, [0]2200::210:2:0:0:4) [icmp6 sum ok] ICMP6, echo request, seq 0 -IP6 (hlim 5, next-header Routing (43) payload length: 48) 2200::244:212:3fff:feae:22f7 > 2200::211:2:0:0:2: srcrt (len=4, type=0, segleft=2, rsv=0x0, [0]2200::210:2:0:0:4, [1]2200::240:2:0:0:4) [icmp6 sum ok] ICMP6, echo request, seq 0 -IP6 (hlim 4, next-header Routing (43) payload length: 32) 2200::244:212:3fff:feae:22f7 > 2200::240:2:0:0:4: srcrt (len=2, type=0, segleft=1, rsv=0x0, [0]2200::210:2:0:0:4) 5645 > 5642: [udp sum ok] UDP, length 0 -IP6 (hlim 5, next-header Routing (43) payload length: 48) 2200::244:212:3fff:feae:22f7 > 2200::211:2:0:0:2: srcrt (len=4, type=0, segleft=2, rsv=0x0, [0]2200::210:2:0:0:4, [1]2200::240:2:0:0:4) 5645 > 5642: [udp sum ok] UDP, length 0 diff --git a/tests/ipv6-routing-header.pcap b/tests/ipv6-routing-header.pcap deleted file mode 100644 index 683e01b..0000000 Binary files a/tests/ipv6-routing-header.pcap and /dev/null differ diff --git a/tests/isakmp-delete-segfault.pcap b/tests/isakmp-delete-segfault.pcap deleted file mode 100644 index 9c4ada1..0000000 Binary files a/tests/isakmp-delete-segfault.pcap and /dev/null differ diff --git a/tests/isakmp-identification-segfault.pcap b/tests/isakmp-identification-segfault.pcap deleted file mode 100644 index c14f04f..0000000 Binary files a/tests/isakmp-identification-segfault.pcap and /dev/null differ diff --git a/tests/isakmp-pointer-loop.pcap b/tests/isakmp-pointer-loop.pcap deleted file mode 100644 index 578da0d..0000000 Binary files a/tests/isakmp-pointer-loop.pcap and /dev/null differ diff --git a/tests/isakmp1.out b/tests/isakmp1.out deleted file mode 100644 index 355a8ea..0000000 --- a/tests/isakmp1.out +++ /dev/null @@ -1 +0,0 @@ -IP 127.0.0.1.500 > 127.0.0.1.500: isakmp: diff --git a/tests/isakmp2.out b/tests/isakmp2.out deleted file mode 100644 index 44c28db..0000000 --- a/tests/isakmp2.out +++ /dev/null @@ -1 +0,0 @@ -IP 129.170.249.126.500 > 129.170.249.87.500: isakmp: phase 1 ? base diff --git a/tests/isakmp3.out b/tests/isakmp3.out deleted file mode 100644 index 8619263..0000000 --- a/tests/isakmp3.out +++ /dev/null @@ -1,3 +0,0 @@ -IP (tos 0x0, ttl 255, id 41068, offset 0, flags [none], proto UDP (17), length 312) - 127.0.0.1.501 > 127.0.0.1.500: isakmp 1.0 msgid 00000000: phase 1 I ident: - (id: idtype=FQDN protoid=0 port=0 len=248 \0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00\0x00) diff --git a/tests/isakmp4.out b/tests/isakmp4.out deleted file mode 100644 index 0de3ebc..0000000 --- a/tests/isakmp4.out +++ /dev/null @@ -1,35 +0,0 @@ -ARP, Request who-has 192.1.2.23 tell 192.1.2.254, length 28 -ARP, Reply 192.1.2.23 is-at 10:00:00:64:64:23, length 28 -IP 192.1.2.254.500 > 192.1.2.23.500: isakmp: phase 1 I ident -IP 192.1.2.23.500 > 192.1.2.254.500: isakmp: phase 1 R ident -IP 192.1.2.254.500 > 192.1.2.23.500: isakmp: phase 1 I ident -IP 192.1.2.23.500 > 192.1.2.254.500: isakmp: phase 1 R ident -IP 192.1.2.254.4500 > 192.1.2.23.4500: NONESP-encap: isakmp: phase 1 I ident[E] -IP 192.1.2.23.4500 > 192.1.2.254.4500: NONESP-encap: isakmp: phase 1 R ident[E] -IP 192.1.2.254.4500 > 192.1.2.23.4500: NONESP-encap: isakmp: phase 2/others I oakley-quick[E] -IP 192.1.2.23.4500 > 192.1.2.254.4500: NONESP-encap: isakmp: phase 2/others R oakley-quick[E] -IP 192.1.2.254.4500 > 192.1.2.23.4500: NONESP-encap: isakmp: phase 2/others I oakley-quick[E] -IP 192.1.2.254.4500 > 192.1.2.23.4500: UDP-encap: ESP(spi=0xf4dc0ae5,seq=0x1), length 132 -ARP, Request who-has 192.1.2.254 tell 192.1.2.23, length 28 -ARP, Reply 192.1.2.254 is-at 10:00:00:de:ad:ba, length 28 -IP 192.1.2.23.4500 > 192.1.2.254.4500: NONESP-encap: isakmp: phase 2/others R oakley-quick[E] -IP 192.1.2.254.4500 > 192.1.2.23.4500: NONESP-encap: isakmp: phase 2/others I oakley-quick[E] -IP 192.1.2.254.4500 > 192.1.2.23.4500: UDP-encap: ESP(spi=0xf4dc0ae5,seq=0x2), length 132 -IP 192.1.2.254.4500 > 192.1.2.23.4500: isakmp-nat-keep-alive -IP 192.1.2.254.4500 > 192.1.2.23.4500: UDP-encap: ESP(spi=0xf4dc0ae5,seq=0x3), length 132 -IP 192.1.2.23.4500 > 192.1.2.254.4500: NONESP-encap: isakmp: phase 2/others R oakley-quick[E] -IP 192.1.2.254.4500 > 192.1.2.23.4500: NONESP-encap: isakmp: phase 2/others I oakley-quick[E] -IP 192.1.2.254.4500 > 192.1.2.23.4500: UDP-encap: ESP(spi=0xf4dc0ae5,seq=0x4), length 132 -IP 192.1.2.254.4500 > 192.1.2.23.4500: isakmp-nat-keep-alive -IP 192.1.2.254.4500 > 192.1.2.23.4500: UDP-encap: ESP(spi=0xf4dc0ae5,seq=0x5), length 132 -IP 192.1.2.254.4500 > 192.1.2.23.4500: UDP-encap: ESP(spi=0xf4dc0ae5,seq=0x6), length 132 -ARP, Request who-has 192.1.2.23 tell 192.1.2.254, length 28 -ARP, Reply 192.1.2.23 is-at 10:00:00:64:64:23, length 28 -IP 192.1.2.254.4500 > 192.1.2.23.4500: isakmp-nat-keep-alive -IP 192.1.2.254.4500 > 192.1.2.23.4500: UDP-encap: ESP(spi=0xf4dc0ae5,seq=0x7), length 132 -IP 192.1.2.23.4500 > 192.1.2.254.4500: NONESP-encap: isakmp: phase 2/others R oakley-quick[E] -IP 192.1.2.254.4500 > 192.1.2.23.4500: UDP-encap: ESP(spi=0xf4dc0ae5,seq=0x8), length 132 -ARP, Request who-has 192.1.2.254 tell 192.1.2.23, length 28 -ARP, Reply 192.1.2.254 is-at 10:00:00:de:ad:ba, length 28 -IP 192.1.2.254.4500 > 192.1.2.23.4500: isakmp-nat-keep-alive -IP 192.1.2.23.4500 > 192.1.2.254.4500: NONESP-encap: isakmp: phase 2/others R inf[E] diff --git a/tests/isakmp4500.pcap b/tests/isakmp4500.pcap deleted file mode 100644 index 8ff5ab4..0000000 Binary files a/tests/isakmp4500.pcap and /dev/null differ diff --git a/tests/isakmp5-v.out b/tests/isakmp5-v.out deleted file mode 100644 index 58014af..0000000 --- a/tests/isakmp5-v.out +++ /dev/null @@ -1,44 +0,0 @@ -IP (tos 0xc0, ttl 255, id 101, offset 0, flags [none], proto UDP (17), length 176) - 10.0.0.1.500 > 10.0.0.2.500: isakmp 1.0 msgid 00000000: phase 1 I ident: - (sa: doi=ipsec situation=identity - (p: #1 protoid=isakmp transform=1 - (t: #1 id=ike (type=enc value=aes)(type=keylen value=0080)(type=hash value=sha1)(type=group desc value=modp768)(type=auth value=preshared)(type=lifetype value=sec)(type=lifeduration len=4 value=00015180)))) - (vid: len=16) - (vid: len=16) - (vid: len=16) -IP (tos 0xc0, ttl 255, id 49, offset 0, flags [none], proto UDP (17), length 136) - 10.0.0.2.500 > 10.0.0.1.500: isakmp 1.0 msgid 00000000: phase 1 R ident: - (sa: doi=ipsec situation=identity - (p: #1 protoid=isakmp transform=1 - (t: #1 id=ike (type=enc value=aes)(type=keylen value=0080)(type=hash value=sha1)(type=group desc value=modp768)(type=auth value=preshared)(type=lifetype value=sec)(type=lifeduration len=4 value=00015180)))) - (vid: len=16) -IP (tos 0xc0, ttl 255, id 102, offset 0, flags [none], proto UDP (17), length 300) - 10.0.0.1.500 > 10.0.0.2.500: isakmp 1.0 msgid 00000000: phase 1 I ident: - (ke: key len=96) - (nonce: n len=20) - (vid: len=16) - (vid: len=16) - (vid: len=16) - (vid: len=8) - (pay15) - (pay15) -IP (tos 0xc0, ttl 255, id 50, offset 0, flags [none], proto UDP (17), length 300) - 10.0.0.2.500 > 10.0.0.1.500: isakmp 1.0 msgid 00000000: phase 1 R ident: - (ke: key len=96) - (nonce: n len=20) - (vid: len=16) - (vid: len=16) - (vid: len=16) - (vid: len=8) - (pay15) - (pay15) -IP (tos 0xc0, ttl 255, id 103, offset 0, flags [none], proto UDP (17), length 136) - 10.0.0.1.500 > 10.0.0.2.500: isakmp 1.0 msgid 00000000: phase 1 I ident[E]: [encrypted id] -IP (tos 0xc0, ttl 255, id 51, offset 0, flags [none], proto UDP (17), length 104) - 10.0.0.2.500 > 10.0.0.1.500: isakmp 1.0 msgid 00000000: phase 1 R ident[E]: [encrypted id] -IP (tos 0xc0, ttl 255, id 104, offset 0, flags [none], proto UDP (17), length 248) - 10.0.0.1.500 > 10.0.0.2.500: isakmp 1.0 msgid 0f2b7862: phase 2/others I oakley-quick[E]: [encrypted hash] -IP (tos 0xc0, ttl 255, id 52, offset 0, flags [none], proto UDP (17), length 248) - 10.0.0.2.500 > 10.0.0.1.500: isakmp 1.0 msgid 0f2b7862: phase 2/others R oakley-quick[E]: [encrypted hash] -IP (tos 0xc0, ttl 255, id 105, offset 0, flags [none], proto UDP (17), length 88) - 10.0.0.1.500 > 10.0.0.2.500: isakmp 1.0 msgid 0f2b7862: phase 2/others I oakley-quick[E]: [encrypted hash] diff --git a/tests/isis-infinite-loop.pcap b/tests/isis-infinite-loop.pcap deleted file mode 100644 index b482fc8..0000000 Binary files a/tests/isis-infinite-loop.pcap and /dev/null differ diff --git a/tests/isis_1-v.out b/tests/isis_1-v.out deleted file mode 100644 index bbe6e26..0000000 --- a/tests/isis_1-v.out +++ /dev/null @@ -1,270 +0,0 @@ -IS-IS, length 83 - L1 CSNP, hlen: 33, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 3333.3333.3333.00, PDU length: 83 - start lsp-id: 0000.0000.0000.00-00 - end lsp-id: ffff.ffff.ffff.ff-ff - LSP entries TLV #9, length: 48 - lsp-id: 2222.2222.2222.00-00, seq: 0x0000000e, lifetime: 1184s, chksum: 0x5910 - lsp-id: 3333.3333.3333.00-00, seq: 0x00000010, lifetime: 1147s, chksum: 0x1749 - lsp-id: 3333.3333.3333.02-00, seq: 0x00000004, lifetime: 634s, chksum: 0x7f9f -IS-IS, length 1497 - L1 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 3333.3333.3333, holding time: 10s, Flags: [Level 1 only] - lan-id: 3333.3333.3333.02, Priority: 64, PDU length: 1497 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.000a - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.10.1 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - IS Neighbor(s) TLV #6, length: 6 - SNPA: c201.2998.0000 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 155 -IS-IS, length 1497 - L1 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 3333.3333.3333, holding time: 10s, Flags: [Level 1 only] - lan-id: 3333.3333.3333.02, Priority: 64, PDU length: 1497 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.000a - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.10.1 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - IS Neighbor(s) TLV #6, length: 6 - SNPA: c201.2998.0000 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 155 -IS-IS, length 1497 - L1 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 2222.2222.2222, holding time: 30s, Flags: [Level 1 only] - lan-id: 3333.3333.3333.02, Priority: 64, PDU length: 1497 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.000a - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.10.2 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - IS Neighbor(s) TLV #6, length: 6 - SNPA: c202.2998.0001 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 155 -IS-IS, length 1497 - L1 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 3333.3333.3333, holding time: 10s, Flags: [Level 1 only] - lan-id: 3333.3333.3333.02, Priority: 64, PDU length: 1497 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.000a - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.10.1 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - IS Neighbor(s) TLV #6, length: 6 - SNPA: c201.2998.0000 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 155 -IS-IS, length 83 - L1 CSNP, hlen: 33, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 3333.3333.3333.00, PDU length: 83 - start lsp-id: 0000.0000.0000.00-00 - end lsp-id: ffff.ffff.ffff.ff-ff - LSP entries TLV #9, length: 48 - lsp-id: 2222.2222.2222.00-00, seq: 0x0000000e, lifetime: 1174s, chksum: 0x5910 - lsp-id: 3333.3333.3333.00-00, seq: 0x00000010, lifetime: 1137s, chksum: 0x1749 - lsp-id: 3333.3333.3333.02-00, seq: 0x00000004, lifetime: 624s, chksum: 0x7f9f -IS-IS, length 1497 - L1 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 3333.3333.3333, holding time: 10s, Flags: [Level 1 only] - lan-id: 3333.3333.3333.02, Priority: 64, PDU length: 1497 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.000a - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.10.1 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - IS Neighbor(s) TLV #6, length: 6 - SNPA: c201.2998.0000 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 155 -IS-IS, length 1497 - L1 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 3333.3333.3333, holding time: 10s, Flags: [Level 1 only] - lan-id: 3333.3333.3333.02, Priority: 64, PDU length: 1497 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.000a - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.10.1 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - IS Neighbor(s) TLV #6, length: 6 - SNPA: c201.2998.0000 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 155 -IS-IS, length 136 - L1 LSP, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - lsp-id: 2222.2222.2222.00-00, seq: 0x0000000f, lifetime: 1199s - chksum: 0xb503 (correct), PDU length: 136, Flags: [ L1 IS ] - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.000a - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Hostname TLV #137, length: 2 - Hostname: R2 - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 192.168.10.1 - IPv4 Internal Reachability TLV #128, length: 24 - IPv4 prefix: 10.0.10.0/30, Distribution: up, Metric: 10, Internal - IPv4 prefix: 192.168.10.0/24, Distribution: up, Metric: 10, Internal - IS Reachability TLV #2, length: 12 - IsNotVirtual - IS Neighbor: 3333.3333.3333.02, Default Metric: 10, Internal - IPv4 External Reachability TLV #130, length: 48 - IPv4 prefix: 172.16.0.0/30, Distribution: up, Metric: 0, External - IPv4 prefix: 172.16.1.0/24, Distribution: up, Metric: 0, External - IPv4 prefix: 172.16.2.0/24, Distribution: up, Metric: 0, External - IPv4 prefix: 172.16.3.0/24, Distribution: up, Metric: 0, External -IS-IS, length 1497 - L1 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 2222.2222.2222, holding time: 30s, Flags: [Level 1 only] - lan-id: 3333.3333.3333.02, Priority: 64, PDU length: 1497 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.000a - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.10.2 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - IS Neighbor(s) TLV #6, length: 6 - SNPA: c202.2998.0001 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 155 -IS-IS, length 1497 - L1 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 3333.3333.3333, holding time: 10s, Flags: [Level 1 only] - lan-id: 3333.3333.3333.02, Priority: 64, PDU length: 1497 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.000a - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.10.1 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - IS Neighbor(s) TLV #6, length: 6 - SNPA: c201.2998.0000 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 155 -IS-IS, length 83 - L1 CSNP, hlen: 33, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 3333.3333.3333.00, PDU length: 83 - start lsp-id: 0000.0000.0000.00-00 - end lsp-id: ffff.ffff.ffff.ff-ff - LSP entries TLV #9, length: 48 - lsp-id: 2222.2222.2222.00-00, seq: 0x0000000f, lifetime: 1194s, chksum: 0xb503 - lsp-id: 3333.3333.3333.00-00, seq: 0x00000010, lifetime: 1130s, chksum: 0x1749 - lsp-id: 3333.3333.3333.02-00, seq: 0x00000004, lifetime: 616s, chksum: 0x7f9f -IS-IS, length 1497 - L1 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 3333.3333.3333, holding time: 10s, Flags: [Level 1 only] - lan-id: 3333.3333.3333.02, Priority: 64, PDU length: 1497 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.000a - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.10.1 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - IS Neighbor(s) TLV #6, length: 6 - SNPA: c201.2998.0000 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 155 -IS-IS, length 1497 - L1 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 3333.3333.3333, holding time: 10s, Flags: [Level 1 only] - lan-id: 3333.3333.3333.02, Priority: 64, PDU length: 1497 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.000a - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.10.1 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - IS Neighbor(s) TLV #6, length: 6 - SNPA: c201.2998.0000 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 155 -IS-IS, length 1497 - L1 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 2222.2222.2222, holding time: 30s, Flags: [Level 1 only] - lan-id: 3333.3333.3333.02, Priority: 64, PDU length: 1497 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.000a - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.10.2 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - IS Neighbor(s) TLV #6, length: 6 - SNPA: c202.2998.0001 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 155 diff --git a/tests/isis_1.out b/tests/isis_1.out deleted file mode 100644 index 32edae9..0000000 --- a/tests/isis_1.out +++ /dev/null @@ -1,15 +0,0 @@ -IS-IS, L1 CSNP, src-id 3333.3333.3333.00, length 83 -IS-IS, L1 Lan IIH, src-id 3333.3333.3333, lan-id 3333.3333.3333.02, prio 64, length 1497 -IS-IS, L1 Lan IIH, src-id 3333.3333.3333, lan-id 3333.3333.3333.02, prio 64, length 1497 -IS-IS, L1 Lan IIH, src-id 2222.2222.2222, lan-id 3333.3333.3333.02, prio 64, length 1497 -IS-IS, L1 Lan IIH, src-id 3333.3333.3333, lan-id 3333.3333.3333.02, prio 64, length 1497 -IS-IS, L1 CSNP, src-id 3333.3333.3333.00, length 83 -IS-IS, L1 Lan IIH, src-id 3333.3333.3333, lan-id 3333.3333.3333.02, prio 64, length 1497 -IS-IS, L1 Lan IIH, src-id 3333.3333.3333, lan-id 3333.3333.3333.02, prio 64, length 1497 -IS-IS, L1 LSP, lsp-id 2222.2222.2222.00-00, seq 0x0000000f, lifetime 1199s, length 136 -IS-IS, L1 Lan IIH, src-id 2222.2222.2222, lan-id 3333.3333.3333.02, prio 64, length 1497 -IS-IS, L1 Lan IIH, src-id 3333.3333.3333, lan-id 3333.3333.3333.02, prio 64, length 1497 -IS-IS, L1 CSNP, src-id 3333.3333.3333.00, length 83 -IS-IS, L1 Lan IIH, src-id 3333.3333.3333, lan-id 3333.3333.3333.02, prio 64, length 1497 -IS-IS, L1 Lan IIH, src-id 3333.3333.3333, lan-id 3333.3333.3333.02, prio 64, length 1497 -IS-IS, L1 Lan IIH, src-id 2222.2222.2222, lan-id 3333.3333.3333.02, prio 64, length 1497 diff --git a/tests/isis_2-v.out b/tests/isis_2-v.out deleted file mode 100644 index 8c05206..0000000 --- a/tests/isis_2-v.out +++ /dev/null @@ -1,403 +0,0 @@ -IS-IS, length 1497 - L1 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 2222.2222.2222, holding time: 30s, Flags: [Level 1 only] - lan-id: 2222.2222.2222.01, Priority: 64, PDU length: 1497 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.000a - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.10.2 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 163 -IS-IS, length 1497 - L1 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 2222.2222.2222, holding time: 30s, Flags: [Level 1 only] - lan-id: 2222.2222.2222.01, Priority: 64, PDU length: 1497 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.000a - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.10.2 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 163 -IS-IS, length 1497 - L1 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 2222.2222.2222, holding time: 30s, Flags: [Level 1 only] - lan-id: 2222.2222.2222.01, Priority: 64, PDU length: 1497 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.000a - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.10.2 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 163 -IS-IS, length 1497 - L1 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 2222.2222.2222, holding time: 30s, Flags: [Level 1 only] - lan-id: 2222.2222.2222.01, Priority: 64, PDU length: 1497 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.000a - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.10.2 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 163 -IS-IS, length 1497 - L1 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 3333.3333.3333, holding time: 30s, Flags: [Level 1 only] - lan-id: 3333.3333.3333.02, Priority: 64, PDU length: 1497 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.000a - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.10.1 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 163 -IS-IS, length 1497 - L1 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 2222.2222.2222, holding time: 30s, Flags: [Level 1 only] - lan-id: 2222.2222.2222.01, Priority: 64, PDU length: 1497 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.000a - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.10.2 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - IS Neighbor(s) TLV #6, length: 6 - SNPA: c202.2998.0001 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 155 -IS-IS, length 1497 - L1 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 3333.3333.3333, holding time: 30s, Flags: [Level 1 only] - lan-id: 3333.3333.3333.02, Priority: 64, PDU length: 1497 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.000a - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.10.1 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - IS Neighbor(s) TLV #6, length: 6 - SNPA: c201.2998.0000 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 155 -IS-IS, length 1497 - L1 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 2222.2222.2222, holding time: 30s, Flags: [Level 1 only] - lan-id: 3333.3333.3333.02, Priority: 64, PDU length: 1497 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.000a - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.10.2 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - IS Neighbor(s) TLV #6, length: 6 - SNPA: c202.2998.0001 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 155 -IS-IS, length 86 - L1 LSP, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - lsp-id: 2222.2222.2222.00-00, seq: 0x00000009, lifetime: 1199s - chksum: 0x630b (correct), PDU length: 86, Flags: [ L1 IS ] - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.000a - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Hostname TLV #137, length: 2 - Hostname: R2 - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 192.168.10.1 - IPv4 Internal Reachability TLV #128, length: 24 - IPv4 prefix: 10.0.10.0/30, Distribution: up, Metric: 10, Internal - IPv4 prefix: 192.168.10.0/24, Distribution: up, Metric: 10, Internal - IS Reachability TLV #2, length: 12 - IsNotVirtual - IS Neighbor: 3333.3333.3333.02, Default Metric: 10, Internal -IS-IS, length 74 - L1 LSP, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - lsp-id: 3333.3333.3333.00-00, seq: 0x0000000e, lifetime: 1199s - chksum: 0x1b47 (correct), PDU length: 74, Flags: [ default ATT bit set, L2 IS ] - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.000a - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Hostname TLV #137, length: 2 - Hostname: R3 - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.10.1 - IPv4 Internal Reachability TLV #128, length: 12 - IPv4 prefix: 10.0.10.0/30, Distribution: up, Metric: 10, Internal - IS Reachability TLV #2, length: 12 - IsNotVirtual - IS Neighbor: 3333.3333.3333.02, Default Metric: 10, Internal -IS-IS, length 1497 - L1 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 3333.3333.3333, holding time: 10s, Flags: [Level 1 only] - lan-id: 3333.3333.3333.02, Priority: 64, PDU length: 1497 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.000a - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.10.1 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - IS Neighbor(s) TLV #6, length: 6 - SNPA: c201.2998.0000 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 155 -IS-IS, length 1497 - L1 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 3333.3333.3333, holding time: 10s, Flags: [Level 1 only] - lan-id: 3333.3333.3333.02, Priority: 64, PDU length: 1497 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.000a - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.10.1 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - IS Neighbor(s) TLV #6, length: 6 - SNPA: c201.2998.0000 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 155 -IS-IS, length 83 - L1 CSNP, hlen: 33, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 3333.3333.3333.00, PDU length: 83 - start lsp-id: 0000.0000.0000.00-00 - end lsp-id: ffff.ffff.ffff.ff-ff - LSP entries TLV #9, length: 48 - lsp-id: 2222.2222.2222.00-00, seq: 0x00000009, lifetime: 1192s, chksum: 0x630b - lsp-id: 3333.3333.3333.00-00, seq: 0x0000000e, lifetime: 1194s, chksum: 0x1b47 - lsp-id: 3333.3333.3333.02-00, seq: 0x00000004, lifetime: 1039s, chksum: 0x7f9f -IS-IS, length 1497 - L1 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 3333.3333.3333, holding time: 10s, Flags: [Level 1 only] - lan-id: 3333.3333.3333.02, Priority: 64, PDU length: 1497 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.000a - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.10.1 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - IS Neighbor(s) TLV #6, length: 6 - SNPA: c201.2998.0000 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 155 -IS-IS, length 1497 - L1 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 2222.2222.2222, holding time: 30s, Flags: [Level 1 only] - lan-id: 3333.3333.3333.02, Priority: 64, PDU length: 1497 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.000a - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.10.2 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - IS Neighbor(s) TLV #6, length: 6 - SNPA: c202.2998.0001 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 155 -IS-IS, length 1497 - L1 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 3333.3333.3333, holding time: 10s, Flags: [Level 1 only] - lan-id: 3333.3333.3333.02, Priority: 64, PDU length: 1497 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.000a - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.10.1 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - IS Neighbor(s) TLV #6, length: 6 - SNPA: c201.2998.0000 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 155 -IS-IS, length 1497 - L1 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 3333.3333.3333, holding time: 10s, Flags: [Level 1 only] - lan-id: 3333.3333.3333.02, Priority: 64, PDU length: 1497 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.000a - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.10.1 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - IS Neighbor(s) TLV #6, length: 6 - SNPA: c201.2998.0000 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 155 -IS-IS, length 83 - L1 CSNP, hlen: 33, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 3333.3333.3333.00, PDU length: 83 - start lsp-id: 0000.0000.0000.00-00 - end lsp-id: ffff.ffff.ffff.ff-ff - LSP entries TLV #9, length: 48 - lsp-id: 2222.2222.2222.00-00, seq: 0x00000009, lifetime: 1184s, chksum: 0x630b - lsp-id: 3333.3333.3333.00-00, seq: 0x0000000e, lifetime: 1186s, chksum: 0x1b47 - lsp-id: 3333.3333.3333.02-00, seq: 0x00000004, lifetime: 1032s, chksum: 0x7f9f -IS-IS, length 1497 - L1 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 3333.3333.3333, holding time: 10s, Flags: [Level 1 only] - lan-id: 3333.3333.3333.02, Priority: 64, PDU length: 1497 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.000a - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.10.1 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - IS Neighbor(s) TLV #6, length: 6 - SNPA: c201.2998.0000 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 155 -IS-IS, length 1497 - L1 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 2222.2222.2222, holding time: 30s, Flags: [Level 1 only] - lan-id: 3333.3333.3333.02, Priority: 64, PDU length: 1497 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.000a - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.10.2 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - IS Neighbor(s) TLV #6, length: 6 - SNPA: c202.2998.0001 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 155 -IS-IS, length 1497 - L1 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 3333.3333.3333, holding time: 10s, Flags: [Level 1 only] - lan-id: 3333.3333.3333.02, Priority: 64, PDU length: 1497 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.000a - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.10.1 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - IS Neighbor(s) TLV #6, length: 6 - SNPA: c201.2998.0000 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 155 -IS-IS, length 1497 - L1 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 3333.3333.3333, holding time: 10s, Flags: [Level 1 only] - lan-id: 3333.3333.3333.02, Priority: 64, PDU length: 1497 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.000a - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.10.1 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - IS Neighbor(s) TLV #6, length: 6 - SNPA: c201.2998.0000 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 155 diff --git a/tests/isis_3-v.out b/tests/isis_3-v.out deleted file mode 100644 index 4894864..0000000 --- a/tests/isis_3-v.out +++ /dev/null @@ -1,774 +0,0 @@ -IS-IS, length 1497 - L2 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 4444.4444.4444, holding time: 30s, Flags: [Level 2 only] - lan-id: 4444.4444.4444.01, Priority: 64, PDU length: 1497 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.0014 - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.0.2 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 163 -IS-IS, length 1497 - L2 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 4444.4444.4444, holding time: 30s, Flags: [Level 2 only] - lan-id: 4444.4444.4444.01, Priority: 64, PDU length: 1497 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.0014 - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.0.2 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 163 -IS-IS, length 1497 - L2 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 4444.4444.4444, holding time: 30s, Flags: [Level 2 only] - lan-id: 4444.4444.4444.01, Priority: 64, PDU length: 1497 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.0014 - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.0.2 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 163 -IS-IS, length 1497 - L2 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 3333.3333.3333, holding time: 30s, Flags: [Level 2 only] - lan-id: 3333.3333.3333.01, Priority: 64, PDU length: 1497 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.000a - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.0.1 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 163 -IS-IS, length 1497 - L2 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 4444.4444.4444, holding time: 30s, Flags: [Level 2 only] - lan-id: 4444.4444.4444.01, Priority: 64, PDU length: 1497 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.0014 - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.0.2 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - IS Neighbor(s) TLV #6, length: 6 - SNPA: c202.2998.0000 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 155 -IS-IS, length 1497 - L2 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 3333.3333.3333, holding time: 30s, Flags: [Level 2 only] - lan-id: 3333.3333.3333.01, Priority: 64, PDU length: 1497 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.000a - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.0.1 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - IS Neighbor(s) TLV #6, length: 6 - SNPA: c203.29a9.0000 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 155 -IS-IS, length 1497 - L2 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 4444.4444.4444, holding time: 10s, Flags: [Level 2 only] - lan-id: 4444.4444.4444.01, Priority: 64, PDU length: 1497 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.0014 - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.0.2 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - IS Neighbor(s) TLV #6, length: 6 - SNPA: c202.2998.0000 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 155 -IS-IS, length 100 - L2 LSP, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - lsp-id: 4444.4444.4444.00-00, seq: 0x0000000a, lifetime: 1199s - chksum: 0xf252 (correct), PDU length: 100, Flags: [ L2 IS ] - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.0014 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Hostname TLV #137, length: 2 - Hostname: R4 - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.20.1 - IPv4 Internal Reachability TLV #128, length: 12 - IPv4 prefix: 10.0.0.0/30, Distribution: up, Metric: 10, Internal - IS Reachability TLV #2, length: 12 - IsNotVirtual - IS Neighbor: 4444.4444.4444.01, Default Metric: 10, Internal - IPv4 Internal Reachability TLV #128, length: 24 - IPv4 prefix: 10.0.20.0/30, Distribution: up, Metric: 10, Internal - IPv4 prefix: 192.168.20.0/24, Distribution: up, Metric: 20, Internal -IS-IS, length 52 - L2 LSP, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - lsp-id: 4444.4444.4444.01-00, seq: 0x00000003, lifetime: 1199s - chksum: 0x7ef7 (correct), PDU length: 52, Flags: [ L2 IS ] - IS Reachability TLV #2, length: 23 - IsNotVirtual - IS Neighbor: 4444.4444.4444.00, Default Metric: 0, Internal - IS Neighbor: 3333.3333.3333.00, Default Metric: 0, Internal -IS-IS, length 100 - L2 LSP, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - lsp-id: 3333.3333.3333.00-00, seq: 0x00000009, lifetime: 1199s - chksum: 0x24b1 (correct), PDU length: 100, Flags: [ L2 IS ] - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.000a - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Hostname TLV #137, length: 2 - Hostname: R3 - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.10.1 - IPv4 Internal Reachability TLV #128, length: 12 - IPv4 prefix: 10.0.0.0/30, Distribution: up, Metric: 10, Internal - IS Reachability TLV #2, length: 12 - IsNotVirtual - IS Neighbor: 4444.4444.4444.01, Default Metric: 10, Internal - IPv4 Internal Reachability TLV #128, length: 24 - IPv4 prefix: 10.0.10.0/30, Distribution: up, Metric: 10, Internal - IPv4 prefix: 192.168.10.0/24, Distribution: up, Metric: 20, Internal -IS-IS, length 1497 - L2 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 3333.3333.3333, holding time: 30s, Flags: [Level 2 only] - lan-id: 4444.4444.4444.01, Priority: 64, PDU length: 1497 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.000a - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.0.1 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - IS Neighbor(s) TLV #6, length: 6 - SNPA: c203.29a9.0000 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 155 -IS-IS, length 1497 - L2 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 4444.4444.4444, holding time: 10s, Flags: [Level 2 only] - lan-id: 4444.4444.4444.01, Priority: 64, PDU length: 1497 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.0014 - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.0.2 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - IS Neighbor(s) TLV #6, length: 6 - SNPA: c202.2998.0000 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 155 -IS-IS, length 83 - L2 CSNP, hlen: 33, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 4444.4444.4444.00, PDU length: 83 - start lsp-id: 0000.0000.0000.00-00 - end lsp-id: ffff.ffff.ffff.ff-ff - LSP entries TLV #9, length: 48 - lsp-id: 3333.3333.3333.00-00, seq: 0x00000009, lifetime: 1192s, chksum: 0x24b1 - lsp-id: 4444.4444.4444.00-00, seq: 0x0000000a, lifetime: 1194s, chksum: 0xf252 - lsp-id: 4444.4444.4444.01-00, seq: 0x00000003, lifetime: 1194s, chksum: 0x7ef7 -IS-IS, length 1497 - L2 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 4444.4444.4444, holding time: 10s, Flags: [Level 2 only] - lan-id: 4444.4444.4444.01, Priority: 64, PDU length: 1497 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.0014 - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.0.2 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - IS Neighbor(s) TLV #6, length: 6 - SNPA: c202.2998.0000 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 155 -IS-IS, length 1497 - L2 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 4444.4444.4444, holding time: 10s, Flags: [Level 2 only] - lan-id: 4444.4444.4444.01, Priority: 64, PDU length: 1497 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.0014 - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.0.2 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - IS Neighbor(s) TLV #6, length: 6 - SNPA: c202.2998.0000 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 155 -IS-IS, length 1497 - L2 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 3333.3333.3333, holding time: 30s, Flags: [Level 2 only] - lan-id: 4444.4444.4444.01, Priority: 64, PDU length: 1497 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.000a - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.0.1 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - IS Neighbor(s) TLV #6, length: 6 - SNPA: c203.29a9.0000 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 155 -IS-IS, length 1497 - L2 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 4444.4444.4444, holding time: 10s, Flags: [Level 2 only] - lan-id: 4444.4444.4444.01, Priority: 64, PDU length: 1497 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.0014 - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.0.2 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - IS Neighbor(s) TLV #6, length: 6 - SNPA: c202.2998.0000 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 155 -IS-IS, length 1497 - L2 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 4444.4444.4444, holding time: 10s, Flags: [Level 2 only] - lan-id: 4444.4444.4444.01, Priority: 64, PDU length: 1497 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.0014 - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.0.2 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - IS Neighbor(s) TLV #6, length: 6 - SNPA: c202.2998.0000 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 155 -IS-IS, length 83 - L2 CSNP, hlen: 33, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 4444.4444.4444.00, PDU length: 83 - start lsp-id: 0000.0000.0000.00-00 - end lsp-id: ffff.ffff.ffff.ff-ff - LSP entries TLV #9, length: 48 - lsp-id: 3333.3333.3333.00-00, seq: 0x00000009, lifetime: 1183s, chksum: 0x24b1 - lsp-id: 4444.4444.4444.00-00, seq: 0x0000000a, lifetime: 1185s, chksum: 0xf252 - lsp-id: 4444.4444.4444.01-00, seq: 0x00000003, lifetime: 1185s, chksum: 0x7ef7 -IS-IS, length 1497 - L2 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 4444.4444.4444, holding time: 10s, Flags: [Level 2 only] - lan-id: 4444.4444.4444.01, Priority: 64, PDU length: 1497 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.0014 - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.0.2 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - IS Neighbor(s) TLV #6, length: 6 - SNPA: c202.2998.0000 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 155 -IS-IS, length 1497 - L2 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 3333.3333.3333, holding time: 30s, Flags: [Level 2 only] - lan-id: 4444.4444.4444.01, Priority: 64, PDU length: 1497 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.000a - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.0.1 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - IS Neighbor(s) TLV #6, length: 6 - SNPA: c203.29a9.0000 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 155 -IS-IS, length 1497 - L2 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 4444.4444.4444, holding time: 10s, Flags: [Level 2 only] - lan-id: 4444.4444.4444.01, Priority: 64, PDU length: 1497 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.0014 - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.0.2 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - IS Neighbor(s) TLV #6, length: 6 - SNPA: c202.2998.0000 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 155 -IS-IS, length 1497 - L2 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 4444.4444.4444, holding time: 10s, Flags: [Level 2 only] - lan-id: 4444.4444.4444.01, Priority: 64, PDU length: 1497 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.0014 - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.0.2 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - IS Neighbor(s) TLV #6, length: 6 - SNPA: c202.2998.0000 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 155 -IS-IS, length 83 - L2 CSNP, hlen: 33, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 4444.4444.4444.00, PDU length: 83 - start lsp-id: 0000.0000.0000.00-00 - end lsp-id: ffff.ffff.ffff.ff-ff - LSP entries TLV #9, length: 48 - lsp-id: 3333.3333.3333.00-00, seq: 0x00000009, lifetime: 1174s, chksum: 0x24b1 - lsp-id: 4444.4444.4444.00-00, seq: 0x0000000a, lifetime: 1176s, chksum: 0xf252 - lsp-id: 4444.4444.4444.01-00, seq: 0x00000003, lifetime: 1176s, chksum: 0x7ef7 -IS-IS, length 1497 - L2 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 4444.4444.4444, holding time: 10s, Flags: [Level 2 only] - lan-id: 4444.4444.4444.01, Priority: 64, PDU length: 1497 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.0014 - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.0.2 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - IS Neighbor(s) TLV #6, length: 6 - SNPA: c202.2998.0000 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 155 -IS-IS, length 1497 - L2 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 3333.3333.3333, holding time: 30s, Flags: [Level 2 only] - lan-id: 4444.4444.4444.01, Priority: 64, PDU length: 1497 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.000a - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.0.1 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - IS Neighbor(s) TLV #6, length: 6 - SNPA: c203.29a9.0000 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 155 -IS-IS, length 1497 - L2 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 4444.4444.4444, holding time: 10s, Flags: [Level 2 only] - lan-id: 4444.4444.4444.01, Priority: 64, PDU length: 1497 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.0014 - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.0.2 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - IS Neighbor(s) TLV #6, length: 6 - SNPA: c202.2998.0000 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 155 -IS-IS, length 83 - L2 CSNP, hlen: 33, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 4444.4444.4444.00, PDU length: 83 - start lsp-id: 0000.0000.0000.00-00 - end lsp-id: ffff.ffff.ffff.ff-ff - LSP entries TLV #9, length: 48 - lsp-id: 3333.3333.3333.00-00, seq: 0x00000009, lifetime: 1166s, chksum: 0x24b1 - lsp-id: 4444.4444.4444.00-00, seq: 0x0000000a, lifetime: 1168s, chksum: 0xf252 - lsp-id: 4444.4444.4444.01-00, seq: 0x00000003, lifetime: 1168s, chksum: 0x7ef7 -IS-IS, length 1497 - L2 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 4444.4444.4444, holding time: 10s, Flags: [Level 2 only] - lan-id: 4444.4444.4444.01, Priority: 64, PDU length: 1497 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.0014 - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.0.2 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - IS Neighbor(s) TLV #6, length: 6 - SNPA: c202.2998.0000 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 155 -IS-IS, length 1497 - L2 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 4444.4444.4444, holding time: 10s, Flags: [Level 2 only] - lan-id: 4444.4444.4444.01, Priority: 64, PDU length: 1497 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.0014 - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.0.2 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - IS Neighbor(s) TLV #6, length: 6 - SNPA: c202.2998.0000 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 155 -IS-IS, length 1497 - L2 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 4444.4444.4444, holding time: 10s, Flags: [Level 2 only] - lan-id: 4444.4444.4444.01, Priority: 64, PDU length: 1497 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.0014 - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.0.2 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - IS Neighbor(s) TLV #6, length: 6 - SNPA: c202.2998.0000 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 155 -IS-IS, length 1497 - L2 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 3333.3333.3333, holding time: 30s, Flags: [Level 2 only] - lan-id: 4444.4444.4444.01, Priority: 64, PDU length: 1497 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.000a - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.0.1 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - IS Neighbor(s) TLV #6, length: 6 - SNPA: c203.29a9.0000 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 155 -IS-IS, length 1497 - L2 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 4444.4444.4444, holding time: 10s, Flags: [Level 2 only] - lan-id: 4444.4444.4444.01, Priority: 64, PDU length: 1497 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.0014 - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.0.2 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - IS Neighbor(s) TLV #6, length: 6 - SNPA: c202.2998.0000 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 155 -IS-IS, length 83 - L2 CSNP, hlen: 33, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 4444.4444.4444.00, PDU length: 83 - start lsp-id: 0000.0000.0000.00-00 - end lsp-id: ffff.ffff.ffff.ff-ff - LSP entries TLV #9, length: 48 - lsp-id: 3333.3333.3333.00-00, seq: 0x00000009, lifetime: 1157s, chksum: 0x24b1 - lsp-id: 4444.4444.4444.00-00, seq: 0x0000000a, lifetime: 1159s, chksum: 0xf252 - lsp-id: 4444.4444.4444.01-00, seq: 0x00000003, lifetime: 1159s, chksum: 0x7ef7 -IS-IS, length 1497 - L2 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 4444.4444.4444, holding time: 10s, Flags: [Level 2 only] - lan-id: 4444.4444.4444.01, Priority: 64, PDU length: 1497 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.0014 - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.0.2 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - IS Neighbor(s) TLV #6, length: 6 - SNPA: c202.2998.0000 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 155 -IS-IS, length 1497 - L2 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 4444.4444.4444, holding time: 10s, Flags: [Level 2 only] - lan-id: 4444.4444.4444.01, Priority: 64, PDU length: 1497 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.0014 - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.0.2 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - IS Neighbor(s) TLV #6, length: 6 - SNPA: c202.2998.0000 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 155 -IS-IS, length 1497 - L2 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 3333.3333.3333, holding time: 30s, Flags: [Level 2 only] - lan-id: 4444.4444.4444.01, Priority: 64, PDU length: 1497 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.000a - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.0.1 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - IS Neighbor(s) TLV #6, length: 6 - SNPA: c203.29a9.0000 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 155 -IS-IS, length 1497 - L2 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 4444.4444.4444, holding time: 10s, Flags: [Level 2 only] - lan-id: 4444.4444.4444.01, Priority: 64, PDU length: 1497 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.0014 - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.0.2 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - IS Neighbor(s) TLV #6, length: 6 - SNPA: c202.2998.0000 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 155 -IS-IS, length 83 - L2 CSNP, hlen: 33, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 4444.4444.4444.00, PDU length: 83 - start lsp-id: 0000.0000.0000.00-00 - end lsp-id: ffff.ffff.ffff.ff-ff - LSP entries TLV #9, length: 48 - lsp-id: 3333.3333.3333.00-00, seq: 0x00000009, lifetime: 1147s, chksum: 0x24b1 - lsp-id: 4444.4444.4444.00-00, seq: 0x0000000a, lifetime: 1149s, chksum: 0xf252 - lsp-id: 4444.4444.4444.01-00, seq: 0x00000003, lifetime: 1149s, chksum: 0x7ef7 -IS-IS, length 1497 - L2 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 4444.4444.4444, holding time: 10s, Flags: [Level 2 only] - lan-id: 4444.4444.4444.01, Priority: 64, PDU length: 1497 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.0014 - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.0.2 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - IS Neighbor(s) TLV #6, length: 6 - SNPA: c202.2998.0000 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 155 -IS-IS, length 1497 - L2 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 4444.4444.4444, holding time: 10s, Flags: [Level 2 only] - lan-id: 4444.4444.4444.01, Priority: 64, PDU length: 1497 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.0014 - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.0.2 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - IS Neighbor(s) TLV #6, length: 6 - SNPA: c202.2998.0000 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 155 -IS-IS, length 1497 - L2 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 3333.3333.3333, holding time: 30s, Flags: [Level 2 only] - lan-id: 4444.4444.4444.01, Priority: 64, PDU length: 1497 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.000a - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.0.1 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - IS Neighbor(s) TLV #6, length: 6 - SNPA: c203.29a9.0000 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 155 -IS-IS, length 1497 - L2 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 4444.4444.4444, holding time: 10s, Flags: [Level 2 only] - lan-id: 4444.4444.4444.01, Priority: 64, PDU length: 1497 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.0014 - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.0.2 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - IS Neighbor(s) TLV #6, length: 6 - SNPA: c202.2998.0000 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 155 diff --git a/tests/isis_4-v.out b/tests/isis_4-v.out deleted file mode 100644 index b4875f3..0000000 --- a/tests/isis_4-v.out +++ /dev/null @@ -1,400 +0,0 @@ -IS-IS, length 1499 - p2p IIH, hlen: 20, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 1111.1111.1111, holding time: 30s, Flags: [Level 1, Level 2] - circuit-id: 0x00, PDU length: 1499 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - Point-to-point Adjacency State TLV #240, length: 1 - Adjacency State: Down (2) - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.0001 - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.0.1 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 169 -IS-IS, length 1499 - p2p IIH, hlen: 20, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 1111.1111.1111, holding time: 30s, Flags: [Level 1, Level 2] - circuit-id: 0x00, PDU length: 1499 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - Point-to-point Adjacency State TLV #240, length: 1 - Adjacency State: Down (2) - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.0001 - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.0.1 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 169 -IS-IS, length 1499 - p2p IIH, hlen: 20, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 2222.2222.2222, holding time: 30s, Flags: [Level 1, Level 2] - circuit-id: 0x00, PDU length: 1499 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - Point-to-point Adjacency State TLV #240, length: 1 - Adjacency State: Down (2) - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.0001 - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.0.2 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 169 -IS-IS, length 1499 - p2p IIH, hlen: 20, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 2222.2222.2222, holding time: 30s, Flags: [Level 1, Level 2] - circuit-id: 0x00, PDU length: 1499 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - Point-to-point Adjacency State TLV #240, length: 1 - Adjacency State: Down (2) - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.0001 - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.0.2 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 169 -IS-IS, length 1499 - p2p IIH, hlen: 20, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 1111.1111.1111, holding time: 30s, Flags: [Level 1, Level 2] - circuit-id: 0x00, PDU length: 1499 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - Point-to-point Adjacency State TLV #240, length: 1 - Adjacency State: Initializing (1) - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.0001 - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.0.1 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 169 -IS-IS, length 1499 - p2p IIH, hlen: 20, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 2222.2222.2222, holding time: 30s, Flags: [Level 1, Level 2] - circuit-id: 0x00, PDU length: 1499 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - Point-to-point Adjacency State TLV #240, length: 1 - Adjacency State: Initializing (1) - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.0001 - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.0.2 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 169 -IS-IS, length 1499 - p2p IIH, hlen: 20, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 1111.1111.1111, holding time: 30s, Flags: [Level 1, Level 2] - circuit-id: 0x00, PDU length: 1499 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - Point-to-point Adjacency State TLV #240, length: 1 - Adjacency State: Up (0) - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.0001 - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.0.1 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 169 -IS-IS, length 1499 - p2p IIH, hlen: 20, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 2222.2222.2222, holding time: 30s, Flags: [Level 1, Level 2] - circuit-id: 0x00, PDU length: 1499 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - Point-to-point Adjacency State TLV #240, length: 1 - Adjacency State: Up (0) - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.0001 - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.0.2 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 169 -IS-IS, length 74 - L1 LSP, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - lsp-id: 1111.1111.1111.00-00, seq: 0x00000007, lifetime: 1200s - chksum: 0x1da8 (correct), PDU length: 74, Flags: [ L2 IS ] - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.0001 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Hostname TLV #137, length: 2 - Hostname: R1 - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.0.1 - IPv4 Internal Reachability TLV #128, length: 12 - IPv4 prefix: 10.0.0.0/30, Distribution: up, Metric: 10, Internal - IS Reachability TLV #2, length: 12 - IsNotVirtual - IS Neighbor: 2222.2222.2222.00, Default Metric: 10, Internal -IS-IS, length 74 - L2 LSP, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - lsp-id: 1111.1111.1111.00-00, seq: 0x00000007, lifetime: 1200s - chksum: 0x378e (correct), PDU length: 74, Flags: [ L2 IS ] - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.0001 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Hostname TLV #137, length: 2 - Hostname: R1 - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.0.1 - IS Reachability TLV #2, length: 12 - IsNotVirtual - IS Neighbor: 2222.2222.2222.00, Default Metric: 10, Internal - IPv4 Internal Reachability TLV #128, length: 12 - IPv4 prefix: 10.0.0.0/30, Distribution: up, Metric: 10, Internal -IS-IS, length 74 - L1 LSP, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - lsp-id: 2222.2222.2222.00-00, seq: 0x00000005, lifetime: 1200s - chksum: 0x4382 (correct), PDU length: 74, Flags: [ L2 IS ] - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.0001 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Hostname TLV #137, length: 2 - Hostname: R2 - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.0.2 - IPv4 Internal Reachability TLV #128, length: 12 - IPv4 prefix: 10.0.0.0/30, Distribution: up, Metric: 10, Internal - IS Reachability TLV #2, length: 12 - IsNotVirtual - IS Neighbor: 1111.1111.1111.00, Default Metric: 10, Internal -IS-IS, length 74 - L2 LSP, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - lsp-id: 2222.2222.2222.00-00, seq: 0x00000006, lifetime: 1200s - chksum: 0xf4cf (correct), PDU length: 74, Flags: [ L2 IS ] - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.0001 - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Hostname TLV #137, length: 2 - Hostname: R2 - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.0.2 - IS Reachability TLV #2, length: 12 - IsNotVirtual - IS Neighbor: 1111.1111.1111.00, Default Metric: 10, Internal - IPv4 Internal Reachability TLV #128, length: 12 - IPv4 prefix: 10.0.0.0/30, Distribution: up, Metric: 10, Internal -IS-IS, length 67 - L1 CSNP, hlen: 33, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 2222.2222.2222.00, PDU length: 67 - start lsp-id: 0000.0000.0000.00-00 - end lsp-id: ffff.ffff.ffff.ff-ff - LSP entries TLV #9, length: 32 - lsp-id: 1111.1111.1111.00-00, seq: 0x00000007, lifetime: 1198s, chksum: 0x1da8 - lsp-id: 2222.2222.2222.00-00, seq: 0x00000005, lifetime: 1199s, chksum: 0x4382 -IS-IS, length 67 - L1 CSNP, hlen: 33, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 1111.1111.1111.00, PDU length: 67 - start lsp-id: 0000.0000.0000.00-00 - end lsp-id: ffff.ffff.ffff.ff-ff - LSP entries TLV #9, length: 32 - lsp-id: 1111.1111.1111.00-00, seq: 0x00000007, lifetime: 1199s, chksum: 0x1da8 - lsp-id: 2222.2222.2222.00-00, seq: 0x00000005, lifetime: 1198s, chksum: 0x4382 -IS-IS, length 67 - L2 CSNP, hlen: 33, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 1111.1111.1111.00, PDU length: 67 - start lsp-id: 0000.0000.0000.00-00 - end lsp-id: ffff.ffff.ffff.ff-ff - LSP entries TLV #9, length: 32 - lsp-id: 1111.1111.1111.00-00, seq: 0x00000007, lifetime: 1199s, chksum: 0x378e - lsp-id: 2222.2222.2222.00-00, seq: 0x00000006, lifetime: 1198s, chksum: 0xf4cf -IS-IS, length 67 - L2 CSNP, hlen: 33, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 2222.2222.2222.00, PDU length: 67 - start lsp-id: 0000.0000.0000.00-00 - end lsp-id: ffff.ffff.ffff.ff-ff - LSP entries TLV #9, length: 32 - lsp-id: 1111.1111.1111.00-00, seq: 0x00000007, lifetime: 1198s, chksum: 0x378e - lsp-id: 2222.2222.2222.00-00, seq: 0x00000006, lifetime: 1199s, chksum: 0xf4cf -IS-IS, length 35 - L1 PSNP, hlen: 17, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 1111.1111.1111.00, PDU length: 35 - LSP entries TLV #9, length: 16 - lsp-id: 2222.2222.2222.00-00, seq: 0x00000005, lifetime: 1197s, chksum: 0x4382 -IS-IS, length 35 - L2 PSNP, hlen: 17, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 1111.1111.1111.00, PDU length: 35 - LSP entries TLV #9, length: 16 - lsp-id: 2222.2222.2222.00-00, seq: 0x00000006, lifetime: 1198s, chksum: 0xf4cf -IS-IS, length 35 - L1 PSNP, hlen: 17, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 2222.2222.2222.00, PDU length: 35 - LSP entries TLV #9, length: 16 - lsp-id: 1111.1111.1111.00-00, seq: 0x00000007, lifetime: 1197s, chksum: 0x1da8 -IS-IS, length 35 - L2 PSNP, hlen: 17, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 2222.2222.2222.00, PDU length: 35 - LSP entries TLV #9, length: 16 - lsp-id: 1111.1111.1111.00-00, seq: 0x00000007, lifetime: 1198s, chksum: 0x378e -IS-IS, length 1499 - p2p IIH, hlen: 20, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 2222.2222.2222, holding time: 30s, Flags: [Level 1, Level 2] - circuit-id: 0x00, PDU length: 1499 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - Point-to-point Adjacency State TLV #240, length: 1 - Adjacency State: Up (0) - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.0001 - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.0.2 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 169 -IS-IS, length 1499 - p2p IIH, hlen: 20, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 1111.1111.1111, holding time: 30s, Flags: [Level 1, Level 2] - circuit-id: 0x00, PDU length: 1499 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - Point-to-point Adjacency State TLV #240, length: 1 - Adjacency State: Up (0) - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.0001 - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.0.1 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 169 -IS-IS, length 1499 - p2p IIH, hlen: 20, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 2222.2222.2222, holding time: 30s, Flags: [Level 1, Level 2] - circuit-id: 0x00, PDU length: 1499 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - Point-to-point Adjacency State TLV #240, length: 1 - Adjacency State: Up (0) - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.0001 - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.0.2 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 169 -IS-IS, length 1499 - p2p IIH, hlen: 20, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 1111.1111.1111, holding time: 30s, Flags: [Level 1, Level 2] - circuit-id: 0x00, PDU length: 1499 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - Point-to-point Adjacency State TLV #240, length: 1 - Adjacency State: Up (0) - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.0001 - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.0.1 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 169 -IS-IS, length 1499 - p2p IIH, hlen: 20, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 2222.2222.2222, holding time: 30s, Flags: [Level 1, Level 2] - circuit-id: 0x00, PDU length: 1499 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - Point-to-point Adjacency State TLV #240, length: 1 - Adjacency State: Up (0) - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.0001 - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.0.2 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 169 -IS-IS, length 1499 - p2p IIH, hlen: 20, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - source-id: 1111.1111.1111, holding time: 30s, Flags: [Level 1, Level 2] - circuit-id: 0x00, PDU length: 1499 - Restart Signaling TLV #211, length: 3 - Flags [none], Remaining holding time 0s - Point-to-point Adjacency State TLV #240, length: 1 - Adjacency State: Up (0) - Protocols supported TLV #129, length: 1 - NLPID(s): IPv4 (0xcc) - Area address(es) TLV #1, length: 4 - Area address (length: 3): 49.0001 - IPv4 Interface address(es) TLV #132, length: 4 - IPv4 interface address: 10.0.0.1 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 255 - Padding TLV #8, length: 169 diff --git a/tests/isis_infloop-v.out b/tests/isis_infloop-v.out deleted file mode 100644 index 1bb8301..0000000 --- a/tests/isis_infloop-v.out +++ /dev/null @@ -1,40 +0,0 @@ -IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto GRE (47), length 54) - 253.120.2.55 > 192.168.1.1: GREv0, Flags [none], length 34 - IS-IS, length 30 - L1 LSP, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (6), max-area: 7 (7) - lsp-id: ffff.ffff.ffff.ff-ff, seq: 0xffffffff, lifetime: 65535s - chksum: 0xffff (incorrect should be 0x0fe8), PDU length: 65535, Flags: [ L1 IS ] - IS Neighbor(s) (variable length) TLV #7, length: 0 - 1 straggler bytes -IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto GRE (47), length 54) - 234.176.145.73 > 192.168.1.1: GREv0, Flags [none], length 34 - IS-IS, length 30 - L1 LSP, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (6), max-area: 7 (7) - lsp-id: ffff.ffff.ffff.ff-ff, seq: 0xffffffff, lifetime: 65535s - chksum: 0xffff (incorrect should be 0x0fe8), PDU length: 65535, Flags: [ L1 IS ] - IS Neighbor(s) (variable length) TLV #7, length: 0 - 1 straggler bytes -IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto GRE (47), length 54) - 225.91.211.91 > 192.168.1.1: GREv0, Flags [none], length 34 - IS-IS, length 30 - L1 LSP, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (6), max-area: 7 (7) - lsp-id: ffff.ffff.ffff.ff-ff, seq: 0xffffffff, lifetime: 65535s - chksum: 0xffff (incorrect should be 0x0fe8), PDU length: 65535, Flags: [ L1 IS ] - IS Neighbor(s) (variable length) TLV #7, length: 0 - 1 straggler bytes -IP (tos 0x0, ttl 128, id 0, offset 0, flags [DF], proto GRE (47), length 54) - 160.196.17.46 > 192.168.1.1: GREv0, Flags [none], length 34 - IS-IS, length 30 - L1 LSP, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (6), max-area: 7 (7) - lsp-id: ffff.ffff.ffff.ff-ff, seq: 0xffffffff, lifetime: 65535s - chksum: 0xffff (incorrect should be 0x0fe8), PDU length: 65535, Flags: [ L1 IS ] - IS Neighbor(s) (variable length) TLV #7, length: 0 - 1 straggler bytes -IP (tos 0x0, ttl 128, id 0, offset 0, flags [DF], proto GRE (47), length 54) - 246.181.173.63 > 192.168.1.1: GREv0, Flags [none], length 34 - IS-IS, length 30 - L1 LSP, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (6), max-area: 7 (7) - lsp-id: ffff.ffff.ffff.ff-ff, seq: 0xffffffff, lifetime: 65535s - chksum: 0xffff (incorrect should be 0x0fe8), PDU length: 65535, Flags: [ L1 IS ] - IS Neighbor(s) (variable length) TLV #7, length: 0 - 1 straggler bytes diff --git a/tests/isis_poi.out b/tests/isis_poi.out deleted file mode 100644 index 129734b..0000000 --- a/tests/isis_poi.out +++ /dev/null @@ -1,8 +0,0 @@ -IS-IS, length 43 - L2 LSP, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - lsp-id: 1280.9201.9098.00-00, seq: 0x000001e2, lifetime: 0s - chksum: 0x0000 (unverified), PDU length: 43, Flags: [ L2 IS ] - Purge Originator Identifier TLV #13, length: 7 - Purge Originator System-ID: 1280.9202.0074 - Hostname TLV #137, length: 5 - Hostname: P2_re diff --git a/tests/isis_poi.pcap b/tests/isis_poi.pcap deleted file mode 100644 index fdd433c..0000000 Binary files a/tests/isis_poi.pcap and /dev/null differ diff --git a/tests/isis_poi2.out b/tests/isis_poi2.out deleted file mode 100644 index 10eecca..0000000 --- a/tests/isis_poi2.out +++ /dev/null @@ -1,9 +0,0 @@ -IS-IS, length 49 - L2 LSP, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) - lsp-id: 1280.9201.7082.00-00, seq: 0x0000023f, lifetime: 0s - chksum: 0x0000 (unverified), PDU length: 49, Flags: [ L2 IS ] - Purge Originator Identifier TLV #13, length: 13 - Purge Originator System-ID: 1280.9202.7092 - Received from System-ID: 1280.9202.0074 - Hostname TLV #137, length: 5 - Hostname: P1_re diff --git a/tests/isis_poi2.pcap b/tests/isis_poi2.pcap deleted file mode 100644 index 8174524..0000000 Binary files a/tests/isis_poi2.pcap and /dev/null differ diff --git a/tests/isup.out b/tests/isup.out deleted file mode 100644 index fb4d9af..0000000 --- a/tests/isup.out +++ /dev/null @@ -1,6 +0,0 @@ -IP 10.28.6.42.2905 > 10.28.6.44.2905: sctp (1) [DATA] (B)(E) [TSN: 1822994892] [SID: 6] [SSEQ 42] [PPID M3UA] -IP 10.28.6.44.2905 > 10.28.6.42.2905: sctp (1) [DATA] (B)(E) [TSN: 4307] [SID: 0] [SSEQ 643] [PPID M3UA] -IP 10.28.6.44.2905 > 10.28.6.42.2905: sctp (1) [DATA] (B)(E) [TSN: 4308] [SID: 0] [SSEQ 644] [PPID M3UA] -IP 10.28.6.44.2905 > 10.28.6.42.2905: sctp (1) [DATA] (B)(E) [TSN: 4309] [SID: 0] [SSEQ 645] [PPID M3UA] -IP 10.28.6.42.2905 > 10.28.6.44.2905: sctp (1) [DATA] (B)(E) [TSN: 1822994893] [SID: 6] [SSEQ 43] [PPID M3UA] -IP 10.28.6.44.2905 > 10.28.6.42.2905: sctp (1) [DATA] (B)(E) [TSN: 4310] [SID: 0] [SSEQ 646] [PPID M3UA] diff --git a/tests/isup.pcap b/tests/isup.pcap deleted file mode 100644 index 39f16b9..0000000 Binary files a/tests/isup.pcap and /dev/null differ diff --git a/tests/isupvv.out b/tests/isupvv.out deleted file mode 100644 index 8e8a008..0000000 --- a/tests/isupvv.out +++ /dev/null @@ -1,30 +0,0 @@ -IP (tos 0x0, ttl 64, id 38618, offset 0, flags [none], proto SCTP (132), length 132) - 10.28.6.42.2905 > 10.28.6.44.2905: sctp - 1) [DATA] (B)(E) [TSN: 1822994892] [SID: 6] [SSEQ 42] [PPID M3UA] - Transfer Data Message - Unknown Parameter (0x0002): (length 73) -IP (tos 0x0, ttl 255, id 50089, offset 0, flags [DF], proto SCTP (132), length 76) - 10.28.6.44.2905 > 10.28.6.42.2905: sctp - 1) [DATA] (B)(E) [TSN: 4307] [SID: 0] [SSEQ 643] [PPID M3UA] - Transfer Data Message - Unknown Parameter (0x0002): (length 18) -IP (tos 0x0, ttl 255, id 50090, offset 0, flags [DF], proto SCTP (132), length 72) - 10.28.6.44.2905 > 10.28.6.42.2905: sctp - 1) [DATA] (B)(E) [TSN: 4308] [SID: 0] [SSEQ 644] [PPID M3UA] - Transfer Data Message - Unknown Parameter (0x0002): (length 15) -IP (tos 0x0, ttl 255, id 50091, offset 0, flags [DF], proto SCTP (132), length 72) - 10.28.6.44.2905 > 10.28.6.42.2905: sctp - 1) [DATA] (B)(E) [TSN: 4309] [SID: 0] [SSEQ 645] [PPID M3UA] - Transfer Data Message - Unknown Parameter (0x0002): (length 13) -IP (tos 0x0, ttl 64, id 38651, offset 0, flags [none], proto SCTP (132), length 76) - 10.28.6.42.2905 > 10.28.6.44.2905: sctp - 1) [DATA] (B)(E) [TSN: 1822994893] [SID: 6] [SSEQ 43] [PPID M3UA] - Transfer Data Message - Unknown Parameter (0x0002): (length 17) -IP (tos 0x0, ttl 255, id 50109, offset 0, flags [DF], proto SCTP (132), length 72) - 10.28.6.44.2905 > 10.28.6.42.2905: sctp - 1) [DATA] (B)(E) [TSN: 4310] [SID: 0] [SSEQ 646] [PPID M3UA] - Transfer Data Message - Unknown Parameter (0x0002): (length 13) diff --git a/tests/kday1.out b/tests/kday1.out deleted file mode 100644 index eaaacaa..0000000 --- a/tests/kday1.out +++ /dev/null @@ -1,15 +0,0 @@ -IP6, wrong link-layer encapsulation (tos 0x10, ttl 192, id 63177, offset 0, flags [DF], proto SCTP (132), length 168, options (security [bad length 110]), bad cksum a291 (->9204)!) - c084:a291:b8aa:42aa:3e38:9ac7:826e:b930.33943 > 8497:1a30:7cd4:d4d4:d4d4:d428:13:68.6704: sctp[ForCES HP] (1) [DATA] (B)(E) [TSN: 1934917887] [SID: 256] [SSEQ 15360] [PPID 0x3c00] - ForCES Config - ForCES Version 14 len 88B flags 0x0a040604 - SrcID 0xff000200(AllMulticast) DstID 0xb59cbe(FE) Correlator 0x30480805f4010800 - Messy oper TLV header, type (0x600) - excess of -240 Bytes - [0x0000: e803 0016 ff00 0200 00b5 9cbe 3048 0805 - [0x0010: f401 0800 0a04 0604 0010 003c 0000 3ce8 - [0x0020: 0300 3c00 000e 0016 0604 0010 003c 0000 - [0x0030: 0000 ff00 ffff a69c be30 4808 0600 0108 - [0x0040: 0006 0400 0184 b59c be30 84b5 0010 0000 - [0x0050: cc05 367e 0003 0000 - ][|sctp] -EXIT CODE 00000100 diff --git a/tests/kday1.pcap b/tests/kday1.pcap deleted file mode 100644 index ca2d960..0000000 Binary files a/tests/kday1.pcap and /dev/null differ diff --git a/tests/kday2.out b/tests/kday2.out deleted file mode 100644 index 770fc3b..0000000 --- a/tests/kday2.out +++ /dev/null @@ -1,34 +0,0 @@ -CFMv0 unknown (204), MD Level 0, length 168 - First TLV offset 52 - 0x0000: a300 0000 0080 0000 0000 0000 0000 0000 - 0x0010: 0000 00aa 6873 54d7 060b 003c 0000 003c - 0x0020: d4c3 b2a1 0200 1a00 000b 003c 0000 003c - 0x0030: d4c3 b2a1 0200 1a00 0000 0000 3620 0a00 - 0x0040: b600 0000 b600 0000 40b5 9cbe 3048 0cc4 - 0x0050: ad37 1005 ffff 05cc 0934 9300 0000 0080 - 0x0060: 0000 0000 0000 3200 0000 0000 00aa 6873 - Port status TLV (0x02), length 26, Status: Unknown (0) - Unknown TLV (0x37), length 4101 - 0x0000: 3710 05ff ff05 cc09 3493 0000 0000 8000 - 0x0010: 0000 0000 0032 0000 0000 0000 aa68 7354 - 0x0020: d706 0b00 3c00 0000 3c00 0000 0080 0000 - 0x0030: fffd 4d5f d9bd c709 30ac 8176 b36d cc11 - 0x0040: 3abf 1291 f106 4ede 61f4 6297 afc4 39a4 - 0x0050: 0db9 7a -IP (tos 0x10, ttl 62, id 64806, offset 0, flags [DF], proto TCP (6), length 52) - 204.9.51.132.50079 > 204.9.54.80.22: Flags [.], cksum 0x8611 (incorrect -> 0xa678), ack 1819218606, win 4094, options [nop,nop,TS val 941371775 ecr 4294967242], length 0 -IP (tos 0x10, ttl 62, id 62920, offset 0, flags [DF], proto TCP (6), length 52, bad cksum 4504 (->451a)!) - 204.9.51.132.50079 > 204.243.53.80.22: Flags [.], cksum 0x858b (incorrect -> 0x66a1), ack 2339312418, win 4092, options [nop,nop,TS val 941371913 ecr 1340592084], length 0 -IP (tos 0x0, ttl 64, id 63178, offset 0, flags [DF], proto TCP (6), length 52, bad cksum 3e8c (->438c)!) - 204.9.64.80.55936 > 204.9.40.10.443: Flags [.], cksum 0x0594 (incorrect -> 0x7767), ack 3587398274, win 1040, options [nop,nop,TS val 647770294 ecr 2364779354], length 0 -IP (tos 0x0, ttl 64, id 36752, offset 0, flags [DF], proto TCP (6), length 399, bad cksum a46b (->a474)!) - 204.0.55.10.323 > 204.9.54.80.55936: Flags [P.], cksum 0xc9b6 (incorrect -> 0x8900), seq 3589495407:3589495754, ack 370428050, win 1040, options [nop,nop,TS val 2364757411 ecr 3084508609], length 347 - RPKI-RTRv177, Unknown PDU (100), length: 60 - 0x0000: b164 003c 0000 003c 0000 00ff ff1f 1b70 - 0x0010: f857 ee68 4dfd 4d5f d9bd c709 30ac 8176 - 0x0020: b36d cc11 3abf 1291 f106 4ede 61f4 6297 - 0x0030: afc4 39a4 0db9 7aa5 6873 33e8 - RPKI-RTRv65, Error Report PDU (10), length: 21 - Error code: Unknown (66), Encapsulated PDU length: 37|trunc - [|RPKI-RTR] -EXIT CODE 00000100 diff --git a/tests/kday2.pcap b/tests/kday2.pcap deleted file mode 100644 index 28e921b..0000000 Binary files a/tests/kday2.pcap and /dev/null differ diff --git a/tests/kday3.out b/tests/kday3.out deleted file mode 100644 index f6fd728..0000000 --- a/tests/kday3.out +++ /dev/null @@ -1,41 +0,0 @@ -IP (tos 0x10, ttl 64, id 63177, offset 0, flags [DF], proto TCP (6), length 168) - 204.9.54.80.22 > 204.9.51.132.50079: Flags [P.], cksum 0x0282 (incorrect -> 0x3217), seq 1819218606:1819218722, ack 1238485076, win 1039, options [nop,nop,TS val 1340592078 ecr 941371882], length 116 -IP6, wrong link-layer encapsulation (tos 0x10, ttl 62, id 64806, offset 0, flags [DF], proto TCP (6), length 52, options (unknown 195 [bad length 159]), bad cksum 3da6 (->45ca)!) - 27759 > 4782: tcp 24 [bad hdr length 0 - too short, < 20] -IP (tos 0x10, ttl 62, id 62920, offset 0, flags [DF], proto TCP (6), length 52, bad cksum 4504 (->451a)!) - 204.9.51.132.50079 > 204.243.53.80.22: Flags [.], cksum 0x858b (incorrect -> 0x85a1), ack 1819218722, win 4092, options [nop,nop,TS val 941371913 ecr 1340592084], length 0 -IP (tos 0x0, ttl 64, id 63178, offset 0, flags [DF], proto TCP (6), length 52, bad cksum 3e8c (->438c)!) - 204.9.64.80.55936 > 204.9.40.10.443: Flags [.], cksum 0x0594 (incorrect -> 0x7767), ack 3587398274, win 1040, options [nop,nop,TS val 647770294 ecr 2364779354], length 0 -IP (tos 0x0, ttl 64, id 36752, offset 0, flags [DF], proto TCP (6), length 399, bad cksum a46b (->a474)!) - 204.0.55.10.323 > 204.9.54.80.55936: Flags [P.], cksum 0xc9b6 (incorrect -> 0x0cf1), seq 3589495407:3589495754, ack 370428050, win 1040, options [nop,nop,TS val 2381534627 ecr 3084508609], length 347 - RPKI-RTRv177, Unknown PDU (100), length: 60 - 0x0000: b164 003c 0000 003c 0000 00ff ff1f 1b70 - 0x0010: f857 ee68 4dfd 4d5f d9bd c709 30ac 8176 - 0x0020: b36d cc11 3abf 1291 f106 4ede 61f4 6297 - 0x0030: afc4 39a4 0db9 7aa5 6873 33e8 - RPKI-RTRv65, Error Report PDU (10), length: 66|trunc - RPKI-RTRv115, Error Report PDU (10), length: 66 - Error code: Unknown (66), Encapsulated PDU length: 12 - -----encapsulated PDU-----|trunc|trunc - [|RPKI-RTR] -IP (tos 0x10, ttl 62, id 64806, offset 0, flags [DF], proto TCP (6), length 52) - 204.9.51.132.50079 > 204.9.54.80.22: Flags [.], cksum 0x8611 (incorrect -> 0xa678), ack 0, win 4094, options [nop,nop,TS val 941371775 ecr 4294967242], length 0 -IP (tos 0x10, ttl 62, id 62920, offset 0, flags [DF], proto TCP (6), length 52, bad cksum 4504 (->451a)!) - 204.9.51.132.50079 > 204.243.53.80.22: Flags [.], cksum 0x858b (incorrect -> 0x85a1), ack 1, win 4092, options [nop,nop,TS val 941371913 ecr 1340592084], length 0 -IP (tos 0x0, ttl 64, id 63178, offset 0, flags [DF], proto TCP (6), length 52, bad cksum 3e8c (->438c)!) - 204.9.64.80.55936 > 204.9.40.10.443: Flags [.], cksum 0x0594 (incorrect -> 0x8d67), ack 1, win 1040, options [nop,nop,TS val 647770294 ecr 2364773722], length 0 -IP (tos 0x0, ttl 64, id 36752, offset 0, flags [DF], proto TCP (6), length 399, bad cksum a46b (->a474)!) - 204.0.55.10.323 > 204.9.54.80.55936: Flags [P.], cksum 0xc9b6 (incorrect -> 0xa6b3), seq 0:347, ack 1, win 1040, options [nop,nop,TS val 2364757411 ecr 3084508609], length 347 - RPKI-RTRv177, Unknown PDU (100), length: 60 - 0x0000: b164 003c 0000 003c 0000 00ff ff1f 1b70 - 0x0010: f857 ee68 4dfd 4d5f d9bd c709 30ac 8176 - 0x0020: b36d cc11 3abf 1291 f106 4ede 61f4 6297 - 0x0030: afc4 39a4 0db9 7aa5 6873 33e8 - RPKI-RTRv65, Error Report PDU (10), length: 66 - Error code: Unknown (66), Encapsulated PDU length: 37 - -----encapsulated PDU-----|trunc|trunc - RPKI-RTRv9, Unknown PDU (51), length: 32 - 0x0000: 0933 84cc 0000 0020 9f00 1649 d1c8 546c - 0x0010: ff13 1980 100f fc85 8b00 0055 0000 0101 - [|RPKI-RTR] -EXIT CODE 00000100 diff --git a/tests/kday3.pcap b/tests/kday3.pcap deleted file mode 100644 index e22de28..0000000 Binary files a/tests/kday3.pcap and /dev/null differ diff --git a/tests/kday4.out b/tests/kday4.out deleted file mode 100644 index 00836ee..0000000 --- a/tests/kday4.out +++ /dev/null @@ -1,64 +0,0 @@ -IP (tos 0x10, ttl 64, id 63177, offset 0, flags [none], proto unknown (240), length 168, bad cksum 418f (->80a5)!) - 204.9.54.80 > 204.9.51.132: ip-proto-240 148 -IP (tos 0x10, ttl 62, id 64806, offset 0, flags [DF], proto TCP (6), length 52, bad cksum 3da6 (->35a6)!) - 212.9.51.132.50079 > 204.9.54.80.22: Flags [.], cksum 0x8611 (incorrect -> 0x4811), ack 1819218606, win 17918, options [nop,nop,TS val 941371903 ecr 1340592074], length 0 -84:b5:9c:be:30:48 Unknown SSAP 0x10 > 0c:c4:7a:08:e9:12 Unknown DSAP 0x44 Information, send seq 0, rcv seq 26, Flags [Command], length 52 - 0x0000: 4510 0034 f5c8 4000 3e06 4504 cc09 3384 E..4..@.>.E...3. - 0x0010: cc09 3650 c39f 0016 49d1 c854 6c6f 1322 ..6P....I..Tlo." - 0x0020: 8010 0ffc 858b 0000 0101 080a 381c 3209 ............8.2. - 0x0030: 4fe7 cfd4 O... -IP (tos 0x0, ttl 64, id 63178, offset 0, flags [DF], proto TCP (6), length 52) - 204.9.54.80.55936 > 204.9.55.10.443: Flags [.], cksum 0x0594 (incorrect -> 0x725a), ack 3589495407, win 1040, options [nop,nop,TS val 647770294 ecr 2364779354], length 0 -IP (tos 0x0, ttl 64, id 36752, offset 0, flags [DF], proto TCP (6), length 399, bad cksum a46b (->a474)!) - 204.0.55.10.323 > 204.9.54.80.55936: Flags [P.], cksum 0xc9b6 (incorrect -> 0xcd5f), seq 3589495407:3589495754, ack 370436242, win 1040, options [nop,nop,TS val 2364757411 ecr 3084508609], length 347 - RPKI-RTRv177, Unknown PDU (100), length: 60 - 0x0000: b164 003c 0000 003c 0000 00ff ff1f 1b70 - 0x0010: f857 ee68 4dfd 4d5f d9bd c709 30ac 8176 - 0x0020: b36d cc11 3abf 1291 f106 4ede 58f4 6297 - 0x0030: afc4 39a4 0db9 7aa5 6873 33e8 - RPKI-RTRv65, Error Report PDU (10), length: 66 - Error code: Unknown (66), Encapsulated PDU length: 37 - -----encapsulated PDU-----|trunc|trunc - RPKI-RTRv115, Error Report PDU (10), length: 66 - Error code: Unknown (66), Encapsulated PDU length: 12 - -----encapsulated PDU-----|trunc|trunc - [|RPKI-RTR] -IP (tos 0x10, ttl 62, id 64806, offset 0, flags [DF], proto TCP (6), length 52) - 204.9.51.132.50079 > 204.9.54.80.22: Flags [.], cksum 0x8611 (incorrect -> 0xa678), ack 1819218606, win 4094, options [nop,nop,TS val 941371775 ecr 4294967242], length 0 -IP (tos 0x10, ttl 62, id 62920, offset 0, flags [DF], proto TCP (6), length 52, bad cksum 4504 (->451a)!) - 204.9.51.132.50079 > 204.243.53.80.22: Flags [.], cksum 0x858b (incorrect -> 0x85a1), ack 1819218722, win 4092, options [nop,nop,TS val 941371913 ecr 1340592084], length 0 -IP (tos 0x0, ttl 64, id 63178, offset 0, flags [DF], proto TCP (6), length 52, bad cksum 3e8c (->438c)!) - 204.9.64.80.55936 > 204.9.40.10.443: Flags [.], cksum 0x0594 (incorrect -> 0x8d67), ack 3587398274, win 1040, options [nop,nop,TS val 647770294 ecr 2364773722], length 0 -IP (tos 0x0, ttl 64, id 36752, offset 0, flags [DF], proto TCP (6), length 399, bad cksum a46b (->a474)!) - 204.0.55.10.323 > 204.9.54.80.55936: Flags [P.], cksum 0xc9b6 (incorrect -> 0xfa70), seq 0:347, ack 4294959105, win 1040, options [nop,nop,TS val 2364757411 ecr 3084508609], length 347 - RPKI-RTRv197, Unknown PDU (100), length: 60 - 0x0000: c564 003c 0000 003c 0000 00ff ff1f 1b70 - 0x0010: f857 ee68 4dfd 4d5f d9bd c709 30ac 8176 - 0x0020: b36d cc11 3abf 1291 f106 4ede 61f4 6297 - 0x0030: afc4 39a4 0db9 7aa5 6873 33e8 - RPKI-RTRv65, Error Report PDU (10), length: 66 - Error code: Unknown (66), Encapsulated PDU length: 37 - -----encapsulated PDU-----|trunc|trunc - RPKI-RTRv115, Error Report PDU (10), length: 66 - Error code: Unknown (66), Encapsulated PDU length: 12 - -----encapsulated PDU-----|trunc|trunc - [|RPKI-RTR] -IP truncated-ip - 768 bytes missing! (tos 0x10, ttl 62, id 64806, offset 0, flags [DF], proto TCP (6), length 820, bad cksum 3da6 (->3aa6)!) - 204.9.51.132.50079 > 204.9.54.80.22: Flags [.], seq 0:768, ack 1, win 4094, options [nop,nop,TS val 941371775 ecr 4294967242], length 768 -IP (tos 0x6,ECT(0), ttl 62, id 62920, offset 0, flags [DF], proto TCP (6), length 52, bad cksum 4504 (->4524)!) - 204.9.51.132.50079 > 204.243.53.80.22: Flags [.], cksum 0x858b (incorrect -> 0x85a1), ack 1, win 4092, options [nop,nop,TS val 941371913 ecr 1340592084], length 0 -IP (tos 0x0, ttl 64, id 63178, offset 0, flags [DF], proto TCP (6), length 52, bad cksum 3e8c (->438c)!) - 204.9.64.80.55936 > 204.9.40.10.443: Flags [.], cksum 0x0594 (incorrect -> 0x8d67), ack 1, win 1040, options [nop,nop,TS val 647770294 ecr 2364773722], length 0 -IP (tos 0x0, ttl 64, id 36752, offset 0, flags [DF], proto TCP (6), length 399, bad cksum a46b (->a474)!) - 204.0.55.10.323 > 204.9.54.80.55936: Flags [P.], cksum 0xc9b6 (incorrect -> 0x3f28), seq 0:347, ack 4294959105, win 1040, options [nop,nop,TS val 2364757411 ecr 3084508609], length 347 - RPKI-RTRv177, Unknown PDU (100), length: 60 - 0x0000: b164 003c 0000 003c 0000 00ff ff1f 1b70 - 0x0010: f857 ee68 4dfd 4d5f d9bd c709 30ac 8176 - 0x0020: b36d cc11 3abf 1291 f106 4ede 61f4 6297 - 0x0030: afc4 39a4 0db9 7aa5 6873 33e8 - RPKI-RTRv65, Error Report PDU (10), length: 66 - Error code: Unknown (66), Encapsulated PDU length: 100 - Error text: ^@^@^@M-^?M-^?^_^[pM-xWM-nhMM-}M_M-YM-=M-G^I0M-,M-^AvM-3mM-L^Q:M-?^RM-^QM-q^FNM-^aM-tbM-^WM-/M-D9M-$^MM-9zM-%hs3M-hA^J^@B^@^@^@B^@^@^@%M-Dz^HM-i^RM-^DM-5M-^\M->0H^H^@E^P^@4M-}&@^@>^F - RPKI-RTRv115, Error Report PDU (10), length: 66|trunc - [|RPKI-RTR] -EXIT CODE 00000100 diff --git a/tests/kday4.pcap b/tests/kday4.pcap deleted file mode 100644 index f25e84a..0000000 Binary files a/tests/kday4.pcap and /dev/null differ diff --git a/tests/kday5.out b/tests/kday5.out deleted file mode 100644 index 7aeae72..0000000 --- a/tests/kday5.out +++ /dev/null @@ -1,35 +0,0 @@ -CFMv0 unknown (204), MD Level 0, length 168 - First TLV offset 52 - 0x0000: a300 0000 0080 0000 0000 0000 0000 0000 - 0x0010: 0000 00aa 6873 54d7 060b 003c 0000 003c - 0x0020: d4c3 b2a1 0200 1a00 000b 003c 0000 003c - 0x0030: d4c3 b2a1 0200 1a00 0000 0000 3620 0a00 - 0x0040: b600 0000 b600 0000 40b5 9cbe 3048 0cc4 - 0x0050: ad37 1005 ffff 05cc 0934 9300 0000 0080 - 0x0060: 0000 0000 0000 3200 0000 0000 00aa 6873 - Port status TLV (0x02), length 26, Status: Unknown (0) - Unknown TLV (0x37), length 4101 - 0x0000: 3710 05ff ff05 cc09 3493 0000 0000 8000 - 0x0010: 0000 0000 0032 0000 0000 0000 aa68 7354 - 0x0020: d706 0b00 3c00 0000 3c00 0000 0080 0000 - 0x0030: fffd 4d5f d9bd c709 30ac 8176 b36d cc11 - 0x0040: 3abf 1291 f106 4ede 61f4 6297 afc4 39a4 - 0x0050: 0db9 7a -IP (tos 0x10, ttl 62, id 64806, offset 0, flags [DF], proto TCP (6), length 52) - 204.9.51.132.50079 > 204.9.54.80.22: Flags [.], cksum 0x8611 (incorrect -> 0xa678), ack 1819218606, win 4094, options [nop,nop,TS val 941371775 ecr 4294967242], length 0 -IP (tos 0x10, ttl 62, id 62920, offset 0, flags [DF], proto TCP (6), length 52, bad cksum 4504 (->451a)!) - 204.9.51.132.50079 > 204.243.53.80.22: Flags [.], cksum 0x858b (incorrect -> 0x98c3), ack 1819279359, win 4092, options [nop,nop,TS val 941371913 ecr 1340592084], length 0 -IP (tos 0x0, ttl 64, id 63178, offset 0, flags [DF], proto TCP (6), length 52, bad cksum 3e8c (->438c)!) - 204.9.64.80.55936 > 204.9.40.10.443: Flags [.], cksum 0x0594 (incorrect -> 0x7767), ack 3587398274, win 1040, options [nop,nop,TS val 647770294 ecr 2364779354], length 0 -IP (tos 0x0, ttl 64, id 36752, offset 0, flags [DF], proto TCP (6), length 399, bad cksum a46b (->a474)!) - 204.0.55.10.323 > 204.9.54.80.55936: Flags [P.], cksum 0xc9b6 (incorrect -> 0x183a), seq 3589495407:3589495754, ack 370428050, win 1040, options [nop,nop,TS val 2351322531 ecr 3084508609], length 347 - RPKI-RTRv177, Unknown PDU (100), length: 60 - 0x0000: b164 003c 0000 003c 0000 00ff ff1f 1b70 - 0x0010: f857 ee68 4dfd 4d5f d9bd c709 30ac 8176 - 0x0020: b36d cc11 3abf 1291 f106 4ede 61f4 6297 - 0x0030: afc4 39a4 0db9 7aa5 6873 33e8 - RPKI-RTRv65, Error Report PDU (10), length: 66 - Error code: Unknown (66), Encapsulated PDU length: 80 - Error text: M-9M-9M-9M-9M-9M-9M-9M-9M-9M-9M-9M-9M-9M-9M-9M-9M-9M-CM-9M-9M-9M-9M-9M-9M-9M-9M-9M-9M-9M-9M-9M-9M-9M-9M-9M-9M-9M-9M-9M-9M-9M-9M-9M-9M-9M-9M-9M-9M-9M-9M-9M-9M-9M-9M-9M-9M-9M-9M-9M-9M-9M-9M-9M-9M-9M-9M-9M-9M-9M-9M-9^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^V^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J^J - [|RPKI-RTR] -EXIT CODE 00000100 diff --git a/tests/kday5.pcap b/tests/kday5.pcap deleted file mode 100644 index 759bf88..0000000 Binary files a/tests/kday5.pcap and /dev/null differ diff --git a/tests/kday6.out b/tests/kday6.out deleted file mode 100644 index 8c49293..0000000 --- a/tests/kday6.out +++ /dev/null @@ -1,448 +0,0 @@ -FRF.16 Frag, seq 693, Flags [Begin], UI e8! IS-IS, length 301989913 - L1 LSP, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 131 (131) - lsp-id: 8383.8383.834f.00-60, seq: 0x06418fcc, lifetime: 33667s - chksum: 0x0900 (unverified), PDU length: 33667, Flags: [ Overload bit set, expense ATT bit set, L1 IS ] - Multi-Topology Capability TLV #144, length: 137 - O: 0, RES: 4, MTID(s): 3945 - unknown subTLV #8, length: 233 - unknown subTLV #18, length: 0 - unknown subTLV #37, length: 144 - unknown subTLV #137, length: 79 - unknown subTLV #105, length: 8 - unknown subTLV #0, length: 69 - unknown subTLV #0, length: 0 - unknown subTLV #52, length: 144 - unknown subTLV #64, length: 64 - SPB Instance subTLV #1, length: 64 - CIST Root-ID: 06a516cc 09370acc, Path Cost: ffffff7f, Prio: 48090 - RES: 1031, V: 1, SPSource-ID: 324444, No of Trees: 5 - U:0, M:0, A:0, RES:22, ECT: 144a2d80, BVID: 256, SPVID: 1040 - U:0, M:1, A:1, RES:14, ECT: 55000001, BVID: 16, SPVID: 2058 - U:1, M:0, A:0, RES:12, ECT: f3ac2b26, BVID: 2499, SPVID: 185 - U:1, M:0, A:1, RES:5, ECT: 68735440, BVID: 1216, SPVID: 3072 - U:1, M:1, A:1, RES:23, ECT: 020000f7, BVID: 32, SPVID: 0 - unknown subTLV #132, length: 181 - unknown subTLV #156, length: 190 - unknown subTLV #255, length: 255 - unknown subTLV #255, length: 255 - unknown subTLV #0, length: 64 - unknown subTLV #6, length: 62 - unknown subTLV #136, length: 204 - unknown subTLV #9, length: 16 - unknown subTLV #4, length: 16 - unknown subTLV #5, length: 148 - unknown subTLV #0, length: 0 - SPB Instance subTLV #1, length: 1 - CIST Root-ID: 080a26a6 318b8cf3, Path Cost: a5d38ec4, Prio: 31240 - RES: 1864, V: 1, SPSource-ID: 133120, No of Trees: 45 - U:0, M:0, A:0, RES:0, ECT: cc09370a, BVID: 3496, SPVID: 1 - U:1, M:0, A:1, RES:27, ECT: 16274ce2, BVID: 3423, SPVID: 860 - U:1, M:1, A:0, RES:10, ECT: 80100410, BVID: 89, SPVID: 1093 - U:0, M:0, A:0, RES:16, ECT: 04106e55, BVID: 0, SPVID: 1 - U:0, M:0, A:0, RES:1, ECT: 080a8cf3, BVID: 2754, SPVID: 2854 - U:1, M:0, A:0, RES:28, ECT: 0e2d0e0e, BVID: 224, SPVID: 3598 - U:0, M:0, A:0, RES:14, ECT: 0e0e0e0e, BVID: 224, SPVID: 3598 - U:0, M:0, A:0, RES:14, ECT: 0e0e0e0e, BVID: 224, SPVID: 3598 - U:0, M:0, A:0, RES:14, ECT: 0e0e0e0e, BVID: 224, SPVID: 3598 - U:0, M:0, A:0, RES:14, ECT: 0e0e0e0e, BVID: 224, SPVID: 3598 - U:0, M:0, A:0, RES:14, ECT: 0e0e0e0e, BVID: 224, SPVID: 3598 - U:0, M:0, A:0, RES:14, ECT: 0e0e0e0e, BVID: 224, SPVID: 3598 - U:0, M:0, A:0, RES:14, ECT: 0e0e0e0e, BVID: 224, SPVID: 3598 - U:0, M:0, A:0, RES:27, ECT: 01001201, BVID: 2104, SPVID: 899 - U:1, M:0, A:0, RES:3, ECT: 83838383, BVID: 2104, SPVID: 899 - U:0, M:1, A:0, RES:15, ECT: 00600641, BVID: 2300, SPVID: 3081 - U:0, M:0, A:0, RES:0, ECT: 2590894f, BVID: 1680, SPVID: 2281 - U:0, M:0, A:0, RES:18, ECT: 0025e489, BVID: 1264, SPVID: 3598 - U:0, M:0, A:0, RES:14, ECT: 0e0e0e0e, BVID: 224, SPVID: 3598 - U:0, M:0, A:0, RES:14, ECT: 0e0e0e0e, BVID: 224, SPVID: 3598 - U:0, M:0, A:0, RES:14, ECT: 0e0e0e0e, BVID: 224, SPVID: 3598 - U:0, M:0, A:0, RES:14, ECT: 0e0e0e0e, BVID: 224, SPVID: 3598 - U:0, M:0, A:0, RES:14, ECT: 0e0e0e0e, BVID: 224, SPVID: 3598 - U:0, M:0, A:0, RES:14, ECT: 0e0e0e0e, BVID: 224, SPVID: 3598 - U:0, M:0, A:0, RES:14, ECT: 0e0e0e0e, BVID: 224, SPVID: 3598 - U:0, M:0, A:0, RES:14, ECT: 0e0e0e0e, BVID: 224, SPVID: 3598 - U:0, M:0, A:0, RES:14, ECT: 0e0e0e0e, BVID: 224, SPVID: 3598 - U:0, M:0, A:0, RES:14, ECT: 0e0e0e0e, BVID: 224, SPVID: 3711 - U:0, M:0, A:0, RES:14, ECT: 0e0e0e0e, BVID: 224, SPVID: 3598 - U:0, M:0, A:0, RES:14, ECT: 0e0e0c0e, BVID: 224, SPVID: 3598 - U:0, M:0, A:0, RES:14, ECT: 0e0e0e0e, BVID: 224, SPVID: 3598 - U:0, M:0, A:0, RES:14, ECT: 0e0e0e0e, BVID: 224, SPVID: 3598 - U:0, M:0, A:0, RES:14, ECT: 0e0e0e0e, BVID: 224, SPVID: 3598 - U:0, M:0, A:0, RES:14, ECT: 0e0e0e0e, BVID: 224, SPVID: 3598 - U:0, M:0, A:0, RES:14, ECT: 0e0e0e0e, BVID: 224, SPVID: 3598 - U:0, M:0, A:0, RES:14, ECT: 0e0e0e0e, BVID: 224, SPVID: 3598 - U:0, M:0, A:0, RES:14, ECT: 0e640e0e, BVID: 224, SPVID: 3598 - U:0, M:0, A:0, RES:14, ECT: 0e0e0e0e, BVID: 224, SPVID: 3598 - U:0, M:0, A:0, RES:14, ECT: 0e0e0e0e, BVID: 224, SPVID: 3598 - U:0, M:0, A:0, RES:14, ECT: 0e0e80ff, BVID: 3760, SPVID: 3598 - U:0, M:0, A:0, RES:14, ECT: 0e0e0e0e, BVID: 224, SPVID: 3598 - U:0, M:0, A:0, RES:14, ECT: 0e000003, BVID: 3720, SPVID: 14 - U:0, M:0, A:0, RES:14, ECT: 0e0e0e0e, BVID: 224, SPVID: 3598 - U:0, M:0, A:0, RES:14, ECT: 0e0e0e0e, BVID: 224, SPVID: 3598 - U:0, M:0, A:0, RES:14, ECT: 560e0e0e, BVID: 224, SPVID: 3598 - U:0, M:0, A:0, RES:14, ECT: 0e0e0e0e, BVID: 224, SPVID: 3598 - U:0, M:0, A:0, RES:14, ECT: 0e0e0e0e, BVID: 224, SPVID: 3675 - U:1, M:0, A:0, RES:0, ECT: acaa4016, BVID: 380, SPVID: 494 - U:1, M:1, A:0, RES:14, ECT: 1560b70f, BVID: 2993, SPVID: 1575 - U:0, M:1, A:0, RES:12, ECT: e2d5f35c, BVID: 3240, SPVID: 16 - U:0, M:0, A:0, RES:4, ECT: 10059445, BVID: 256, SPVID: 1040 - U:0, M:1, A:1, RES:14, ECT: 55000001, BVID: 16, SPVID: 2058 - U:1, M:0, A:0, RES:12, ECT: f3ac2b26, BVID: 2499, SPVID: 2745 - U:1, M:0, A:1, RES:5, ECT: 68735440, BVID: 1216, SPVID: 3072 - U:1, M:1, A:1, RES:23, ECT: 020000f7, BVID: 32, SPVID: 0 - U:1, M:0, A:0, RES:4, ECT: b59cbe8c, BVID: 4095, SPVID: 4095 - U:0, M:0, A:0, RES:0, ECT: 40ff3e88, BVID: 3264, SPVID: 2320 - U:0, M:0, A:0, RES:4, ECT: 10059400, BVID: 0, SPVID: 257 - U:0, M:0, A:0, RES:8, ECT: 0a269c31, BVID: 2232, SPVID: 3315 - U:1, M:0, A:1, RES:12, ECT: 0e0e0e0e, BVID: 224, SPVID: 3598 - U:0, M:0, A:0, RES:14, ECT: 0e0e0e0e, BVID: 224, SPVID: 3598 - U:0, M:0, A:0, RES:14, ECT: 0e0e0e0e, BVID: 224, SPVID: 3598 - U:0, M:0, A:0, RES:14, ECT: 0e0e0e0e, BVID: 224, SPVID: 3598 - U:0, M:0, A:0, RES:0, ECT: 040e0e0e, BVID: 224, SPVID: 3598 - U:1, M:0, A:0, RES:14, ECT: 0e0e0e0e, BVID: 224, SPVID: 3598 - U:0, M:0, A:0, RES:14, ECT: 0b0e0e0e, BVID: 224, SPVID: 3598 - U:0, M:0, A:0, RES:14, ECT: 0e0e0e0e, BVID: 224, SPVID: 3598 - U:0, M:0, A:0, RES:14, ECT: 0e0e0e0e, BVID: 224, SPVID: 3598 - U:0, M:0, A:0, RES:14, ECT: 0e0e0e0e, BVID: 3, SPVID: 3616 - unknown TLV #213, length: 243 - 0x0000: 5cca 8010 0410 0594 4510 0410 6e55 0000 - 0x0010: 0101 080a 8cf3 ac2b 269c 0e2d 0e0e 0e0e - 0x0020: 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e - 0x0030: 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e - 0x0040: 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e - 0x0050: 0e0e 0e0e 0e0e 0e0e 0e1b 0100 1201 8383 - 0x0060: 8383 8383 8383 8383 834f 0060 0641 8fcc - 0x0070: 0900 2590 894f 6908 e912 0025 e489 4f0e - 0x0080: 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e - 0x0090: 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e - 0x00a0: 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e - 0x00b0: 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e - 0x00c0: 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e - 0x00d0: 7f0e 0e0e 0e0e 0e0e 0e0e 0e0e 0c0e 0e0e - 0x00e0: 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e - 0x00f0: 0e0e 0e - LSP Buffersize TLV #14, length: 14 - LSP Buffersize: 3598 - LSP Buffersize TLV #14, length: 14 - LSP Buffersize: 3598 - unknown TLV #100, length: 14 - 0x0000: 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e - LSP Buffersize TLV #14, length: 14 - LSP Buffersize: 3598 - LSP Buffersize TLV #14, length: 14 - LSP Buffersize: 3598 - LSP Buffersize TLV #14, length: 14 - LSP Buffersize: 3598 - LSP Buffersize TLV #14, length: 14 - LSP Buffersize: 3598 - LSP Buffersize TLV #14, length: 14 - LSP Buffersize: 3598 - unknown TLV #96, length: 183 - 0x0000: 0fbb 1627 4ce2 d5f3 5cca 8010 0410 0594 - 0x0010: 4510 0410 6e55 0000 0101 080a 8cf3 ac2b - 0x0020: 269c 3ab9 a568 7354 404c 0c00 f702 0000 - 0x0030: f702 0000 84b5 9cbe 8cff ffff 0040 ff3e - 0x0040: 88cc 0910 0410 0594 0000 0101 080a 269c - 0x0050: 318b 8cf3 ac0e 0e0e 0e0e 0e0e 0e0e 0e0e - 0x0060: 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e - 0x0070: 0e0e 0e0e 0004 0e0e 0e0e 0e0e 8e0e 0e0e - 0x0080: 0e0e 0e0e 0e0b 0e0e 0e0e 0e0e 0e0e 0e0e - 0x0090: 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e - 0x00a0: 0e00 3e20 0a00 b60d 0000 2000 0000 84b5 - 0x00b0: aee0 3083 8383 1b - Area address(es) TLV #1, length: 0 - unknown TLV #18, length: 1 - 0x0000: 83 - Inter-Domain Information Type TLV #131, length: 131 - Inter-Domain Information Type: Unknown (0x83) - 0x0000: 8383 8383 8383 834f 0060 0641 8fcc 0900 - 0x0010: 2590 894f 6908 e912 0025 9089 4f69 0800 - 0x0020: 4500 0034 9040 4001 4006 a516 cc09 370a - 0x0030: ccff ffff 7fbb da80 d5f3 5c05 1614 4a2d - 0x0040: 8010 0410 6e55 0000 0101 080a 8cf3 ac2b - 0x0050: 269c 30b9 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e - 0x0060: 0e08 0e0e 0e0e 0e01 0e0e 0e0e 0e0e 110e - 0x0070: 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e - 0x0080: 0e0e - LSP Buffersize TLV #14, length: 14 - LSP Buffersize: 3598 - LSP Buffersize TLV #14, length: 14 - LSP Buffersize: 3598 - LSP Buffersize TLV #14, length: 14 - LSP Buffersize: 3598 - LSP Buffersize TLV #14, length: 14 - LSP Buffersize: 3598 - LSP Buffersize TLV #14, length: 14 - LSP Buffersize: 3598 - unknown TLV #172, length: 198 - 0x0000: 2478 f620 70ac 2561 8ae3 3458 2d7a 4ea0 - 0x0010: d056 a568 7354 180e 0e0e 0e0e 0e0e 0e0e - 0x0020: 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e - 0x0030: 0e0d f20e 0e0e 0e0e 0e0e 0e0e 0e04 0e0e - 0x0040: 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e - 0x0050: 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e - 0x0060: 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e - 0x0070: 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e 0e49 0e0e - 0x0080: 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e 0e0d - 0x0090: f20e 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e - 0x00a0: 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e - 0x00b0: 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e - 0x00c0: 0e0e 0e0e 0e0e - LSP Buffersize TLV #14, length: 14 - LSP Buffersize: 3598 - LSP Buffersize TLV #14, length: 14 - LSP Buffersize: 3612 - LSP Buffersize TLV #14, length: 14 - LSP Buffersize: 3598 - LSP Buffersize TLV #14, length: 14 - LSP Buffersize: 3598 - LSP Buffersize TLV #14, length: 14 - LSP Buffersize: 3598 - LSP Buffersize TLV #14, length: 5 - LSP Buffersize: 3598 - LSP Buffersize TLV #14, length: 14 - LSP Buffersize: 3598 - LSP Buffersize TLV #14, length: 14 - LSP Buffersize: 3598 - LSP Buffersize TLV #14, length: 14 - LSP Buffersize: 3676 - unknown TLV #92, length: 92 - 0x0000: 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c - 0x0010: 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c - 0x0020: 5c44 4444 4444 4444 4444 4444 4444 4444 - 0x0030: 44b7 b7b7 b7b7 b7b7 b7b7 b7b7 b7b7 b7b7 - 0x0040: b7b7 b7b7 b7b7 b7b7 b7b7 b7b7 b7b7 b7b7 - 0x0050: b7b7 b7b7 b7b7 b7b7 b7b7 b7b7 - unknown TLV #183, length: 183 - 0x0000: b7b7 b7b7 b7b7 b7b7 b7b7 b7b7 b7b7 b7b7 - 0x0010: b7b7 b7b7 b7b7 b7b7 b7b7 b7b7 b7b7 b7b7 - 0x0020: b7b7 b7b7 b7b7 b7b7 b7b7 b7b7 b7b7 b7b7 - 0x0030: b7b7 b7b7 b7b7 b7b7 b7b7 b7b7 b7b7 b7b7 - 0x0040: b7b7 b7b7 b7b7 b7b7 b7b7 b7b7 b7b7 b7b7 - 0x0050: b7b7 b7b7 b7b7 b7b7 b7b7 b7b7 b7b7 b7b7 - 0x0060: b7b7 b7b7 b7b7 b7b7 b7b7 b7b7 b7b7 b7b7 - 0x0070: b7b7 b7b7 b7b7 b7b7 b7b7 b7b7 b7b7 b7b7 - 0x0080: b7b7 b7b7 b7b7 b7b7 b7b7 b7b7 b7b7 b7b7 - 0x0090: b7b7 b7b7 b7b7 b7b7 b7b7 b7b7 b7b7 b7b7 - 0x00a0: b7b7 b7b7 b7b7 b7b7 b7b7 b7b7 b7b7 b7b7 - 0x00b0: b7b7 b7b7 b7b7 b7 - unknown TLV #183, length: 183 - 0x0000: b7b7 b7b7 b7b7 b7b7 b7c0 b7b7 b7b7 b7b7 - 0x0010: b7b7 b7b7 b7b7 b7b7 b7b7 b7b7 b7b7 b7b7 - 0x0020: b7b7 b7b7 b7b7 b7b7 b7b7 b7b7 b7b7 b7b7 - 0x0030: b7b7 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c - 0x0040: 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c - 0x0050: 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c - 0x0060: 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c - 0x0070: 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c - 0x0080: 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c - 0x0090: 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c - 0x00a0: 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c - 0x00b0: 5c5c 5c5c 5c5c 5c - unknown TLV #92, length: 92 - 0x0000: 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c - 0x0010: 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c - 0x0020: 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c - 0x0030: 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c - 0x0040: 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c - 0x0050: 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c - unknown TLV #92, length: 92 - 0x0000: 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c - 0x0010: 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c - 0x0020: 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c - 0x0030: 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c - 0x0040: 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c - 0x0050: 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c - unknown TLV #92, length: 92 - 0x0000: 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c - 0x0010: 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c - 0x0020: 5c5c 715c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c - 0x0030: 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c - 0x0040: 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c - 0x0050: 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c - unknown TLV #92, length: 92 - 0x0000: 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c - 0x0010: 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c - 0x0020: 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c - 0x0030: 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c - 0x0040: 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c - 0x0050: 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c - unknown TLV #92, length: 92 - 0x0000: 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c - 0x0010: 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c - 0x0020: 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c 5c5c - 0x0030: 5c5c 5c5c 5c5c 5c5c 5c10 0594 4510 0410 - 0x0040: 6e55 0000 0101 080a 8cf3 ac2b 269c 3ab9 - 0x0050: a568 7354 404c 0c00 f702 0000 - unknown TLV #247, length: 2 - 0x0000: 0000 - IPv4 Interface address(es) TLV #132, length: 181 - IPv4 interface address: 156.190.140.255 - IPv4 interface address: 255.14.14.14 - IPv4 interface address: 14.14.14.14 - IPv4 interface address: 14.14.14.14 - IPv4 interface address: 14.14.14.14 - IPv4 interface address: 14.14.14.14 - IPv4 interface address: 14.14.14.14 - IPv4 interface address: 14.14.14.14 - IPv4 interface address: 14.14.14.14 - IPv4 interface address: 14.14.14.14 - IPv4 interface address: 14.14.14.14 - IPv4 interface address: 14.14.14.14 - IPv4 interface address: 14.14.14.14 - IPv4 interface address: 14.14.14.14 - IPv4 interface address: 14.14.14.14 - IPv4 interface address: 14.14.14.14 - IPv4 interface address: 14.14.14.14 - IPv4 interface address: 14.14.14.14 - IPv4 interface address: 14.14.14.14 - IPv4 interface address: 14.14.14.14 - IPv4 interface address: 14.14.14.14 - IPv4 interface address: 14.14.14.14 - IPv4 interface address: 14.14.14.14 - IPv4 interface address: 14.14.14.14 - IPv4 interface address: 14.14.14.14 - IPv4 interface address: 14.14.14.14 - IPv4 interface address: 14.14.14.14 - IPv4 interface address: 14.14.14.14 - IPv4 interface address: 14.14.14.14 - IPv4 interface address: 14.14.14.14 - IPv4 interface address: 14.14.14.14 - IPv4 interface address: 14.14.28.14 - IPv4 interface address: 28.14.21.14 - IPv4 interface address: 14.14.14.130 - IPv4 interface address: 89.186.4.171 - IPv4 interface address: 23.3.1.0 - IPv4 interface address: 32.144.252.48 - IPv4 interface address: 165.128.255.255 - IPv4 interface address: 255.246.232.117 - IPv4 interface address: 154.157.104.136 - IPv4 interface address: 118.103.188.123 - IPv4 interface address: 181.119.205.109 - IPv4 interface address: 60.22.90.116 - IPv4 interface address: 80.127.192.14 - IPv4 interface address: 156.165.230.105 - LSP Buffersize TLV #14, length: 14 - LSP Buffersize: 3598 - LSP Buffersize TLV #14, length: 14 - LSP Buffersize: 61197 - LSP Buffersize TLV #14, length: 14 - LSP Buffersize: 3598 - LSP Buffersize TLV #14, length: 14 - LSP Buffersize: 3598 - LSP Buffersize TLV #14, length: 14 - LSP Buffersize: 3598 - LSP Buffersize TLV #14, length: 14 - LSP Buffersize: 3598 - LSP Buffersize TLV #14, length: 13 - LSP Buffersize: 244 - unknown TLV #255, length: 0 - unknown TLV #64, length: 6 - 0x0000: 3e88 cc09 3650 - unknown TLV #204, length: 9 - 0x0000: 370a da80 01bb 0404 04 - unknown TLV #11, length: 4 - 0x0000: 2104 0404 - Partition DIS TLV #4, length: 4 - Partition DIS TLV #4, length: 4 - Partition DIS TLV #4, length: 4 - Partition DIS TLV #4, length: 4 - Partition DIS TLV #4, length: 4 - Partition DIS TLV #4, length: 4 - Partition DIS TLV #4, length: 4 - unknown TLV #234, length: 4 - 0x0000: 0404 0404 - Partition DIS TLV #4, length: 4 - Partition DIS TLV #4, length: 4 - Partition DIS TLV #4, length: 4 - Partition DIS TLV #4, length: 4 - Partition DIS TLV #4, length: 4 - unknown TLV #0, length: 0 - Partition DIS TLV #4, length: 4 - Partition DIS TLV #4, length: 4 - Partition DIS TLV #4, length: 4 - Partition DIS TLV #4, length: 5 - Purge Originator Identifier TLV #13, length: 178 - Purge Originator System-ID: e4f9.cb0c.e2cd - LSP Buffersize TLV #14, length: 14 - LSP Buffersize: 3598 - LSP Buffersize TLV #14, length: 14 - LSP Buffersize: 3598 - LSP Buffersize TLV #14, length: 14 - LSP Buffersize: 3598 - LSP Buffersize TLV #14, length: 14 - LSP Buffersize: 3598 - LSP Buffersize TLV #14, length: 14 - LSP Buffersize: 3598 - LSP Buffersize TLV #14, length: 14 - LSP Buffersize: 3598 - LSP Buffersize TLV #14, length: 14 - LSP Buffersize: 3598 - LSP Buffersize TLV #14, length: 14 - LSP Buffersize: 3598 - LSP Buffersize TLV #14, length: 14 - LSP Buffersize: 3598 - LSP Buffersize TLV #14, length: 14 - LSP Buffersize: 3598 - LSP Buffersize TLV #14, length: 14 - LSP Buffersize: 3598 - LSP Buffersize TLV #14, length: 14 - LSP Buffersize: 3598 - LSP Buffersize TLV #14, length: 14 - LSP Buffersize: 3598 - LSP Buffersize TLV #14, length: 14 - LSP Buffersize: 3598 - LSP Buffersize TLV #14, length: 14 - LSP Buffersize: 3598 - LSP Buffersize TLV #14, length: 14 - LSP Buffersize: 3598 - LSP Buffersize TLV #14, length: 14 - LSP Buffersize: 3598 - LSP Buffersize TLV #14, length: 14 - LSP Buffersize: 3598 - LSP Buffersize TLV #14, length: 14 - LSP Buffersize: 3598 - LSP Buffersize TLV #14, length: 14 - LSP Buffersize: 3598 - LSP Buffersize TLV #14, length: 14 - LSP Buffersize: 3598 - Partition DIS TLV #4, length: 4 - Partition DIS TLV #4, length: 4 - Partition DIS TLV #4, length: 4 - Partition DIS TLV #4, length: 4 - Partition DIS TLV #4, length: 4 - Partition DIS TLV #4, length: 4 - Partition DIS TLV #4, length: 4 - Partition DIS TLV #4, length: 4 - unknown TLV #0, length: 13 - 0x0000: b2c4 e4f9 cb0c e2cd 2e17 5a0b f3 - unknown TLV #180, length: 146 - 0x0000: 01fa 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e - 0x0010: 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e - 0x0020: 0e0e 0e28 0e0e 0e0e 0e0e fb0d 0e0e 0e0e - 0x0030: 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e - 0x0040: 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e - 0x0050: 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e - 0x0060: 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e - 0x0070: 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e - 0x0080: 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e 0e0e - 0x0090: 0e0e - LSP Buffersize TLV #14, length: 14 - LSP Buffersize: 3598 - LSP Buffersize TLV #14, length: 14 - LSP Buffersize: 3598 - LSP Buffersize TLV #14, length: 14 - LSP Buffersize: 3598 - IPv4 Internal Reachability TLV #128, length: 0 - LSP Buffersize TLV #14, length: 14 - LSP Buffersize: 3598 - LSP Buffersize TLV #14, length: 14 - LSP Buffersize: 3598 - LSP Buffersize TLV #14, length: 14 - LSP Buffersize: 3598 - LSP Buffersize TLV #14, length: 14 - LSP Buffersize: 3598 - unknown TLV #58, length: 58 - 0x0000: 3a3a 3a3a 3a3a 3a3a 3a3a 3a3a 3a3a 3a3a - 0x0010: 3a3a 3a [|isis] -EXIT CODE 00000100 diff --git a/tests/kday6.pcap b/tests/kday6.pcap deleted file mode 100644 index 7c6ab89..0000000 Binary files a/tests/kday6.pcap and /dev/null differ diff --git a/tests/kday7.out b/tests/kday7.out deleted file mode 100644 index 5179a0f..0000000 --- a/tests/kday7.out +++ /dev/null @@ -1,63 +0,0 @@ -IP (tos 0x10, ttl 64, id 63177, offset 0, flags [none], proto unknown (240), length 168, bad cksum 418f (->80a5)!) - 204.9.54.80 > 204.9.51.132: ip-proto-240 148 -IP (tos 0x10, ttl 62, id 64806, offset 0, flags [DF], proto TCP (6), length 52, bad cksum 3da6 (->35a6)!) - 212.9.51.132.50079 > 204.9.54.80.22: Flags [.], cksum 0x8611 (incorrect -> 0x4811), ack 1819218606, win 17918, options [nop,nop,TS val 941371903 ecr 1340592074], length 0 -84:b5:9c:be:30:48 Unknown SSAP 0x10 > 0c:c4:7a:08:e9:12 Unknown DSAP 0x44 Information, send seq 0, rcv seq 26, Flags [Command], length 52 - 0x0000: 4510 0034 f5c8 4000 3e06 4504 cc09 3384 E..4..@.>.E...3. - 0x0010: cc09 3650 c39f 0016 49d1 c854 6c6f 1322 ..6P....I..Tlo." - 0x0020: 8010 0ffc 858b 0000 0101 080a 381c 3209 ............8.2. - 0x0030: 4fe7 cfd4 O... -IP (tos 0x0, ttl 64, id 63178, offset 0, flags [DF], proto TCP (6), length 52) - 204.9.54.80.55936 > 204.9.55.10.443: Flags [.], cksum 0x0594 (incorrect -> 0x725a), ack 3589495407, win 1040, options [nop,nop,TS val 647770294 ecr 2364779354], length 0 -IP (tos 0x0, ttl 64, id 36752, offset 0, flags [DF], proto TCP (6), length 399, bad cksum a46b (->a474)!) - 204.0.55.10.323 > 204.9.54.80.55936: Flags [P.], cksum 0xc9b6 (incorrect -> 0xcd5f), seq 3589495407:3589495754, ack 370436242, win 1040, options [nop,nop,TS val 2364757411 ecr 3084508609], length 347 - RPKI-RTRv177, Unknown PDU (100), length: 60 - 0x0000: b164 003c 0000 003c 0000 00ff ff1f 1b70 - 0x0010: f857 ee68 4dfd 4d5f d9bd c709 30ac 8176 - 0x0020: b36d cc11 3abf 1291 f106 4ede 58f4 6297 - 0x0030: afc4 39a4 0db9 7aa5 6873 33e8 - RPKI-RTRv65, Error Report PDU (10), length: 66 - Error code: Unknown (66), Encapsulated PDU length: 37 - -----encapsulated PDU-----|trunc|trunc - RPKI-RTRv115, Error Report PDU (10), length: 66 - Error code: Unknown (66), Encapsulated PDU length: 12 - -----encapsulated PDU-----|trunc|trunc - [|RPKI-RTR] -IP (tos 0x10, ttl 62, id 64806, offset 0, flags [DF], proto TCP (6), length 52) - 204.9.51.132.50079 > 204.9.54.80.22: Flags [.], cksum 0x8611 (incorrect -> 0xa678), ack 1819218606, win 4094, options [nop,nop,TS val 941371775 ecr 4294967242], length 0 -IP (tos 0x10, ttl 62, id 62920, offset 0, flags [DF], proto TCP (6), length 52, bad cksum 4504 (->451a)!) - 204.9.51.132.50079 > 204.243.53.80.22: Flags [.], cksum 0x858b (incorrect -> 0x85a1), ack 1819218722, win 4092, options [nop,nop,TS val 941371913 ecr 1340592084], length 0 -IP (tos 0x0, ttl 64, id 63178, offset 0, flags [DF], proto TCP (6), length 52, bad cksum 3e8c (->438c)!) - 204.9.64.80.55936 > 204.9.40.10.443: Flags [.], cksum 0x0594 (incorrect -> 0x8d67), ack 3587398274, win 1040, options [nop,nop,TS val 647770294 ecr 2364773722], length 0 -IP (tos 0x0, ttl 64, id 36752, offset 0, flags [DF], proto TCP (6), length 399, bad cksum a46b (->a474)!) - 204.0.55.10.323 > 204.9.54.80.55936: Flags [P.], cksum 0xc9b6 (incorrect -> 0xfa86), seq 0:347, ack 4294959105, win 1040, options [nop,nop,TS val 2364757411 ecr 3084508609], length 347 - RPKI-RTRv197, Unknown PDU (100), length: 60 - 0x0000: c564 003c 0000 003c 0000 00ff ff1f 1b70 - 0x0010: f857 ee68 4dfd 4d5f d9bd c709 30ac 8176 - 0x0020: b36d cc11 3abf 1291 f106 4ede 61f4 6297 - 0x0030: afc4 39a4 0db9 7aa5 6873 33e8 - RPKI-RTRv65, Error Report PDU (10), length: 66 - Error code: Unknown (66), Encapsulated PDU length: 37 - -----encapsulated PDU-----|trunc|trunc - RPKI-RTRv115, Error Report PDU (10), length: 66 - Error code: Unknown (66), Encapsulated PDU length: 12 - -----encapsulated PDU-----|trunc|trunc - [|RPKI-RTR] -IP truncated-ip - 768 bytes missing! (tos 0x10, ttl 62, id 64806, offset 0, flags [DF], proto TCP (6), length 820, bad cksum 3da6 (->3aa6)!) - 204.9.51.132.50079 > 204.9.54.80.22: Flags [.], seq 0:768, ack 1, win 4094, options [nop,nop,TS val 941371775 ecr 4294967242], length 768 -IP (tos 0x6,ECT(0), ttl 62, id 62920, offset 0, flags [DF], proto TCP (6), length 52, bad cksum 4504 (->4524)!) - 204.9.51.132.50079 > 204.243.53.80.22: Flags [.], cksum 0x858b (incorrect -> 0x85a1), ack 1, win 4092, options [nop,nop,TS val 941371913 ecr 1340592084], length 0 -IP (tos 0x0, ttl 64, id 63178, offset 0, flags [DF], proto TCP (6), length 52, bad cksum 3e8c (->438c)!) - 204.9.64.80.55936 > 204.9.40.10.443: Flags [.], cksum 0x0594 (incorrect -> 0x8d67), ack 1, win 1040, options [nop,nop,TS val 647770294 ecr 2364773722], length 0 -IP (tos 0x0, ttl 64, id 36752, offset 0, flags [DF], proto TCP (6), length 399, bad cksum a46b (->a474)!) - 204.0.55.10.323 > 204.9.54.80.55936: Flags [P.], cksum 0xc9b6 (incorrect -> 0x4ba9), seq 0:347, ack 4294959105, win 1040, options [nop,nop,TS val 2364757411 ecr 3084508609], length 347 - RPKI-RTRv177, Unknown PDU (100), length: 60 - 0x0000: b164 003c 0000 003c 0000 00ff ff1f 1b70 - 0x0010: f857 ee68 4dfd 4d5f d9bd c709 30ac 8176 - 0x0020: b36d cc11 3abf 1291 f106 4ede 61f4 6297 - 0x0030: afc4 39a4 0db9 7aa5 6873 33e8 - RPKI-RTRv65, Error Report PDU (10), length: 66 - Error code: Unknown (66), Encapsulated PDU length: 100|trunc - RPKI-RTRv115, Error Report PDU (10), length: 66|trunc - [|RPKI-RTR] -EXIT CODE 00000100 diff --git a/tests/kday7.pcap b/tests/kday7.pcap deleted file mode 100644 index ec1da78..0000000 Binary files a/tests/kday7.pcap and /dev/null differ diff --git a/tests/kday8.out b/tests/kday8.out deleted file mode 100644 index 2d84b72..0000000 --- a/tests/kday8.out +++ /dev/null @@ -1,34 +0,0 @@ -CFMv0 unknown (204), MD Level 0, length 168 - First TLV offset 52 - 0x0000: a300 0000 0080 0000 0000 0000 0000 0000 - 0x0010: 0000 00aa 6873 54d7 060b 003c 0000 003c - 0x0020: d4c3 b2a1 0200 1a00 000b 003c 0000 003c - 0x0030: d4c3 b2a1 0200 1a00 0000 0000 3620 0a00 - 0x0040: b600 0000 b600 0000 40b5 9cbe 3048 0cc4 - 0x0050: ad37 1005 ffff 05cc 0934 9300 0000 0080 - 0x0060: fffa 0000 0000 3200 0000 0000 00aa 6873 - Port status TLV (0x02), length 26, Status: Unknown (0) - Unknown TLV (0x37), length 4101 - 0x0000: 3710 05ff ff05 cc09 3493 0000 0000 80ff - 0x0010: fa00 0000 0032 0000 0000 0000 aa68 7354 - 0x0020: d706 0b00 3c00 0000 3c00 0000 0080 0000 - 0x0030: fffd 4d5f d9bd c709 30ac 8176 b36d cc11 - 0x0040: 3abf 1291 f106 4ede 61f4 6297 afc4 39a4 - 0x0050: 0db9 7a -IP (tos 0x10, ttl 62, id 64806, offset 0, flags [DF], proto TCP (6), length 52) - 204.9.51.132.50079 > 204.9.54.80.22: Flags [.], cksum 0x8611 (incorrect -> 0xa678), ack 1819218606, win 4094, options [nop,nop,TS val 941371775 ecr 4294967242], length 0 -IP (tos 0x10, ttl 62, id 62920, offset 0, flags [DF], proto TCP (6), length 52, bad cksum 4504 (->451a)!) - 204.9.51.132.50079 > 204.243.53.80.22: Flags [.], cksum 0x858b (incorrect -> 0x85a1), ack 1819218722, win 4092, options [nop,nop,TS val 941371913 ecr 1340592084], length 0 -IP (tos 0x0, ttl 64, id 63178, offset 0, flags [DF], proto TCP (6), length 52, bad cksum 3e8c (->438c)!) - 204.9.64.80.55936 > 204.9.40.10.443: Flags [.], cksum 0x0594 (incorrect -> 0x7767), ack 3587398274, win 1040, options [nop,nop,TS val 647770294 ecr 2364779354], length 0 -IP (tos 0x0, ttl 64, id 36752, offset 0, flags [DF], proto TCP (6), length 399, bad cksum a46b (->a474)!) - 204.0.55.10.323 > 204.9.54.80.55936: Flags [P.], cksum 0xc9b6 (incorrect -> 0xed9b), seq 3589495407:3589495754, ack 370428050, win 1040, options [nop,nop,TS val 2364757411 ecr 3084508609], length 347 - RPKI-RTRv177, Unknown PDU (100), length: 60 - 0x0000: b164 003c 0000 003c 0000 00ff ff1f 1b70 - 0x0010: f857 ee68 4dfd 4d5f d9bd c709 30ac 8176 - 0x0020: b36d cc11 3abf 1291 f106 4ede 61f4 6297 - 0x0030: afc4 39a4 0db9 7aa5 6873 33e8 - RPKI-RTRv65, Error Report PDU (10), length: 66 - Error code: Unknown (66), Encapsulated PDU length: 80|trunc - [|RPKI-RTR] -EXIT CODE 00000100 diff --git a/tests/kday8.pcap b/tests/kday8.pcap deleted file mode 100644 index 83577f6..0000000 Binary files a/tests/kday8.pcap and /dev/null differ diff --git a/tests/lacp-ev.out b/tests/lacp-ev.out deleted file mode 100644 index 36ed753..0000000 --- a/tests/lacp-ev.out +++ /dev/null @@ -1,200 +0,0 @@ -00:13:c4:12:0f:0d > 01:80:c2:00:00:02, ethertype Slow Protocols (0x8809), length 124: LACPv1, length 110 - Actor Information TLV (0x01), length 20 - System 00:13:c4:12:0f:00, System Priority 32768, Key 13, Port 22, Port Priority 32768 - State Flags [Activity, Aggregation, Expired] - Partner Information TLV (0x02), length 20 - System 00:0e:83:16:f5:00, System Priority 32768, Key 13, Port 25, Port Priority 32768 - State Flags [Timeout, Aggregation, Collecting, Distributing] - Collector Information TLV (0x03), length 16 - Max Delay 32768 - Terminator TLV (0x00), length 0 -00:13:c4:12:0f:0d > 01:80:c2:00:00:02, ethertype Slow Protocols (0x8809), length 124: LACPv1, length 110 - Actor Information TLV (0x01), length 20 - System 00:13:c4:12:0f:00, System Priority 32768, Key 13, Port 22, Port Priority 32768 - State Flags [Activity, Aggregation, Expired] - Partner Information TLV (0x02), length 20 - System 00:0e:83:16:f5:00, System Priority 32768, Key 13, Port 25, Port Priority 32768 - State Flags [Timeout, Aggregation, Collecting, Distributing] - Collector Information TLV (0x03), length 16 - Max Delay 32768 - Terminator TLV (0x00), length 0 -00:13:c4:12:0f:0d > 01:80:c2:00:00:02, ethertype Slow Protocols (0x8809), length 124: LACPv1, length 110 - Actor Information TLV (0x01), length 20 - System 00:13:c4:12:0f:00, System Priority 32768, Key 13, Port 22, Port Priority 32768 - State Flags [Activity, Aggregation, Expired] - Partner Information TLV (0x02), length 20 - System 00:0e:83:16:f5:00, System Priority 32768, Key 13, Port 25, Port Priority 32768 - State Flags [Timeout, Aggregation, Collecting, Distributing] - Collector Information TLV (0x03), length 16 - Max Delay 32768 - Terminator TLV (0x00), length 0 -00:13:c4:12:0f:0d > 01:80:c2:00:00:02, ethertype Slow Protocols (0x8809), length 124: LACPv1, length 110 - Actor Information TLV (0x01), length 20 - System 00:13:c4:12:0f:00, System Priority 32768, Key 13, Port 22, Port Priority 32768 - State Flags [Activity, Aggregation, Synchronization, Default] - Partner Information TLV (0x02), length 20 - System 00:00:00:00:00:00, System Priority 0, Key 0, Port 0, Port Priority 0 - State Flags [none] - Collector Information TLV (0x03), length 16 - Max Delay 32768 - Terminator TLV (0x00), length 0 -00:13:c4:12:0f:0d > 01:80:c2:00:00:02, ethertype Slow Protocols (0x8809), length 124: LACPv1, length 110 - Actor Information TLV (0x01), length 20 - System 00:13:c4:12:0f:00, System Priority 32768, Key 13, Port 22, Port Priority 32768 - State Flags [Activity, Aggregation, Synchronization, Collecting, Distributing, Default] - Partner Information TLV (0x02), length 20 - System 00:00:00:00:00:00, System Priority 0, Key 0, Port 0, Port Priority 0 - State Flags [none] - Collector Information TLV (0x03), length 16 - Max Delay 32768 - Terminator TLV (0x00), length 0 -00:13:c4:12:0f:0d > 01:80:c2:00:00:02, ethertype Slow Protocols (0x8809), length 124: LACPv1, length 110 - Actor Information TLV (0x01), length 20 - System 00:13:c4:12:0f:00, System Priority 32768, Key 13, Port 22, Port Priority 32768 - State Flags [Activity, Aggregation, Synchronization, Collecting, Distributing, Default] - Partner Information TLV (0x02), length 20 - System 00:00:00:00:00:00, System Priority 0, Key 0, Port 0, Port Priority 0 - State Flags [none] - Collector Information TLV (0x03), length 16 - Max Delay 32768 - Terminator TLV (0x00), length 0 -00:13:c4:12:0f:0d > 01:80:c2:00:00:02, ethertype Slow Protocols (0x8809), length 124: LACPv1, length 110 - Actor Information TLV (0x01), length 20 - System 00:13:c4:12:0f:00, System Priority 32768, Key 13, Port 22, Port Priority 32768 - State Flags [Activity, Aggregation, Synchronization, Collecting, Distributing, Default] - Partner Information TLV (0x02), length 20 - System 00:00:00:00:00:00, System Priority 0, Key 0, Port 0, Port Priority 0 - State Flags [none] - Collector Information TLV (0x03), length 16 - Max Delay 32768 - Terminator TLV (0x00), length 0 -00:13:c4:12:0f:0d > 01:80:c2:00:00:02, ethertype Slow Protocols (0x8809), length 124: LACPv1, length 110 - Actor Information TLV (0x01), length 20 - System 00:13:c4:12:0f:00, System Priority 32768, Key 13, Port 22, Port Priority 32768 - State Flags [Activity, Aggregation, Synchronization, Collecting, Distributing, Default] - Partner Information TLV (0x02), length 20 - System 00:00:00:00:00:00, System Priority 0, Key 0, Port 0, Port Priority 0 - State Flags [none] - Collector Information TLV (0x03), length 16 - Max Delay 32768 - Terminator TLV (0x00), length 0 -00:0e:83:16:f5:10 > 01:80:c2:00:00:02, ethertype Slow Protocols (0x8809), length 124: LACPv1, length 110 - Actor Information TLV (0x01), length 20 - System 00:0e:83:16:f5:00, System Priority 32768, Key 13, Port 25, Port Priority 32768 - State Flags [Aggregation, Synchronization] - Partner Information TLV (0x02), length 20 - System 00:13:c4:12:0f:00, System Priority 32768, Key 13, Port 22, Port Priority 32768 - State Flags [Activity, Aggregation, Collecting, Distributing, Default] - Collector Information TLV (0x03), length 16 - Max Delay 32768 - Terminator TLV (0x00), length 0 -00:13:c4:12:0f:0d > 01:80:c2:00:00:02, ethertype Slow Protocols (0x8809), length 124: LACPv1, length 110 - Actor Information TLV (0x01), length 20 - System 00:13:c4:12:0f:00, System Priority 32768, Key 13, Port 22, Port Priority 32768 - State Flags [Activity, Aggregation, Synchronization, Default] - Partner Information TLV (0x02), length 20 - System 00:00:00:00:00:00, System Priority 0, Key 0, Port 0, Port Priority 0 - State Flags [none] - Collector Information TLV (0x03), length 16 - Max Delay 32768 - Terminator TLV (0x00), length 0 -00:13:c4:12:0f:0d > 01:80:c2:00:00:02, ethertype Slow Protocols (0x8809), length 124: LACPv1, length 110 - Actor Information TLV (0x01), length 20 - System 00:13:c4:12:0f:00, System Priority 32768, Key 13, Port 22, Port Priority 32768 - State Flags [Activity, Aggregation, Default] - Partner Information TLV (0x02), length 20 - System 00:00:00:00:00:00, System Priority 0, Key 0, Port 0, Port Priority 0 - State Flags [none] - Collector Information TLV (0x03), length 16 - Max Delay 32768 - Terminator TLV (0x00), length 0 -00:0e:83:16:f5:10 > 01:80:c2:00:00:02, ethertype Slow Protocols (0x8809), length 124: LACPv1, length 110 - Actor Information TLV (0x01), length 20 - System 00:0e:83:16:f5:00, System Priority 32768, Key 13, Port 25, Port Priority 32768 - State Flags [Aggregation] - Partner Information TLV (0x02), length 20 - System 00:13:c4:12:0f:00, System Priority 32768, Key 13, Port 22, Port Priority 32768 - State Flags [Activity, Aggregation, Collecting, Distributing, Default] - Collector Information TLV (0x03), length 16 - Max Delay 32768 - Terminator TLV (0x00), length 0 -00:0e:83:16:f5:10 > 01:80:c2:00:00:02, ethertype Slow Protocols (0x8809), length 124: LACPv1, length 110 - Actor Information TLV (0x01), length 20 - System 00:0e:83:16:f5:00, System Priority 32768, Key 13, Port 25, Port Priority 32768 - State Flags [Aggregation] - Partner Information TLV (0x02), length 20 - System 00:13:c4:12:0f:00, System Priority 32768, Key 13, Port 22, Port Priority 32768 - State Flags [Activity, Aggregation, Collecting, Distributing, Default] - Collector Information TLV (0x03), length 16 - Max Delay 32768 - Terminator TLV (0x00), length 0 -00:0e:83:16:f5:10 > 01:80:c2:00:00:02, ethertype Slow Protocols (0x8809), length 124: LACPv1, length 110 - Actor Information TLV (0x01), length 20 - System 00:0e:83:16:f5:00, System Priority 32768, Key 13, Port 25, Port Priority 32768 - State Flags [Aggregation] - Partner Information TLV (0x02), length 20 - System 00:13:c4:12:0f:00, System Priority 32768, Key 13, Port 22, Port Priority 32768 - State Flags [Activity, Aggregation, Default] - Collector Information TLV (0x03), length 16 - Max Delay 32768 - Terminator TLV (0x00), length 0 -00:0e:83:16:f5:10 > 01:80:c2:00:00:02, ethertype Slow Protocols (0x8809), length 124: LACPv1, length 110 - Actor Information TLV (0x01), length 20 - System 00:0e:83:16:f5:00, System Priority 32768, Key 13, Port 25, Port Priority 32768 - State Flags [Aggregation, Synchronization] - Partner Information TLV (0x02), length 20 - System 00:13:c4:12:0f:00, System Priority 32768, Key 13, Port 22, Port Priority 32768 - State Flags [Activity, Aggregation, Default] - Collector Information TLV (0x03), length 16 - Max Delay 32768 - Terminator TLV (0x00), length 0 -00:13:c4:12:0f:0d > 01:80:c2:00:00:02, ethertype Slow Protocols (0x8809), length 124: LACPv1, length 110 - Actor Information TLV (0x01), length 20 - System 00:13:c4:12:0f:00, System Priority 32768, Key 13, Port 22, Port Priority 32768 - State Flags [Activity, Aggregation, Synchronization] - Partner Information TLV (0x02), length 20 - System 00:0e:83:16:f5:00, System Priority 32768, Key 13, Port 25, Port Priority 32768 - State Flags [Aggregation, Synchronization] - Collector Information TLV (0x03), length 16 - Max Delay 32768 - Terminator TLV (0x00), length 0 -00:13:c4:12:0f:0d > 01:80:c2:00:00:02, ethertype Slow Protocols (0x8809), length 124: LACPv1, length 110 - Actor Information TLV (0x01), length 20 - System 00:13:c4:12:0f:00, System Priority 32768, Key 13, Port 22, Port Priority 32768 - State Flags [Activity, Aggregation, Synchronization, Collecting, Distributing] - Partner Information TLV (0x02), length 20 - System 00:0e:83:16:f5:00, System Priority 32768, Key 13, Port 25, Port Priority 32768 - State Flags [Aggregation, Synchronization] - Collector Information TLV (0x03), length 16 - Max Delay 32768 - Terminator TLV (0x00), length 0 -00:0e:83:16:f5:10 > 01:80:c2:00:00:02, ethertype Slow Protocols (0x8809), length 124: LACPv1, length 110 - Actor Information TLV (0x01), length 20 - System 00:0e:83:16:f5:00, System Priority 32768, Key 13, Port 25, Port Priority 32768 - State Flags [Aggregation, Synchronization, Collecting, Distributing] - Partner Information TLV (0x02), length 20 - System 00:13:c4:12:0f:00, System Priority 32768, Key 13, Port 22, Port Priority 32768 - State Flags [Activity, Aggregation, Synchronization] - Collector Information TLV (0x03), length 16 - Max Delay 32768 - Terminator TLV (0x00), length 0 -00:0e:83:16:f5:10 > 01:80:c2:00:00:02, ethertype Slow Protocols (0x8809), length 124: LACPv1, length 110 - Actor Information TLV (0x01), length 20 - System 00:0e:83:16:f5:00, System Priority 32768, Key 13, Port 25, Port Priority 32768 - State Flags [Aggregation, Synchronization, Collecting, Distributing] - Partner Information TLV (0x02), length 20 - System 00:13:c4:12:0f:00, System Priority 32768, Key 13, Port 22, Port Priority 32768 - State Flags [Activity, Aggregation, Synchronization, Collecting, Distributing] - Collector Information TLV (0x03), length 16 - Max Delay 32768 - Terminator TLV (0x00), length 0 -00:13:c4:12:0f:0d > 01:80:c2:00:00:02, ethertype Slow Protocols (0x8809), length 124: LACPv1, length 110 - Actor Information TLV (0x01), length 20 - System 00:13:c4:12:0f:00, System Priority 32768, Key 13, Port 22, Port Priority 32768 - State Flags [Activity, Aggregation, Synchronization, Collecting, Distributing] - Partner Information TLV (0x02), length 20 - System 00:0e:83:16:f5:00, System Priority 32768, Key 13, Port 25, Port Priority 32768 - State Flags [Aggregation, Synchronization, Collecting, Distributing] - Collector Information TLV (0x03), length 16 - Max Delay 32768 - Terminator TLV (0x00), length 0 diff --git a/tests/ldp-infinite-loop.pcap b/tests/ldp-infinite-loop.pcap deleted file mode 100644 index ea31f0c..0000000 Binary files a/tests/ldp-infinite-loop.pcap and /dev/null differ diff --git a/tests/ldp_infloop.out b/tests/ldp_infloop.out deleted file mode 100644 index 8c0a062..0000000 --- a/tests/ldp_infloop.out +++ /dev/null @@ -1,5 +0,0 @@ -IP 45.116.197.72.45307 > 192.168.1.1.646: -IP 90.6.30.91.34115 > 192.168.1.1.646: -IP 146.203.190.45.13504 > 192.168.1.1.646: -IP 67.199.76.127.18327 > 192.168.1.1.646: -IP 13.213.243.81.57100 > 192.168.1.1.646: diff --git a/tests/lisp_eid_notify.out b/tests/lisp_eid_notify.out deleted file mode 100644 index 43c5246..0000000 --- a/tests/lisp_eid_notify.out +++ /dev/null @@ -1,63 +0,0 @@ -IP (tos 0x0, ttl 64, id 1, offset 0, flags [none], proto UDP (17), length 160) - 192.168.0.105.4342 > 127.0.0.1.4342: LISP-Map-Notify, flags [none], - 3 record(s), Authentication SHA1, - Authentication-Data: 0x0000: 4bbb 9614 a67a 8604 0407 7995 4537 1906 - Authentication-Data: 0x0010: 836c d1d6 - Record TTL 1440, Authoritative, No-Action, Map Version: 0, EID 10.30.1.100/32, 1 locator(s) - LOC 20.20.8.253 - Priority/Weight 1/100, Multicast Priority/Weight 1/100, flags [none], - Record TTL 1440, Authoritative, No-Action, Map Version: 0, EID 10.30.1.96/32, 2 locator(s) - LOC 20.20.8.251 - Priority/Weight 1/100, Multicast Priority/Weight 1/100, flags [none], - LOC 20.20.8.252 - Priority/Weight 1/100, Multicast Priority/Weight 1/100, flags [none], - Record TTL 1440, Authoritative, No-Action, Map Version: 0, EID 10.30.1.80/32, 1 locator(s) - LOC 20.20.8.239 - Priority/Weight 1/100, Multicast Priority/Weight 1/100, flags [none], -IP (tos 0x0, ttl 64, id 1, offset 0, flags [none], proto UDP (17), length 156) - 192.168.0.105.4342 > 127.0.0.1.4342: LISP-Map-Notify, flags [I-xTR-ID-Present], - 2 record(s), Authentication SHA1, - Authentication-Data: 0x0000: 4bbb 9614 a67a 8604 0407 7995 4537 1906 - Authentication-Data: 0x0010: 836c d1d6 - Record TTL 1440, Authoritative, No-Action, Map Version: 0, EID 10.30.1.100/32, 1 locator(s) - LOC 20.20.8.253 - Priority/Weight 1/100, Multicast Priority/Weight 1/100, flags [none], - Record TTL 1440, Authoritative, No-Action, Map Version: 0, EID 10.30.1.96/32, 2 locator(s) - LOC 20.20.8.251 - Priority/Weight 1/100, Multicast Priority/Weight 1/100, flags [none], - LOC 20.20.8.252 - Priority/Weight 1/100, Multicast Priority/Weight 1/100, flags [none], - xTR-ID: 0x0000: 9787 ad75 3caf 58a7 13fa 6920 e6d2 7a8f - SITE-ID: 0 -IP (tos 0x0, ttl 64, id 1, offset 0, flags [none], proto UDP (17), length 160) - 192.168.0.105.4342 > 127.0.0.1.4342: LISP-Map-Notify, flags [I-xTR-ID-Present], - 3 record(s), Authentication SHA1, - Authentication-Data: 0x0000: 4bbb 9614 a67a 8604 0407 7995 4537 1906 - Authentication-Data: 0x0010: 836c d1d6 - Record TTL 1440, Authoritative, No-Action, Map Version: 0, EID 10.30.1.100/32, 1 locator(s) - LOC 20.20.8.253 - Priority/Weight 1/100, Multicast Priority/Weight 1/100, flags [none], - Record TTL 1440, Authoritative, No-Action, Map Version: 0, EID 10.30.1.96/32, 2 locator(s) - LOC 20.20.8.251 - Priority/Weight 1/100, Multicast Priority/Weight 1/100, flags [none], - LOC 20.20.8.252 - Priority/Weight 1/100, Multicast Priority/Weight 1/100, flags [none], - Record TTL 1440, Authoritative, No-Action, Map Version: 0, EID 10.30.1.80/32, 1 locator(s) - LOC 20.20.8.239 - Priority/Weight 1/100, Multicast Priority/Weight 1/100, flags [none], - (invalid) -IP (tos 0x0, ttl 64, id 1, offset 0, flags [none], proto UDP (17), length 156) - 192.168.0.105.4342 > 127.0.0.1.4342: LISP-Map-Notify, flags [none], - 2 record(s), Authentication SHA1, - Authentication-Data: 0x0000: 4bbb 9614 a67a 8604 0407 7995 4537 1906 - Authentication-Data: 0x0010: 836c d1d6 - Record TTL 1440, Authoritative, No-Action, Map Version: 0, EID 10.30.1.100/32, 1 locator(s) - LOC 20.20.8.253 - Priority/Weight 1/100, Multicast Priority/Weight 1/100, flags [none], - Record TTL 1440, Authoritative, No-Action, Map Version: 0, EID 10.30.1.96/32, 2 locator(s) - LOC 20.20.8.251 - Priority/Weight 1/100, Multicast Priority/Weight 1/100, flags [none], - LOC 20.20.8.252 - Priority/Weight 1/100, Multicast Priority/Weight 1/100, flags [none], - Data: 0x0000: 9787 ad75 3caf 58a7 13fa 6920 e6d2 7a8f - Data: 0x0010: 0000 0000 0000 0000 diff --git a/tests/lisp_eid_notify.pcap b/tests/lisp_eid_notify.pcap deleted file mode 100644 index 1f83378..0000000 Binary files a/tests/lisp_eid_notify.pcap and /dev/null differ diff --git a/tests/lisp_eid_register.out b/tests/lisp_eid_register.out deleted file mode 100644 index 7687b65..0000000 --- a/tests/lisp_eid_register.out +++ /dev/null @@ -1,28 +0,0 @@ -IP (tos 0x0, ttl 64, id 1, offset 0, flags [none], proto UDP (17), length 144) - 192.168.0.105.4342 > 127.0.0.1.4342: LISP-Map-Register, flags [I-xTR-ID-Present, M-Want-Map-Notify], - 2 record(s), Authentication SHA1, - Authentication-Data: 0x0000: 4bbb 9614 a67a 8604 0407 7995 4537 1906 - Authentication-Data: 0x0010: 836c d1d6 - Record TTL 1440, Authoritative, No-Action, Map Version: 0, EID 10.30.1.100/32, 1 locator(s) - LOC 20.20.8.253 - Priority/Weight 1/100, Multicast Priority/Weight 1/100, flags [none], - Record TTL 1440, Authoritative, No-Action, Map Version: 0, EID 10.30.1.96/32, 1 locator(s) - LOC 20.20.8.252 - Priority/Weight 1/100, Multicast Priority/Weight 1/100, flags [none], - xTR-ID: 0x0000: 9787 ad75 3caf 58a7 13fa 6920 e6d2 7a8f - SITE-ID: 0 -IP (tos 0x0, ttl 64, id 1, offset 0, flags [none], proto UDP (17), length 156) - 192.168.0.105.4342 > 127.0.0.1.4342: LISP-Map-Register, flags [I-xTR-ID-Present, M-Want-Map-Notify], - 2 record(s), Authentication SHA1, - Authentication-Data: 0x0000: 4bbb 9614 a67a 8604 0407 7995 4537 1906 - Authentication-Data: 0x0010: 836c d1d6 - Record TTL 1440, Authoritative, No-Action, Map Version: 0, EID 10.30.1.100/32, 1 locator(s) - LOC 20.20.8.253 - Priority/Weight 1/100, Multicast Priority/Weight 1/100, flags [none], - Record TTL 1440, Authoritative, No-Action, Map Version: 0, EID 10.30.1.96/32, 2 locator(s) - LOC 20.20.8.251 - Priority/Weight 1/100, Multicast Priority/Weight 1/100, flags [none], - LOC 20.20.8.252 - Priority/Weight 1/100, Multicast Priority/Weight 1/100, flags [none], - xTR-ID: 0x0000: 9787 ad75 3caf 58a7 13fa 6920 e6d2 7a8f - SITE-ID: 0 diff --git a/tests/lisp_eid_register.pcap b/tests/lisp_eid_register.pcap deleted file mode 100644 index a6d71ef..0000000 Binary files a/tests/lisp_eid_register.pcap and /dev/null differ diff --git a/tests/lisp_ipv6.out b/tests/lisp_ipv6.out deleted file mode 100644 index 39e84c3..0000000 --- a/tests/lisp_ipv6.out +++ /dev/null @@ -1,24 +0,0 @@ -IP (tos 0x0, ttl 64, id 1, offset 0, flags [none], proto UDP (17), length 168) - 192.168.0.105.4342 > 127.0.0.1.4342: LISP-Map-Register, flags [I-xTR-ID-Present, M-Want-Map-Notify], - 2 record(s), Authentication SHA1, - Authentication-Data: 0x0000: 4bbb 9614 a67a 8604 0407 7995 4537 1906 - Authentication-Data: 0x0010: 836c d1d6 - Record TTL 1440, Authoritative, No-Action, Map Version: 0, EID 2001:db8:85a3::8a2e:370:7334/80, 1 locator(s) - LOC 20.20.8.253 - Priority/Weight 1/100, Multicast Priority/Weight 1/100, flags [none], - Record TTL 1440, Authoritative, No-Action, Map Version: 0, EID 2001:db8:95a3::8a2e:370:7334/80, 1 locator(s) - LOC 20.20.8.251 - Priority/Weight 1/100, Multicast Priority/Weight 1/100, flags [none], - xTR-ID: 0x0000: 9787 ad75 3caf 58a7 13fa 6920 e6d2 7a8f - SITE-ID: 0 -IP (tos 0x0, ttl 64, id 1, offset 0, flags [none], proto UDP (17), length 144) - 192.168.0.105.4342 > 127.0.0.1.4342: LISP-Map-Notify, flags [none], - 2 record(s), Authentication SHA1, - Authentication-Data: 0x0000: 4bbb 9614 a67a 8604 0407 7995 4537 1906 - Authentication-Data: 0x0010: 836c d1d6 - Record TTL 1440, Authoritative, No-Action, Map Version: 0, EID 2001:db8:85a3::8a2e:370:7334/80, 1 locator(s) - LOC 20.20.8.253 - Priority/Weight 1/100, Multicast Priority/Weight 1/100, flags [none], - Record TTL 1440, Authoritative, No-Action, Map Version: 0, EID 2001:db8:95a3::8a2e:370:7334/80, 1 locator(s) - LOC 20.20.8.251 - Priority/Weight 1/100, Multicast Priority/Weight 1/100, flags [none], diff --git a/tests/lisp_ipv6.pcap b/tests/lisp_ipv6.pcap deleted file mode 100644 index b878efd..0000000 Binary files a/tests/lisp_ipv6.pcap and /dev/null differ diff --git a/tests/lldp_cdp-ev.out b/tests/lldp_cdp-ev.out deleted file mode 100644 index 0029a75..0000000 --- a/tests/lldp_cdp-ev.out +++ /dev/null @@ -1,252 +0,0 @@ -00:18:ba:98:68:8f > 01:00:0c:cc:cc:cc, 802.3, length 374: LLC, dsap SNAP (0xaa) Individual, ssap SNAP (0xaa) Command, ctrl 0x03: oui Cisco (0x00000c), pid CDP (0x2000), length 366: CDPv2, ttl: 180s, checksum: 0x0bea (unverified), length 366 - Device-ID (0x01), value length: 2 bytes: 'S1' - Version String (0x05), value length: 190 bytes: - Cisco IOS Software, C3560 Software (C3560-ADVIPSERVICESK9-M), Version 12.2(44)SE, RELEASE SOFTWARE (fc1) - Copyright (c) 1986-2008 by Cisco Systems, Inc. - Compiled Sat 05-Jan-08 00:15 by weiliu - Platform (0x06), value length: 19 bytes: 'cisco WS-C3560-24TS' - Address (0x02), value length: 13 bytes: IPv4 (1) 0.0.0.0 - Port-ID (0x03), value length: 16 bytes: 'FastEthernet0/13' - Capability (0x04), value length: 4 bytes: (0x00000028): L2 Switch, IGMP snooping - Protocol-Hello option (0x08), value length: 32 bytes: - VTP Management Domain (0x09), value length: 0 bytes: '' - Native VLAN ID (0x0a), value length: 2 bytes: 1 - Duplex (0x0b), value length: 1 byte: full - AVVID trust bitmap (0x12), value length: 1 byte: 0x00 - AVVID untrusted ports CoS (0x13), value length: 1 byte: 0x00 - Management Addresses (0x16), value length: 13 bytes: IPv4 (1) 0.0.0.0 - unknown field type (0x1a), value length: 12 bytes: - 0x0000: 0000 0001 0000 0000 ffff ffff -00:19:2f:a7:b2:8d > 01:00:0c:cc:cc:cc, 802.3, length 378: LLC, dsap SNAP (0xaa) Individual, ssap SNAP (0xaa) Command, ctrl 0x03: oui Cisco (0x00000c), pid CDP (0x2000), length 370: CDPv2, ttl: 180s, checksum: 0x971d (unverified), length 370 - Device-ID (0x01), value length: 2 bytes: 'S2' - Version String (0x05), value length: 190 bytes: - Cisco IOS Software, C3560 Software (C3560-ADVIPSERVICESK9-M), Version 12.2(44)SE, RELEASE SOFTWARE (fc1) - Copyright (c) 1986-2008 by Cisco Systems, Inc. - Compiled Sat 05-Jan-08 00:15 by weiliu - Platform (0x06), value length: 20 bytes: 'cisco WS-C3560G-24PS' - Address (0x02), value length: 13 bytes: IPv4 (1) 0.0.0.0 - Port-ID (0x03), value length: 19 bytes: 'GigabitEthernet0/13' - Capability (0x04), value length: 4 bytes: (0x00000028): L2 Switch, IGMP snooping - Protocol-Hello option (0x08), value length: 32 bytes: - VTP Management Domain (0x09), value length: 0 bytes: '' - Native VLAN ID (0x0a), value length: 2 bytes: 1 - Duplex (0x0b), value length: 1 byte: full - AVVID trust bitmap (0x12), value length: 1 byte: 0x00 - AVVID untrusted ports CoS (0x13), value length: 1 byte: 0x00 - Management Addresses (0x16), value length: 13 bytes: IPv4 (1) 0.0.0.0 - unknown field type (0x1a), value length: 12 bytes: - 0x0000: 0000 0001 0000 0000 ffff ffff -00:19:2f:a7:b2:8d > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 296: LLDP, length 282 - Chassis ID TLV (1), length 7 - Subtype MAC address (4): 00:19:2f:a7:b2:8d - Port ID TLV (2), length 13 - Subtype Interface alias (1): Uplink to S1 - Time to Live TLV (3), length 2: TTL 120s - System Name TLV (5), length 12: S2.cisco.com - System Description TLV (6), length 190 - Cisco IOS Software, C3560 Software (C3560-ADVIPSERVICESK9-M), Version 12.2(44)SE, RELEASE SOFTWARE (fc1)\0x0aCopyright (c) 1986-2008 by Cisco Systems, Inc.\0x0aCompiled Sat 05-Jan-08 00:15 by weiliu - Port Description TLV (4), length 19: GigabitEthernet0/13 - System Capabilities TLV (7), length 4 - System Capabilities [Bridge, Router] (0x0014) - Enabled Capabilities [Bridge] (0x0004) - Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) - Port VLAN Id Subtype (1) - port vlan id (PVID): 1 - Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) - MAC/PHY configuration/status Subtype (1) - autonegotiation [supported, enabled] (0x03) - PMD autoneg capability [10BASE-T hdx, Sym PAUSE for fdx, Asym and Sym PAUSE for fdx, 1000BASE-{X LX SX CX} fdx, 1000BASE-T hdx] (0xc036) - MAU type 100BASETX fdx (0x0010) - End TLV (0), length 0 -00:18:ba:98:68:8f > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 287: LLDP, length 273 - Chassis ID TLV (1), length 7 - Subtype MAC address (4): 00:18:ba:98:68:8f - Port ID TLV (2), length 7 - Subtype Local (7): Fa0/13 - Time to Live TLV (3), length 2: TTL 120s - System Name TLV (5), length 12: S1.cisco.com - System Description TLV (6), length 190 - Cisco IOS Software, C3560 Software (C3560-ADVIPSERVICESK9-M), Version 12.2(44)SE, RELEASE SOFTWARE (fc1)\0x0aCopyright (c) 1986-2008 by Cisco Systems, Inc.\0x0aCompiled Sat 05-Jan-08 00:15 by weiliu - Port Description TLV (4), length 16: FastEthernet0/13 - System Capabilities TLV (7), length 4 - System Capabilities [Bridge, Router] (0x0014) - Enabled Capabilities [Bridge] (0x0004) - Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) - Port VLAN Id Subtype (1) - port vlan id (PVID): 1 - Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) - MAC/PHY configuration/status Subtype (1) - autonegotiation [supported, enabled] (0x03) - PMD autoneg capability [Sym PAUSE for fdx, Asym and Sym PAUSE for fdx, 1000BASE-{X LX SX CX} fdx, 1000BASE-T hdx] (0x0036) - MAU type 100BASETX fdx (0x0010) - End TLV (0), length 0 -00:19:2f:a7:b2:8d > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 296: LLDP, length 282 - Chassis ID TLV (1), length 7 - Subtype MAC address (4): 00:19:2f:a7:b2:8d - Port ID TLV (2), length 13 - Subtype Interface alias (1): Uplink to S1 - Time to Live TLV (3), length 2: TTL 120s - System Name TLV (5), length 12: S2.cisco.com - System Description TLV (6), length 190 - Cisco IOS Software, C3560 Software (C3560-ADVIPSERVICESK9-M), Version 12.2(44)SE, RELEASE SOFTWARE (fc1)\0x0aCopyright (c) 1986-2008 by Cisco Systems, Inc.\0x0aCompiled Sat 05-Jan-08 00:15 by weiliu - Port Description TLV (4), length 19: GigabitEthernet0/13 - System Capabilities TLV (7), length 4 - System Capabilities [Bridge, Router] (0x0014) - Enabled Capabilities [Bridge] (0x0004) - Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) - Port VLAN Id Subtype (1) - port vlan id (PVID): 1 - Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) - MAC/PHY configuration/status Subtype (1) - autonegotiation [supported, enabled] (0x03) - PMD autoneg capability [10BASE-T hdx, Sym PAUSE for fdx, Asym and Sym PAUSE for fdx, 1000BASE-{X LX SX CX} fdx, 1000BASE-T hdx] (0xc036) - MAU type 100BASETX fdx (0x0010) - End TLV (0), length 0 -00:18:ba:98:68:8f > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 287: LLDP, length 273 - Chassis ID TLV (1), length 7 - Subtype MAC address (4): 00:18:ba:98:68:8f - Port ID TLV (2), length 7 - Subtype Local (7): Fa0/13 - Time to Live TLV (3), length 2: TTL 120s - System Name TLV (5), length 12: S1.cisco.com - System Description TLV (6), length 190 - Cisco IOS Software, C3560 Software (C3560-ADVIPSERVICESK9-M), Version 12.2(44)SE, RELEASE SOFTWARE (fc1)\0x0aCopyright (c) 1986-2008 by Cisco Systems, Inc.\0x0aCompiled Sat 05-Jan-08 00:15 by weiliu - Port Description TLV (4), length 16: FastEthernet0/13 - System Capabilities TLV (7), length 4 - System Capabilities [Bridge, Router] (0x0014) - Enabled Capabilities [Bridge] (0x0004) - Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) - Port VLAN Id Subtype (1) - port vlan id (PVID): 1 - Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) - MAC/PHY configuration/status Subtype (1) - autonegotiation [supported, enabled] (0x03) - PMD autoneg capability [Sym PAUSE for fdx, Asym and Sym PAUSE for fdx, 1000BASE-{X LX SX CX} fdx, 1000BASE-T hdx] (0x0036) - MAU type 100BASETX fdx (0x0010) - End TLV (0), length 0 -00:18:ba:98:68:8f > 01:00:0c:cc:cc:cc, 802.3, length 374: LLC, dsap SNAP (0xaa) Individual, ssap SNAP (0xaa) Command, ctrl 0x03: oui Cisco (0x00000c), pid CDP (0x2000), length 366: CDPv2, ttl: 180s, checksum: 0x0be9 (unverified), length 366 - Device-ID (0x01), value length: 2 bytes: 'S1' - Version String (0x05), value length: 190 bytes: - Cisco IOS Software, C3560 Software (C3560-ADVIPSERVICESK9-M), Version 12.2(44)SE, RELEASE SOFTWARE (fc1) - Copyright (c) 1986-2008 by Cisco Systems, Inc. - Compiled Sat 05-Jan-08 00:15 by weiliu - Platform (0x06), value length: 19 bytes: 'cisco WS-C3560-24TS' - Address (0x02), value length: 13 bytes: IPv4 (1) 0.0.0.0 - Port-ID (0x03), value length: 16 bytes: 'FastEthernet0/13' - Capability (0x04), value length: 4 bytes: (0x00000028): L2 Switch, IGMP snooping - Protocol-Hello option (0x08), value length: 32 bytes: - VTP Management Domain (0x09), value length: 0 bytes: '' - Native VLAN ID (0x0a), value length: 2 bytes: 1 - Duplex (0x0b), value length: 1 byte: full - AVVID trust bitmap (0x12), value length: 1 byte: 0x00 - AVVID untrusted ports CoS (0x13), value length: 1 byte: 0x00 - Management Addresses (0x16), value length: 13 bytes: IPv4 (1) 0.0.0.0 - unknown field type (0x1a), value length: 12 bytes: - 0x0000: 0000 0001 0000 0000 ffff ffff -00:19:2f:a7:b2:8d > 01:00:0c:cc:cc:cc, 802.3, length 378: LLC, dsap SNAP (0xaa) Individual, ssap SNAP (0xaa) Command, ctrl 0x03: oui Cisco (0x00000c), pid CDP (0x2000), length 370: CDPv2, ttl: 180s, checksum: 0x971c (unverified), length 370 - Device-ID (0x01), value length: 2 bytes: 'S2' - Version String (0x05), value length: 190 bytes: - Cisco IOS Software, C3560 Software (C3560-ADVIPSERVICESK9-M), Version 12.2(44)SE, RELEASE SOFTWARE (fc1) - Copyright (c) 1986-2008 by Cisco Systems, Inc. - Compiled Sat 05-Jan-08 00:15 by weiliu - Platform (0x06), value length: 20 bytes: 'cisco WS-C3560G-24PS' - Address (0x02), value length: 13 bytes: IPv4 (1) 0.0.0.0 - Port-ID (0x03), value length: 19 bytes: 'GigabitEthernet0/13' - Capability (0x04), value length: 4 bytes: (0x00000028): L2 Switch, IGMP snooping - Protocol-Hello option (0x08), value length: 32 bytes: - VTP Management Domain (0x09), value length: 0 bytes: '' - Native VLAN ID (0x0a), value length: 2 bytes: 1 - Duplex (0x0b), value length: 1 byte: full - AVVID trust bitmap (0x12), value length: 1 byte: 0x00 - AVVID untrusted ports CoS (0x13), value length: 1 byte: 0x00 - Management Addresses (0x16), value length: 13 bytes: IPv4 (1) 0.0.0.0 - unknown field type (0x1a), value length: 12 bytes: - 0x0000: 0000 0001 0000 0000 ffff ffff -00:19:2f:a7:b2:8d > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 296: LLDP, length 282 - Chassis ID TLV (1), length 7 - Subtype MAC address (4): 00:19:2f:a7:b2:8d - Port ID TLV (2), length 13 - Subtype Interface alias (1): Uplink to S1 - Time to Live TLV (3), length 2: TTL 120s - System Name TLV (5), length 12: S2.cisco.com - System Description TLV (6), length 190 - Cisco IOS Software, C3560 Software (C3560-ADVIPSERVICESK9-M), Version 12.2(44)SE, RELEASE SOFTWARE (fc1)\0x0aCopyright (c) 1986-2008 by Cisco Systems, Inc.\0x0aCompiled Sat 05-Jan-08 00:15 by weiliu - Port Description TLV (4), length 19: GigabitEthernet0/13 - System Capabilities TLV (7), length 4 - System Capabilities [Bridge, Router] (0x0014) - Enabled Capabilities [Bridge] (0x0004) - Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) - Port VLAN Id Subtype (1) - port vlan id (PVID): 1 - Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) - MAC/PHY configuration/status Subtype (1) - autonegotiation [supported, enabled] (0x03) - PMD autoneg capability [10BASE-T hdx, Sym PAUSE for fdx, Asym and Sym PAUSE for fdx, 1000BASE-{X LX SX CX} fdx, 1000BASE-T hdx] (0xc036) - MAU type 100BASETX fdx (0x0010) - End TLV (0), length 0 -00:18:ba:98:68:8f > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 287: LLDP, length 273 - Chassis ID TLV (1), length 7 - Subtype MAC address (4): 00:18:ba:98:68:8f - Port ID TLV (2), length 7 - Subtype Local (7): Fa0/13 - Time to Live TLV (3), length 2: TTL 120s - System Name TLV (5), length 12: S1.cisco.com - System Description TLV (6), length 190 - Cisco IOS Software, C3560 Software (C3560-ADVIPSERVICESK9-M), Version 12.2(44)SE, RELEASE SOFTWARE (fc1)\0x0aCopyright (c) 1986-2008 by Cisco Systems, Inc.\0x0aCompiled Sat 05-Jan-08 00:15 by weiliu - Port Description TLV (4), length 16: FastEthernet0/13 - System Capabilities TLV (7), length 4 - System Capabilities [Bridge, Router] (0x0014) - Enabled Capabilities [Bridge] (0x0004) - Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) - Port VLAN Id Subtype (1) - port vlan id (PVID): 1 - Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) - MAC/PHY configuration/status Subtype (1) - autonegotiation [supported, enabled] (0x03) - PMD autoneg capability [Sym PAUSE for fdx, Asym and Sym PAUSE for fdx, 1000BASE-{X LX SX CX} fdx, 1000BASE-T hdx] (0x0036) - MAU type 100BASETX fdx (0x0010) - End TLV (0), length 0 -00:19:2f:a7:b2:8d > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 296: LLDP, length 282 - Chassis ID TLV (1), length 7 - Subtype MAC address (4): 00:19:2f:a7:b2:8d - Port ID TLV (2), length 13 - Subtype Interface alias (1): Uplink to S1 - Time to Live TLV (3), length 2: TTL 120s - System Name TLV (5), length 12: S2.cisco.com - System Description TLV (6), length 190 - Cisco IOS Software, C3560 Software (C3560-ADVIPSERVICESK9-M), Version 12.2(44)SE, RELEASE SOFTWARE (fc1)\0x0aCopyright (c) 1986-2008 by Cisco Systems, Inc.\0x0aCompiled Sat 05-Jan-08 00:15 by weiliu - Port Description TLV (4), length 19: GigabitEthernet0/13 - System Capabilities TLV (7), length 4 - System Capabilities [Bridge, Router] (0x0014) - Enabled Capabilities [Bridge] (0x0004) - Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) - Port VLAN Id Subtype (1) - port vlan id (PVID): 1 - Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) - MAC/PHY configuration/status Subtype (1) - autonegotiation [supported, enabled] (0x03) - PMD autoneg capability [10BASE-T hdx, Sym PAUSE for fdx, Asym and Sym PAUSE for fdx, 1000BASE-{X LX SX CX} fdx, 1000BASE-T hdx] (0xc036) - MAU type 100BASETX fdx (0x0010) - End TLV (0), length 0 -00:18:ba:98:68:8f > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 287: LLDP, length 273 - Chassis ID TLV (1), length 7 - Subtype MAC address (4): 00:18:ba:98:68:8f - Port ID TLV (2), length 7 - Subtype Local (7): Fa0/13 - Time to Live TLV (3), length 2: TTL 120s - System Name TLV (5), length 12: S1.cisco.com - System Description TLV (6), length 190 - Cisco IOS Software, C3560 Software (C3560-ADVIPSERVICESK9-M), Version 12.2(44)SE, RELEASE SOFTWARE (fc1)\0x0aCopyright (c) 1986-2008 by Cisco Systems, Inc.\0x0aCompiled Sat 05-Jan-08 00:15 by weiliu - Port Description TLV (4), length 16: FastEthernet0/13 - System Capabilities TLV (7), length 4 - System Capabilities [Bridge, Router] (0x0014) - Enabled Capabilities [Bridge] (0x0004) - Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) - Port VLAN Id Subtype (1) - port vlan id (PVID): 1 - Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) - MAC/PHY configuration/status Subtype (1) - autonegotiation [supported, enabled] (0x03) - PMD autoneg capability [Sym PAUSE for fdx, Asym and Sym PAUSE for fdx, 1000BASE-{X LX SX CX} fdx, 1000BASE-T hdx] (0x0036) - MAU type 100BASETX fdx (0x0010) - End TLV (0), length 0 diff --git a/tests/lmp-v.out b/tests/lmp-v.out deleted file mode 100644 index fcd3bed..0000000 --- a/tests/lmp-v.out +++ /dev/null @@ -1,200 +0,0 @@ -IP (tos 0x0, ttl 1, id 44530, offset 0, flags [none], proto UDP (17), length 84) - 10.0.12.1.49998 > 10.0.12.2.49998: - LMPv1, msg-type: Begin Verify, Flags: [none], length: 56 - Link ID Object (3), Class-Type: IPv4 Local (1) Flags: [non-negotiable], length: 8 - IPv4 Link ID: 1.0.0.0 (0x01000000) - Message ID Object (5), Class-Type: 1 (1) Flags: [non-negotiable], length: 8 - Message ID: 3 (0x00000003) - Link ID Object (3), Class-Type: IPv4 Remote (2) Flags: [non-negotiable], length: 8 - IPv4 Link ID: 1.0.0.0 (0x01000000) - Verify Begin Object (8), Class-Type: 1 (1) Flags: [negotiable], length: 24 - Flags: none - Verify Interval: 20 - Data links: 30 - Encoding type: Lambda (photonic) - Verify Transport Mechanism: 32768 (0x8000) - Transmission Rate: 0.001 Mbps - Wavelength: 8 -IP (tos 0x0, ttl 1, id 44531, offset 0, flags [none], proto UDP (17), length 56) - 10.0.12.1.49998 > 10.0.12.2.49998: - LMPv1, msg-type: Hello, Flags: [none], length: 28 - Control Channel ID Object (1), Class-Type: Local (1) Flags: [non-negotiable], length: 8 - Control Channel ID: 1 (0x00000001) - Hello Object (7), Class-Type: 1 (1) Flags: [non-negotiable], length: 12 - Tx Seq: 50, Rx Seq: 60 -IP (tos 0x0, ttl 1, id 44532, offset 0, flags [none], proto UDP (17), length 84) - 10.0.12.1.49998 > 10.0.12.2.49998: - LMPv1, msg-type: Config NACK, Flags: [none], length: 56 - Control Channel ID Object (1), Class-Type: Local (1) Flags: [non-negotiable], length: 8 - Control Channel ID: 1 (0x00000001) - Node ID Object (2), Class-Type: Local (1) Flags: [non-negotiable], length: 8 - Node ID: 10.0.50.1 (0x0a003201) - Control Channel ID Object (1), Class-Type: Remote (2) Flags: [non-negotiable], length: 8 - Control Channel ID: 2 (0x00000002) - Message ID Object (5), Class-Type: 2 (2) Flags: [non-negotiable], length: 8 - Message ID Ack: 3 (0x00000003) - Node ID Object (2), Class-Type: Remote (2) Flags: [non-negotiable], length: 8 - Node ID: 10.0.50.2 (0x0a003202) - Configuration Object (6), Class-Type: 1 (1) Flags: [negotiable], length: 8 - Hello Interval: 5 - Hello Dead Interval: 15 -IP (tos 0x0, ttl 1, id 44533, offset 0, flags [none], proto UDP (17), length 76) - 10.0.12.1.49998 > 10.0.12.2.49998: - LMPv1, msg-type: Config ACK, Flags: [none], length: 48 - Control Channel ID Object (1), Class-Type: Local (1) Flags: [non-negotiable], length: 8 - Control Channel ID: 1 (0x00000001) - Node ID Object (2), Class-Type: Local (1) Flags: [non-negotiable], length: 8 - Node ID: 10.0.50.1 (0x0a003201) - Control Channel ID Object (1), Class-Type: Remote (2) Flags: [non-negotiable], length: 8 - Control Channel ID: 2 (0x00000002) - Message ID Object (5), Class-Type: 2 (2) Flags: [non-negotiable], length: 8 - Message ID Ack: 3 (0x00000003) - Node ID Object (2), Class-Type: Remote (2) Flags: [non-negotiable], length: 8 - Node ID: 10.0.50.2 (0x0a003202) -IP (tos 0x0, ttl 1, id 44534, offset 0, flags [none], proto UDP (17), length 68) - 10.0.12.1.49998 > 10.0.12.2.49998: - LMPv1, msg-type: Config, Flags: [none], length: 40 - Control Channel ID Object (1), Class-Type: Local (1) Flags: [non-negotiable], length: 8 - Control Channel ID: 1 (0x00000001) - Message ID Object (5), Class-Type: 1 (1) Flags: [non-negotiable], length: 8 - Message ID: 3 (0x00000003) - Node ID Object (2), Class-Type: Local (1) Flags: [non-negotiable], length: 8 - Node ID: 10.0.50.1 (0x0a003201) - Configuration Object (6), Class-Type: 1 (1) Flags: [negotiable], length: 8 - Hello Interval: 5 - Hello Dead Interval: 15 -IP (tos 0x0, ttl 1, id 44535, offset 0, flags [none], proto UDP (17), length 44) - 10.0.12.1.49998 > 10.0.12.2.49998: - LMPv1, msg-type: Link Summary ACK, Flags: [none], length: 16 - Message ID Object (5), Class-Type: 2 (2) Flags: [non-negotiable], length: 8 - Message ID Ack: 1 (0x00000001) -IP (tos 0x0, ttl 1, id 44536, offset 0, flags [none], proto UDP (17), length 124) - 10.0.12.1.49998 > 10.0.12.2.49998: - LMPv1, msg-type: Link Summary NACK, Flags: [none], length: 96 - Message ID Object (5), Class-Type: 2 (2) Flags: [non-negotiable], length: 8 - Message ID Ack: 1 (0x00000001) - Error Code Object (20), Class-Type: 2 (2) Flags: [non-negotiable], length: 8 - Error Code: Unacceptable non-negotiable LINK-SUMMARY parameters, Renegotiate LINK-SUMMARY parameters, Invalid DATA-LINK Object, Unknown TE-LINK Object c-type, Unknown DATA-LINK Object c-type - Data Link Object (12), Class-Type: IPv4 (1) Flags: [non-negotiable], length: 36 - Flags: [none] - Local Interface ID: 192.168.1.1 (0xc0a80101) - Remote Interface ID: 192.168.1.2 (0xc0a80102) - Subobject, Type: Interface Switching Type (1), Length: 12 - Switching Type: Lambda-Switch Capable (150) - Encoding Type: Lambda (photonic) (8) - Min Reservable Bandwidth: 0.001 Mbps - Max Reservable Bandwidth: 0.001 Mbps - Subobject, Type: Wavelength (2), Length: 8 - Wavelength: 6 - Data Link Object (12), Class-Type: IPv4 (1) Flags: [non-negotiable], length: 36 - Flags: [none] - Local Interface ID: 10.1.1.1 (0x0a010101) - Remote Interface ID: 10.1.1.2 (0x0a010102) - Subobject, Type: Interface Switching Type (1), Length: 12 - Switching Type: Lambda-Switch Capable (150) - Encoding Type: ANSI/ETSI PDH (3) - Min Reservable Bandwidth: 9877.895 Mbps - Max Reservable Bandwidth: 10325.547 Mbps - Subobject, Type: Wavelength (2), Length: 8 - Wavelength: 353 -IP (tos 0x0, ttl 1, id 44537, offset 0, flags [none], proto UDP (17), length 68) - 10.0.12.1.49998 > 10.0.12.2.49998: - LMPv1, msg-type: Begin Verify ACK, Flags: [none], length: 40 - Link ID Object (3), Class-Type: IPv4 Local (1) Flags: [non-negotiable], length: 8 - IPv4 Link ID: 1.0.0.0 (0x01000000) - Message ID Object (5), Class-Type: 2 (2) Flags: [non-negotiable], length: 8 - Message ID Ack: 1 (0x00000001) - Verify Begin ACK Object (9), Class-Type: 1 (1) Flags: [negotiable], length: 8 - Verify Dead Interval: 50 - Verify Transport Response: 100 - Verify ID Object (10), Class-Type: 1 (1) Flags: [non-negotiable], length: 8 - Verify ID: 5 -IP (tos 0x0, ttl 1, id 44538, offset 0, flags [none], proto UDP (17), length 60) - 10.0.12.1.49998 > 10.0.12.2.49998: - LMPv1, msg-type: Begin Verify NACK, Flags: [none], length: 32 - Link ID Object (3), Class-Type: IPv4 Local (1) Flags: [non-negotiable], length: 8 - IPv4 Link ID: 10.0.0.0 (0x0a000000) - Message ID Object (5), Class-Type: 2 (2) Flags: [non-negotiable], length: 8 - Message ID Ack: 3 (0x00000003) - Error Code Object (20), Class-Type: 1 (1) Flags: [non-negotiable], length: 8 - Error Code: Link Verification Procedure Not supported, Unwilling to verify, Unsupported verification transport mechanism -IP (tos 0x0, ttl 1, id 44539, offset 0, flags [none], proto UDP (17), length 52) - 10.0.12.1.49998 > 10.0.12.2.49998: - LMPv1, msg-type: End Verify, Flags: [none], length: 24 - Message ID Object (5), Class-Type: 1 (1) Flags: [non-negotiable], length: 8 - Message ID: 3 (0x00000003) - Verify ID Object (10), Class-Type: 1 (1) Flags: [non-negotiable], length: 8 - Verify ID: 5 -IP (tos 0x0, ttl 1, id 44540, offset 0, flags [none], proto UDP (17), length 52) - 10.0.12.1.49998 > 10.0.12.2.49998: - LMPv1, msg-type: End Verify ACK, Flags: [none], length: 24 - Message ID Object (5), Class-Type: 2 (2) Flags: [non-negotiable], length: 8 - Message ID Ack: 3 (0x00000003) - Verify ID Object (10), Class-Type: 1 (1) Flags: [non-negotiable], length: 8 - Verify ID: 5 -IP (tos 0x0, ttl 1, id 44541, offset 0, flags [none], proto UDP (17), length 52) - 10.0.12.1.49998 > 10.0.12.2.49998: - LMPv1, msg-type: Test, Flags: [none], length: 24 - Interface ID Object (4), Class-Type: IPv4 Local (1) Flags: [non-negotiable], length: 8 - IPv4 Link ID: 1.0.0.0 (0x01000000) - Verify ID Object (10), Class-Type: 1 (1) Flags: [non-negotiable], length: 8 - Verify ID: 5 -IP (tos 0x0, ttl 1, id 44542, offset 0, flags [none], proto UDP (17), length 52) - 10.0.12.1.49998 > 10.0.12.2.49998: - LMPv1, msg-type: Test Status Failure, Flags: [none], length: 24 - Message ID Object (5), Class-Type: 1 (1) Flags: [non-negotiable], length: 8 - Message ID: 1 (0x00000001) - Verify ID Object (10), Class-Type: 1 (1) Flags: [non-negotiable], length: 8 - Verify ID: 5 -IP (tos 0x0, ttl 1, id 44543, offset 0, flags [none], proto UDP (17), length 52) - 10.0.12.1.49998 > 10.0.12.2.49998: - LMPv1, msg-type: Test Status ACK, Flags: [none], length: 24 - Message ID Object (5), Class-Type: 2 (2) Flags: [non-negotiable], length: 8 - Message ID Ack: 1 (0x00000001) - Verify ID Object (10), Class-Type: 1 (1) Flags: [non-negotiable], length: 8 - Verify ID: 5 -IP (tos 0x0, ttl 1, id 44544, offset 0, flags [none], proto UDP (17), length 44) - 10.0.12.1.49998 > 10.0.12.2.49998: - LMPv1, msg-type: Channel Status ACK, Flags: [none], length: 16 - Message ID Object (5), Class-Type: 2 (2) Flags: [non-negotiable], length: 8 - Message ID Ack: 3 (0x00000003) -IP (tos 0x0, ttl 1, id 44545, offset 0, flags [none], proto UDP (17), length 64) - 10.0.12.1.49998 > 10.0.12.2.49998: - LMPv1, msg-type: Channel Status Request, Flags: [none], length: 36 - Link ID Object (3), Class-Type: IPv4 Local (1) Flags: [non-negotiable], length: 8 - IPv4 Link ID: 1.0.0.0 (0x01000000) - Message ID Object (5), Class-Type: 1 (1) Flags: [non-negotiable], length: 8 - Message ID: 3 (0x00000003) - Channel Status Request Object (14), Class-Type: IPv4 (1) Flags: [non-negotiable], length: 12 - Interface ID: 2.0.0.0 (0x02000000) - Interface ID: 2.0.0.0 (0x02000000) -IP (tos 0x0, ttl 1, id 44546, offset 0, flags [none], proto UDP (17), length 72) - 10.0.12.1.49998 > 10.0.12.2.49998: - LMPv1, msg-type: Channel Status, Flags: [none], length: 44 - Link ID Object (3), Class-Type: IPv4 Local (1) Flags: [non-negotiable], length: 8 - IPv4 Link ID: 1.0.0.0 (0x01000000) - Message ID Object (5), Class-Type: 1 (1) Flags: [non-negotiable], length: 8 - Message ID: 3 (0x00000003) - Channel Status Object (13), Class-Type: IPv4 (1) Flags: [non-negotiable], length: 20 - Interface ID: 1.0.0.0 (0x01000000) - Active: Allocated (1) - Direction: Transmit (1) - Channel Status: Signal Fail (3) - Interface ID: 1.0.0.0 (0x01000000) - Active: Allocated (1) - Direction: Receive (0) - Channel Status: Signal Degraded (2) -IP (tos 0x0, ttl 1, id 44547, offset 0, flags [none], proto UDP (17), length 64) - 10.0.12.1.49998 > 10.0.12.2.49998: - LMPv1, msg-type: Channel Status Response, Flags: [none], length: 36 - Message ID Object (5), Class-Type: 2 (2) Flags: [non-negotiable], length: 8 - Message ID Ack: 3 (0x00000003) - Channel Status Object (13), Class-Type: IPv4 (1) Flags: [non-negotiable], length: 20 - Interface ID: 1.0.0.0 (0x01000000) - Active: Allocated (1) - Direction: Transmit (1) - Channel Status: Signal Degraded (2) - Interface ID: 1.0.0.0 (0x01000000) - Active: Allocated (1) - Direction: Transmit (1) - Channel Status: Signal Okay (1) diff --git a/tests/lmp-v.sh b/tests/lmp-v.sh deleted file mode 100644 index 138a0cd..0000000 --- a/tests/lmp-v.sh +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/sh - -# The "verbose" Link Management Protocol test involves a float calculation that -# may produce a slightly different result depending on the architecture and the -# compiler (see GitHub issue #333). The reference output was produced using a -# GCC build and must reproduce correctly on any other GCC build regardless of -# the architecture. - -# A Windows build may have no file named Makefile and also a version of grep -# that won't return an error when the file does not exist. Work around. -if [ ! -f ../Makefile ] -then - printf ' %-30s: TEST SKIPPED (no Makefile)\n' 'lmp-v' -elif grep '^CC = .*gcc' ../Makefile >/dev/null -then - ./TESTonce lmp-v lmp.pcap lmp-v.out '-t -T lmp -v' -else - printf ' %-30s: TEST SKIPPED (compiler is not GCC)\n' 'lmp-v' -fi diff --git a/tests/lmp.out b/tests/lmp.out deleted file mode 100644 index 1338982..0000000 --- a/tests/lmp.out +++ /dev/null @@ -1,18 +0,0 @@ -IP 10.0.12.1.49998 > 10.0.12.2.49998: LMPv1 Begin Verify Message, length: 56 -IP 10.0.12.1.49998 > 10.0.12.2.49998: LMPv1 Hello Message, length: 28 -IP 10.0.12.1.49998 > 10.0.12.2.49998: LMPv1 Config NACK Message, length: 56 -IP 10.0.12.1.49998 > 10.0.12.2.49998: LMPv1 Config ACK Message, length: 48 -IP 10.0.12.1.49998 > 10.0.12.2.49998: LMPv1 Config Message, length: 40 -IP 10.0.12.1.49998 > 10.0.12.2.49998: LMPv1 Link Summary ACK Message, length: 16 -IP 10.0.12.1.49998 > 10.0.12.2.49998: LMPv1 Link Summary NACK Message, length: 96 -IP 10.0.12.1.49998 > 10.0.12.2.49998: LMPv1 Begin Verify ACK Message, length: 40 -IP 10.0.12.1.49998 > 10.0.12.2.49998: LMPv1 Begin Verify NACK Message, length: 32 -IP 10.0.12.1.49998 > 10.0.12.2.49998: LMPv1 End Verify Message, length: 24 -IP 10.0.12.1.49998 > 10.0.12.2.49998: LMPv1 End Verify ACK Message, length: 24 -IP 10.0.12.1.49998 > 10.0.12.2.49998: LMPv1 Test Message, length: 24 -IP 10.0.12.1.49998 > 10.0.12.2.49998: LMPv1 Test Status Failure Message, length: 24 -IP 10.0.12.1.49998 > 10.0.12.2.49998: LMPv1 Test Status ACK Message, length: 24 -IP 10.0.12.1.49998 > 10.0.12.2.49998: LMPv1 Channel Status ACK Message, length: 16 -IP 10.0.12.1.49998 > 10.0.12.2.49998: LMPv1 Channel Status Request Message, length: 36 -IP 10.0.12.1.49998 > 10.0.12.2.49998: LMPv1 Channel Status Message, length: 44 -IP 10.0.12.1.49998 > 10.0.12.2.49998: LMPv1 Channel Status Response Message, length: 36 diff --git a/tests/lmp.pcap b/tests/lmp.pcap deleted file mode 100644 index a07e3bb..0000000 Binary files a/tests/lmp.pcap and /dev/null differ diff --git a/tests/loopback.out b/tests/loopback.out deleted file mode 100644 index 7b8dece..0000000 --- a/tests/loopback.out +++ /dev/null @@ -1,6 +0,0 @@ -Loopback, skipCount 0, Forward Data, forwarding address aa:00:04:00:1d:04, data (44 octets) -Loopback, skipCount 8, Reply, receipt number 1, data (40 octets) -Loopback, skipCount 0, Forward Data, forwarding address aa:00:04:00:6a:04, data (60 octets) -Loopback, skipCount 8, Forward Data, forwarding address aa:00:04:00:69:04, data (52 octets) -Loopback, skipCount 16, Forward Data, forwarding address aa:00:04:00:1d:04, data (44 octets) -Loopback, skipCount 24, Reply, receipt number 2, data (40 octets) diff --git a/tests/loopback.pcap b/tests/loopback.pcap deleted file mode 100644 index 384c0d3..0000000 Binary files a/tests/loopback.pcap and /dev/null differ diff --git a/tests/lspping-fec-ldp-v.out b/tests/lspping-fec-ldp-v.out deleted file mode 100644 index e4a886b..0000000 --- a/tests/lspping-fec-ldp-v.out +++ /dev/null @@ -1,111 +0,0 @@ -MPLS (label 100656, exp 6, [S], ttl 64) - IP (tos 0xc0, ttl 64, id 40719, offset 0, flags [none], proto TCP (6), length 71) - 12.4.4.4.4100 > 12.8.8.8.179: Flags [P.], cksum 0xfd1b (correct), seq 1860641958:1860641977, ack 2969468967, win 16384, options [nop,nop,TS val 84784152 ecr 84770238], length 19: BGP - Keepalive Message (4), length: 19 -MPLS (label 100688, exp 7, [S], ttl 255) - IP (tos 0x0, ttl 64, id 40723, offset 0, flags [none], proto UDP (17), length 76) - 12.4.4.4.4786 > 127.0.0.1.3503: - LSP-PINGv1, msg-type: MPLS Echo Request (1), length: 48 - reply-mode: Reply via an IPv4/IPv6 UDP packet (2) - Return Code: No return code or return code contained in the Error Code TLV (0) - Return Subcode: (0) - Sender Handle: 0x00000000, Sequence: 1 - Sender Timestamp: Receiver Timestamp: no timestamp - Target FEC Stack TLV (1), length: 12 - LDP IPv4 prefix subTLV (1), length: 5 - 12.1.1.1/32 -IP (tos 0xc0, ttl 62, id 50878, offset 0, flags [none], proto UDP (17), length 60) - 10.20.0.1.3503 > 12.4.4.4.4786: - LSP-PINGv1, msg-type: MPLS Echo Reply (2), length: 32 - reply-mode: Reply via an IPv4/IPv6 UDP packet (2) - Return Code: Replying router is an egress for the FEC at stack depth 0 (3) - Return Subcode: (0) - Sender Handle: 0x00000000, Sequence: 1 - Sender Timestamp: Receiver Timestamp: -MPLS (label 100704, exp 6, [S], ttl 64) - IP (tos 0xc0, ttl 64, id 40725, offset 0, flags [none], proto TCP (6), length 71) - 12.4.4.4.2006 > 12.1.1.1.179: Flags [P.], cksum 0x6c0d (correct), seq 399708866:399708885, ack 708613212, win 16384, options [nop,nop,TS val 84784455 ecr 130411], length 19: BGP - Keepalive Message (4), length: 19 -MPLS (label 100704, exp 6, [S], ttl 64) - IP (tos 0xc0, ttl 64, id 40726, offset 0, flags [none], proto TCP (6), length 52) - 12.4.4.4.2006 > 12.1.1.1.179: Flags [.], cksum 0x6451 (correct), ack 20, win 16384, options [nop,nop,TS val 84784465 ecr 133413], length 0 -MPLS (label 100688, exp 7, [S], ttl 255) - IP (tos 0x0, ttl 64, id 40727, offset 0, flags [none], proto UDP (17), length 76) - 12.4.4.4.4786 > 127.0.0.1.3503: - LSP-PINGv1, msg-type: MPLS Echo Request (1), length: 48 - reply-mode: Reply via an IPv4/IPv6 UDP packet (2) - Return Code: No return code or return code contained in the Error Code TLV (0) - Return Subcode: (0) - Sender Handle: 0x00000000, Sequence: 2 - Sender Timestamp: Receiver Timestamp: no timestamp - Target FEC Stack TLV (1), length: 12 - LDP IPv4 prefix subTLV (1), length: 5 - 12.1.1.1/32 -IP (tos 0xc0, ttl 62, id 50880, offset 0, flags [none], proto UDP (17), length 60) - 10.20.0.1.3503 > 12.4.4.4.4786: - LSP-PINGv1, msg-type: MPLS Echo Reply (2), length: 32 - reply-mode: Reply via an IPv4/IPv6 UDP packet (2) - Return Code: Replying router is an egress for the FEC at stack depth 0 (3) - Return Subcode: (0) - Sender Handle: 0x00000000, Sequence: 2 - Sender Timestamp: Receiver Timestamp: -MPLS (label 100688, exp 7, [S], ttl 255) - IP (tos 0x0, ttl 64, id 40729, offset 0, flags [none], proto UDP (17), length 76) - 12.4.4.4.4786 > 127.0.0.1.3503: - LSP-PINGv1, msg-type: MPLS Echo Request (1), length: 48 - reply-mode: Reply via an IPv4/IPv6 UDP packet (2) - Return Code: No return code or return code contained in the Error Code TLV (0) - Return Subcode: (0) - Sender Handle: 0x00000000, Sequence: 3 - Sender Timestamp: Receiver Timestamp: no timestamp - Target FEC Stack TLV (1), length: 12 - LDP IPv4 prefix subTLV (1), length: 5 - 12.1.1.1/32 -IP (tos 0xc0, ttl 62, id 50882, offset 0, flags [none], proto UDP (17), length 60) - 10.20.0.1.3503 > 12.4.4.4.4786: - LSP-PINGv1, msg-type: MPLS Echo Reply (2), length: 32 - reply-mode: Reply via an IPv4/IPv6 UDP packet (2) - Return Code: Replying router is an egress for the FEC at stack depth 0 (3) - Return Subcode: (0) - Sender Handle: 0x00000000, Sequence: 3 - Sender Timestamp: Receiver Timestamp: -MPLS (label 100688, exp 7, [S], ttl 255) - IP (tos 0x0, ttl 64, id 40731, offset 0, flags [none], proto UDP (17), length 76) - 12.4.4.4.4786 > 127.0.0.1.3503: - LSP-PINGv1, msg-type: MPLS Echo Request (1), length: 48 - reply-mode: Reply via an IPv4/IPv6 UDP packet (2) - Return Code: No return code or return code contained in the Error Code TLV (0) - Return Subcode: (0) - Sender Handle: 0x00000000, Sequence: 4 - Sender Timestamp: Receiver Timestamp: no timestamp - Target FEC Stack TLV (1), length: 12 - LDP IPv4 prefix subTLV (1), length: 5 - 12.1.1.1/32 -IP (tos 0xc0, ttl 62, id 50883, offset 0, flags [none], proto UDP (17), length 60) - 10.20.0.1.3503 > 12.4.4.4.4786: - LSP-PINGv1, msg-type: MPLS Echo Reply (2), length: 32 - reply-mode: Reply via an IPv4/IPv6 UDP packet (2) - Return Code: Replying router is an egress for the FEC at stack depth 0 (3) - Return Subcode: (0) - Sender Handle: 0x00000000, Sequence: 4 - Sender Timestamp: Receiver Timestamp: -MPLS (label 100688, exp 7, [S], ttl 255) - IP (tos 0x0, ttl 64, id 40733, offset 0, flags [none], proto UDP (17), length 76) - 12.4.4.4.4786 > 127.0.0.1.3503: - LSP-PINGv1, msg-type: MPLS Echo Request (1), length: 48 - reply-mode: Reply via an IPv4/IPv6 UDP packet (2) - Return Code: No return code or return code contained in the Error Code TLV (0) - Return Subcode: (0) - Sender Handle: 0x00000000, Sequence: 5 - Sender Timestamp: Receiver Timestamp: no timestamp - Target FEC Stack TLV (1), length: 12 - LDP IPv4 prefix subTLV (1), length: 5 - 12.1.1.1/32 -IP (tos 0xc0, ttl 62, id 50886, offset 0, flags [none], proto UDP (17), length 60) - 10.20.0.1.3503 > 12.4.4.4.4786: - LSP-PINGv1, msg-type: MPLS Echo Reply (2), length: 32 - reply-mode: Reply via an IPv4/IPv6 UDP packet (2) - Return Code: Replying router is an egress for the FEC at stack depth 0 (3) - Return Subcode: (0) - Sender Handle: 0x00000000, Sequence: 5 - Sender Timestamp: Receiver Timestamp: diff --git a/tests/lspping-fec-ldp-vv.out b/tests/lspping-fec-ldp-vv.out deleted file mode 100644 index af0d1f6..0000000 --- a/tests/lspping-fec-ldp-vv.out +++ /dev/null @@ -1,121 +0,0 @@ -MPLS (label 100656, exp 6, [S], ttl 64) - IP (tos 0xc0, ttl 64, id 40719, offset 0, flags [none], proto TCP (6), length 71) - 12.4.4.4.4100 > 12.8.8.8.179: Flags [P.], cksum 0xfd1b (correct), seq 1860641958:1860641977, ack 2969468967, win 16384, options [nop,nop,TS val 84784152 ecr 84770238], length 19: BGP - Keepalive Message (4), length: 19 -MPLS (label 100688, exp 7, [S], ttl 255) - IP (tos 0x0, ttl 64, id 40723, offset 0, flags [none], proto UDP (17), length 76) - 12.4.4.4.4786 > 127.0.0.1.3503: [udp sum ok] - LSP-PINGv1, msg-type: MPLS Echo Request (1), length: 48 - reply-mode: Reply via an IPv4/IPv6 UDP packet (2) - Return Code: No return code or return code contained in the Error Code TLV (0) - Return Subcode: (0) - Sender Handle: 0x00000000, Sequence: 1 - Sender Timestamp: Receiver Timestamp: no timestamp - Target FEC Stack TLV (1), length: 12 - LDP IPv4 prefix subTLV (1), length: 5 - 12.1.1.1/32 - 0x0000: 0c01 0101 20 - 0x0000: 0001 0005 0c01 0101 2000 0000 -IP (tos 0xc0, ttl 62, id 50878, offset 0, flags [none], proto UDP (17), length 60) - 10.20.0.1.3503 > 12.4.4.4.4786: [udp sum ok] - LSP-PINGv1, msg-type: MPLS Echo Reply (2), length: 32 - reply-mode: Reply via an IPv4/IPv6 UDP packet (2) - Return Code: Replying router is an egress for the FEC at stack depth 0 (3) - Return Subcode: (0) - Sender Handle: 0x00000000, Sequence: 1 - Sender Timestamp: Receiver Timestamp: -MPLS (label 100704, exp 6, [S], ttl 64) - IP (tos 0xc0, ttl 64, id 40725, offset 0, flags [none], proto TCP (6), length 71) - 12.4.4.4.2006 > 12.1.1.1.179: Flags [P.], cksum 0x6c0d (correct), seq 399708866:399708885, ack 708613212, win 16384, options [nop,nop,TS val 84784455 ecr 130411], length 19: BGP - Keepalive Message (4), length: 19 -MPLS (label 100704, exp 6, [S], ttl 64) - IP (tos 0xc0, ttl 64, id 40726, offset 0, flags [none], proto TCP (6), length 52) - 12.4.4.4.2006 > 12.1.1.1.179: Flags [.], cksum 0x6451 (correct), seq 19, ack 20, win 16384, options [nop,nop,TS val 84784465 ecr 133413], length 0 -MPLS (label 100688, exp 7, [S], ttl 255) - IP (tos 0x0, ttl 64, id 40727, offset 0, flags [none], proto UDP (17), length 76) - 12.4.4.4.4786 > 127.0.0.1.3503: [udp sum ok] - LSP-PINGv1, msg-type: MPLS Echo Request (1), length: 48 - reply-mode: Reply via an IPv4/IPv6 UDP packet (2) - Return Code: No return code or return code contained in the Error Code TLV (0) - Return Subcode: (0) - Sender Handle: 0x00000000, Sequence: 2 - Sender Timestamp: Receiver Timestamp: no timestamp - Target FEC Stack TLV (1), length: 12 - LDP IPv4 prefix subTLV (1), length: 5 - 12.1.1.1/32 - 0x0000: 0c01 0101 20 - 0x0000: 0001 0005 0c01 0101 2000 0000 -IP (tos 0xc0, ttl 62, id 50880, offset 0, flags [none], proto UDP (17), length 60) - 10.20.0.1.3503 > 12.4.4.4.4786: [udp sum ok] - LSP-PINGv1, msg-type: MPLS Echo Reply (2), length: 32 - reply-mode: Reply via an IPv4/IPv6 UDP packet (2) - Return Code: Replying router is an egress for the FEC at stack depth 0 (3) - Return Subcode: (0) - Sender Handle: 0x00000000, Sequence: 2 - Sender Timestamp: Receiver Timestamp: -MPLS (label 100688, exp 7, [S], ttl 255) - IP (tos 0x0, ttl 64, id 40729, offset 0, flags [none], proto UDP (17), length 76) - 12.4.4.4.4786 > 127.0.0.1.3503: [udp sum ok] - LSP-PINGv1, msg-type: MPLS Echo Request (1), length: 48 - reply-mode: Reply via an IPv4/IPv6 UDP packet (2) - Return Code: No return code or return code contained in the Error Code TLV (0) - Return Subcode: (0) - Sender Handle: 0x00000000, Sequence: 3 - Sender Timestamp: Receiver Timestamp: no timestamp - Target FEC Stack TLV (1), length: 12 - LDP IPv4 prefix subTLV (1), length: 5 - 12.1.1.1/32 - 0x0000: 0c01 0101 20 - 0x0000: 0001 0005 0c01 0101 2000 0000 -IP (tos 0xc0, ttl 62, id 50882, offset 0, flags [none], proto UDP (17), length 60) - 10.20.0.1.3503 > 12.4.4.4.4786: [udp sum ok] - LSP-PINGv1, msg-type: MPLS Echo Reply (2), length: 32 - reply-mode: Reply via an IPv4/IPv6 UDP packet (2) - Return Code: Replying router is an egress for the FEC at stack depth 0 (3) - Return Subcode: (0) - Sender Handle: 0x00000000, Sequence: 3 - Sender Timestamp: Receiver Timestamp: -MPLS (label 100688, exp 7, [S], ttl 255) - IP (tos 0x0, ttl 64, id 40731, offset 0, flags [none], proto UDP (17), length 76) - 12.4.4.4.4786 > 127.0.0.1.3503: [udp sum ok] - LSP-PINGv1, msg-type: MPLS Echo Request (1), length: 48 - reply-mode: Reply via an IPv4/IPv6 UDP packet (2) - Return Code: No return code or return code contained in the Error Code TLV (0) - Return Subcode: (0) - Sender Handle: 0x00000000, Sequence: 4 - Sender Timestamp: Receiver Timestamp: no timestamp - Target FEC Stack TLV (1), length: 12 - LDP IPv4 prefix subTLV (1), length: 5 - 12.1.1.1/32 - 0x0000: 0c01 0101 20 - 0x0000: 0001 0005 0c01 0101 2000 0000 -IP (tos 0xc0, ttl 62, id 50883, offset 0, flags [none], proto UDP (17), length 60) - 10.20.0.1.3503 > 12.4.4.4.4786: [udp sum ok] - LSP-PINGv1, msg-type: MPLS Echo Reply (2), length: 32 - reply-mode: Reply via an IPv4/IPv6 UDP packet (2) - Return Code: Replying router is an egress for the FEC at stack depth 0 (3) - Return Subcode: (0) - Sender Handle: 0x00000000, Sequence: 4 - Sender Timestamp: Receiver Timestamp: -MPLS (label 100688, exp 7, [S], ttl 255) - IP (tos 0x0, ttl 64, id 40733, offset 0, flags [none], proto UDP (17), length 76) - 12.4.4.4.4786 > 127.0.0.1.3503: [udp sum ok] - LSP-PINGv1, msg-type: MPLS Echo Request (1), length: 48 - reply-mode: Reply via an IPv4/IPv6 UDP packet (2) - Return Code: No return code or return code contained in the Error Code TLV (0) - Return Subcode: (0) - Sender Handle: 0x00000000, Sequence: 5 - Sender Timestamp: Receiver Timestamp: no timestamp - Target FEC Stack TLV (1), length: 12 - LDP IPv4 prefix subTLV (1), length: 5 - 12.1.1.1/32 - 0x0000: 0c01 0101 20 - 0x0000: 0001 0005 0c01 0101 2000 0000 -IP (tos 0xc0, ttl 62, id 50886, offset 0, flags [none], proto UDP (17), length 60) - 10.20.0.1.3503 > 12.4.4.4.4786: [udp sum ok] - LSP-PINGv1, msg-type: MPLS Echo Reply (2), length: 32 - reply-mode: Reply via an IPv4/IPv6 UDP packet (2) - Return Code: Replying router is an egress for the FEC at stack depth 0 (3) - Return Subcode: (0) - Sender Handle: 0x00000000, Sequence: 5 - Sender Timestamp: Receiver Timestamp: diff --git a/tests/lspping-fec-ldp.out b/tests/lspping-fec-ldp.out deleted file mode 100644 index 2df8b4c..0000000 --- a/tests/lspping-fec-ldp.out +++ /dev/null @@ -1,13 +0,0 @@ -MPLS (label 100656, exp 6, [S], ttl 64) IP 12.4.4.4.4100 > 12.8.8.8.179: Flags [P.], seq 1860641958:1860641977, ack 2969468967, win 16384, options [nop,nop,TS val 84784152 ecr 84770238], length 19: BGP -MPLS (label 100688, exp 7, [S], ttl 255) IP 12.4.4.4.4786 > 127.0.0.1.3503: LSP-PINGv1, MPLS Echo Request, seq 1, length: 48 -IP 10.20.0.1.3503 > 12.4.4.4.4786: LSP-PINGv1, MPLS Echo Reply, seq 1, length: 32 -MPLS (label 100704, exp 6, [S], ttl 64) IP 12.4.4.4.2006 > 12.1.1.1.179: Flags [P.], seq 399708866:399708885, ack 708613212, win 16384, options [nop,nop,TS val 84784455 ecr 130411], length 19: BGP -MPLS (label 100704, exp 6, [S], ttl 64) IP 12.4.4.4.2006 > 12.1.1.1.179: Flags [.], ack 20, win 16384, options [nop,nop,TS val 84784465 ecr 133413], length 0 -MPLS (label 100688, exp 7, [S], ttl 255) IP 12.4.4.4.4786 > 127.0.0.1.3503: LSP-PINGv1, MPLS Echo Request, seq 2, length: 48 -IP 10.20.0.1.3503 > 12.4.4.4.4786: LSP-PINGv1, MPLS Echo Reply, seq 2, length: 32 -MPLS (label 100688, exp 7, [S], ttl 255) IP 12.4.4.4.4786 > 127.0.0.1.3503: LSP-PINGv1, MPLS Echo Request, seq 3, length: 48 -IP 10.20.0.1.3503 > 12.4.4.4.4786: LSP-PINGv1, MPLS Echo Reply, seq 3, length: 32 -MPLS (label 100688, exp 7, [S], ttl 255) IP 12.4.4.4.4786 > 127.0.0.1.3503: LSP-PINGv1, MPLS Echo Request, seq 4, length: 48 -IP 10.20.0.1.3503 > 12.4.4.4.4786: LSP-PINGv1, MPLS Echo Reply, seq 4, length: 32 -MPLS (label 100688, exp 7, [S], ttl 255) IP 12.4.4.4.4786 > 127.0.0.1.3503: LSP-PINGv1, MPLS Echo Request, seq 5, length: 48 -IP 10.20.0.1.3503 > 12.4.4.4.4786: LSP-PINGv1, MPLS Echo Reply, seq 5, length: 32 diff --git a/tests/lspping-fec-ldp.pcap b/tests/lspping-fec-ldp.pcap deleted file mode 100644 index 87e86c7..0000000 Binary files a/tests/lspping-fec-ldp.pcap and /dev/null differ diff --git a/tests/lspping-fec-rsvp-v.out b/tests/lspping-fec-rsvp-v.out deleted file mode 100644 index f79043e..0000000 --- a/tests/lspping-fec-rsvp-v.out +++ /dev/null @@ -1,105 +0,0 @@ -MPLS (label 100704, exp 7, [S], ttl 255) - IP (tos 0x0, ttl 64, id 40269, offset 0, flags [none], proto UDP (17), length 88) - 12.4.4.4.4529 > 127.0.0.1.3503: - LSP-PINGv1, msg-type: MPLS Echo Request (1), length: 60 - reply-mode: Reply via an IPv4/IPv6 UDP packet (2) - Return Code: No return code or return code contained in the Error Code TLV (0) - Return Subcode: (0) - Sender Handle: 0x00000000, Sequence: 1 - Sender Timestamp: Receiver Timestamp: no timestamp - Target FEC Stack TLV (1), length: 24 - RSVP IPv4 Session Query subTLV (3), length: 20 - tunnel end-point 12.1.1.1, tunnel sender 12.4.4.4, lsp-id 0x0010 - tunnel-id 0x5372, extended tunnel-id 12.4.4.4 -IP (tos 0xc0, ttl 62, id 50634, offset 0, flags [none], proto UDP (17), length 60) - 10.20.0.1.3503 > 12.4.4.4.4529: - LSP-PINGv1, msg-type: MPLS Echo Reply (2), length: 32 - reply-mode: Reply via an IPv4/IPv6 UDP packet (2) - Return Code: Replying router is an egress for the FEC at stack depth 0 (3) - Return Subcode: (0) - Sender Handle: 0x00000000, Sequence: 1 - Sender Timestamp: Receiver Timestamp: -MPLS (label 100704, exp 7, [S], ttl 255) - IP (tos 0x0, ttl 64, id 40271, offset 0, flags [none], proto UDP (17), length 88) - 12.4.4.4.4529 > 127.0.0.1.3503: - LSP-PINGv1, msg-type: MPLS Echo Request (1), length: 60 - reply-mode: Reply via an IPv4/IPv6 UDP packet (2) - Return Code: No return code or return code contained in the Error Code TLV (0) - Return Subcode: (0) - Sender Handle: 0x00000000, Sequence: 2 - Sender Timestamp: Receiver Timestamp: no timestamp - Target FEC Stack TLV (1), length: 24 - RSVP IPv4 Session Query subTLV (3), length: 20 - tunnel end-point 12.1.1.1, tunnel sender 12.4.4.4, lsp-id 0x0010 - tunnel-id 0x5372, extended tunnel-id 12.4.4.4 -IP (tos 0xc0, ttl 62, id 50635, offset 0, flags [none], proto UDP (17), length 60) - 10.20.0.1.3503 > 12.4.4.4.4529: - LSP-PINGv1, msg-type: MPLS Echo Reply (2), length: 32 - reply-mode: Reply via an IPv4/IPv6 UDP packet (2) - Return Code: Replying router is an egress for the FEC at stack depth 0 (3) - Return Subcode: (0) - Sender Handle: 0x00000000, Sequence: 2 - Sender Timestamp: Receiver Timestamp: -MPLS (label 100704, exp 7, [S], ttl 255) - IP (tos 0x0, ttl 64, id 40273, offset 0, flags [none], proto UDP (17), length 88) - 12.4.4.4.4529 > 127.0.0.1.3503: - LSP-PINGv1, msg-type: MPLS Echo Request (1), length: 60 - reply-mode: Reply via an IPv4/IPv6 UDP packet (2) - Return Code: No return code or return code contained in the Error Code TLV (0) - Return Subcode: (0) - Sender Handle: 0x00000000, Sequence: 3 - Sender Timestamp: Receiver Timestamp: no timestamp - Target FEC Stack TLV (1), length: 24 - RSVP IPv4 Session Query subTLV (3), length: 20 - tunnel end-point 12.1.1.1, tunnel sender 12.4.4.4, lsp-id 0x0010 - tunnel-id 0x5372, extended tunnel-id 12.4.4.4 -IP (tos 0xc0, ttl 62, id 50637, offset 0, flags [none], proto UDP (17), length 60) - 10.20.0.1.3503 > 12.4.4.4.4529: - LSP-PINGv1, msg-type: MPLS Echo Reply (2), length: 32 - reply-mode: Reply via an IPv4/IPv6 UDP packet (2) - Return Code: Replying router is an egress for the FEC at stack depth 0 (3) - Return Subcode: (0) - Sender Handle: 0x00000000, Sequence: 3 - Sender Timestamp: Receiver Timestamp: -MPLS (label 100704, exp 7, [S], ttl 255) - IP (tos 0x0, ttl 64, id 40275, offset 0, flags [none], proto UDP (17), length 88) - 12.4.4.4.4529 > 127.0.0.1.3503: - LSP-PINGv1, msg-type: MPLS Echo Request (1), length: 60 - reply-mode: Reply via an IPv4/IPv6 UDP packet (2) - Return Code: No return code or return code contained in the Error Code TLV (0) - Return Subcode: (0) - Sender Handle: 0x00000000, Sequence: 4 - Sender Timestamp: Receiver Timestamp: no timestamp - Target FEC Stack TLV (1), length: 24 - RSVP IPv4 Session Query subTLV (3), length: 20 - tunnel end-point 12.1.1.1, tunnel sender 12.4.4.4, lsp-id 0x0010 - tunnel-id 0x5372, extended tunnel-id 12.4.4.4 -IP (tos 0xc0, ttl 62, id 50638, offset 0, flags [none], proto UDP (17), length 60) - 10.20.0.1.3503 > 12.4.4.4.4529: - LSP-PINGv1, msg-type: MPLS Echo Reply (2), length: 32 - reply-mode: Reply via an IPv4/IPv6 UDP packet (2) - Return Code: Replying router is an egress for the FEC at stack depth 0 (3) - Return Subcode: (0) - Sender Handle: 0x00000000, Sequence: 4 - Sender Timestamp: Receiver Timestamp: -MPLS (label 100704, exp 7, [S], ttl 255) - IP (tos 0x0, ttl 64, id 40278, offset 0, flags [none], proto UDP (17), length 88) - 12.4.4.4.4529 > 127.0.0.1.3503: - LSP-PINGv1, msg-type: MPLS Echo Request (1), length: 60 - reply-mode: Reply via an IPv4/IPv6 UDP packet (2) - Return Code: No return code or return code contained in the Error Code TLV (0) - Return Subcode: (0) - Sender Handle: 0x00000000, Sequence: 5 - Sender Timestamp: Receiver Timestamp: no timestamp - Target FEC Stack TLV (1), length: 24 - RSVP IPv4 Session Query subTLV (3), length: 20 - tunnel end-point 12.1.1.1, tunnel sender 12.4.4.4, lsp-id 0x0010 - tunnel-id 0x5372, extended tunnel-id 12.4.4.4 -IP (tos 0xc0, ttl 62, id 50641, offset 0, flags [none], proto UDP (17), length 60) - 10.20.0.1.3503 > 12.4.4.4.4529: - LSP-PINGv1, msg-type: MPLS Echo Reply (2), length: 32 - reply-mode: Reply via an IPv4/IPv6 UDP packet (2) - Return Code: Replying router is an egress for the FEC at stack depth 0 (3) - Return Subcode: (0) - Sender Handle: 0x00000000, Sequence: 5 - Sender Timestamp: Receiver Timestamp: diff --git a/tests/lspping-fec-rsvp-vv.out b/tests/lspping-fec-rsvp-vv.out deleted file mode 100644 index 391dc5a..0000000 --- a/tests/lspping-fec-rsvp-vv.out +++ /dev/null @@ -1,125 +0,0 @@ -MPLS (label 100704, exp 7, [S], ttl 255) - IP (tos 0x0, ttl 64, id 40269, offset 0, flags [none], proto UDP (17), length 88) - 12.4.4.4.4529 > 127.0.0.1.3503: [udp sum ok] - LSP-PINGv1, msg-type: MPLS Echo Request (1), length: 60 - reply-mode: Reply via an IPv4/IPv6 UDP packet (2) - Return Code: No return code or return code contained in the Error Code TLV (0) - Return Subcode: (0) - Sender Handle: 0x00000000, Sequence: 1 - Sender Timestamp: Receiver Timestamp: no timestamp - Target FEC Stack TLV (1), length: 24 - RSVP IPv4 Session Query subTLV (3), length: 20 - tunnel end-point 12.1.1.1, tunnel sender 12.4.4.4, lsp-id 0x0010 - tunnel-id 0x5372, extended tunnel-id 12.4.4.4 - 0x0000: 0c01 0101 0000 5372 0c04 0404 0c04 0404 - 0x0010: 0000 0010 - 0x0000: 0003 0014 0c01 0101 0000 5372 0c04 0404 - 0x0010: 0c04 0404 0000 0010 -IP (tos 0xc0, ttl 62, id 50634, offset 0, flags [none], proto UDP (17), length 60) - 10.20.0.1.3503 > 12.4.4.4.4529: [udp sum ok] - LSP-PINGv1, msg-type: MPLS Echo Reply (2), length: 32 - reply-mode: Reply via an IPv4/IPv6 UDP packet (2) - Return Code: Replying router is an egress for the FEC at stack depth 0 (3) - Return Subcode: (0) - Sender Handle: 0x00000000, Sequence: 1 - Sender Timestamp: Receiver Timestamp: -MPLS (label 100704, exp 7, [S], ttl 255) - IP (tos 0x0, ttl 64, id 40271, offset 0, flags [none], proto UDP (17), length 88) - 12.4.4.4.4529 > 127.0.0.1.3503: [udp sum ok] - LSP-PINGv1, msg-type: MPLS Echo Request (1), length: 60 - reply-mode: Reply via an IPv4/IPv6 UDP packet (2) - Return Code: No return code or return code contained in the Error Code TLV (0) - Return Subcode: (0) - Sender Handle: 0x00000000, Sequence: 2 - Sender Timestamp: Receiver Timestamp: no timestamp - Target FEC Stack TLV (1), length: 24 - RSVP IPv4 Session Query subTLV (3), length: 20 - tunnel end-point 12.1.1.1, tunnel sender 12.4.4.4, lsp-id 0x0010 - tunnel-id 0x5372, extended tunnel-id 12.4.4.4 - 0x0000: 0c01 0101 0000 5372 0c04 0404 0c04 0404 - 0x0010: 0000 0010 - 0x0000: 0003 0014 0c01 0101 0000 5372 0c04 0404 - 0x0010: 0c04 0404 0000 0010 -IP (tos 0xc0, ttl 62, id 50635, offset 0, flags [none], proto UDP (17), length 60) - 10.20.0.1.3503 > 12.4.4.4.4529: [udp sum ok] - LSP-PINGv1, msg-type: MPLS Echo Reply (2), length: 32 - reply-mode: Reply via an IPv4/IPv6 UDP packet (2) - Return Code: Replying router is an egress for the FEC at stack depth 0 (3) - Return Subcode: (0) - Sender Handle: 0x00000000, Sequence: 2 - Sender Timestamp: Receiver Timestamp: -MPLS (label 100704, exp 7, [S], ttl 255) - IP (tos 0x0, ttl 64, id 40273, offset 0, flags [none], proto UDP (17), length 88) - 12.4.4.4.4529 > 127.0.0.1.3503: [udp sum ok] - LSP-PINGv1, msg-type: MPLS Echo Request (1), length: 60 - reply-mode: Reply via an IPv4/IPv6 UDP packet (2) - Return Code: No return code or return code contained in the Error Code TLV (0) - Return Subcode: (0) - Sender Handle: 0x00000000, Sequence: 3 - Sender Timestamp: Receiver Timestamp: no timestamp - Target FEC Stack TLV (1), length: 24 - RSVP IPv4 Session Query subTLV (3), length: 20 - tunnel end-point 12.1.1.1, tunnel sender 12.4.4.4, lsp-id 0x0010 - tunnel-id 0x5372, extended tunnel-id 12.4.4.4 - 0x0000: 0c01 0101 0000 5372 0c04 0404 0c04 0404 - 0x0010: 0000 0010 - 0x0000: 0003 0014 0c01 0101 0000 5372 0c04 0404 - 0x0010: 0c04 0404 0000 0010 -IP (tos 0xc0, ttl 62, id 50637, offset 0, flags [none], proto UDP (17), length 60) - 10.20.0.1.3503 > 12.4.4.4.4529: [udp sum ok] - LSP-PINGv1, msg-type: MPLS Echo Reply (2), length: 32 - reply-mode: Reply via an IPv4/IPv6 UDP packet (2) - Return Code: Replying router is an egress for the FEC at stack depth 0 (3) - Return Subcode: (0) - Sender Handle: 0x00000000, Sequence: 3 - Sender Timestamp: Receiver Timestamp: -MPLS (label 100704, exp 7, [S], ttl 255) - IP (tos 0x0, ttl 64, id 40275, offset 0, flags [none], proto UDP (17), length 88) - 12.4.4.4.4529 > 127.0.0.1.3503: [udp sum ok] - LSP-PINGv1, msg-type: MPLS Echo Request (1), length: 60 - reply-mode: Reply via an IPv4/IPv6 UDP packet (2) - Return Code: No return code or return code contained in the Error Code TLV (0) - Return Subcode: (0) - Sender Handle: 0x00000000, Sequence: 4 - Sender Timestamp: Receiver Timestamp: no timestamp - Target FEC Stack TLV (1), length: 24 - RSVP IPv4 Session Query subTLV (3), length: 20 - tunnel end-point 12.1.1.1, tunnel sender 12.4.4.4, lsp-id 0x0010 - tunnel-id 0x5372, extended tunnel-id 12.4.4.4 - 0x0000: 0c01 0101 0000 5372 0c04 0404 0c04 0404 - 0x0010: 0000 0010 - 0x0000: 0003 0014 0c01 0101 0000 5372 0c04 0404 - 0x0010: 0c04 0404 0000 0010 -IP (tos 0xc0, ttl 62, id 50638, offset 0, flags [none], proto UDP (17), length 60) - 10.20.0.1.3503 > 12.4.4.4.4529: [udp sum ok] - LSP-PINGv1, msg-type: MPLS Echo Reply (2), length: 32 - reply-mode: Reply via an IPv4/IPv6 UDP packet (2) - Return Code: Replying router is an egress for the FEC at stack depth 0 (3) - Return Subcode: (0) - Sender Handle: 0x00000000, Sequence: 4 - Sender Timestamp: Receiver Timestamp: -MPLS (label 100704, exp 7, [S], ttl 255) - IP (tos 0x0, ttl 64, id 40278, offset 0, flags [none], proto UDP (17), length 88) - 12.4.4.4.4529 > 127.0.0.1.3503: [udp sum ok] - LSP-PINGv1, msg-type: MPLS Echo Request (1), length: 60 - reply-mode: Reply via an IPv4/IPv6 UDP packet (2) - Return Code: No return code or return code contained in the Error Code TLV (0) - Return Subcode: (0) - Sender Handle: 0x00000000, Sequence: 5 - Sender Timestamp: Receiver Timestamp: no timestamp - Target FEC Stack TLV (1), length: 24 - RSVP IPv4 Session Query subTLV (3), length: 20 - tunnel end-point 12.1.1.1, tunnel sender 12.4.4.4, lsp-id 0x0010 - tunnel-id 0x5372, extended tunnel-id 12.4.4.4 - 0x0000: 0c01 0101 0000 5372 0c04 0404 0c04 0404 - 0x0010: 0000 0010 - 0x0000: 0003 0014 0c01 0101 0000 5372 0c04 0404 - 0x0010: 0c04 0404 0000 0010 -IP (tos 0xc0, ttl 62, id 50641, offset 0, flags [none], proto UDP (17), length 60) - 10.20.0.1.3503 > 12.4.4.4.4529: [udp sum ok] - LSP-PINGv1, msg-type: MPLS Echo Reply (2), length: 32 - reply-mode: Reply via an IPv4/IPv6 UDP packet (2) - Return Code: Replying router is an egress for the FEC at stack depth 0 (3) - Return Subcode: (0) - Sender Handle: 0x00000000, Sequence: 5 - Sender Timestamp: Receiver Timestamp: diff --git a/tests/lspping-fec-rsvp.out b/tests/lspping-fec-rsvp.out deleted file mode 100644 index 7013fae..0000000 --- a/tests/lspping-fec-rsvp.out +++ /dev/null @@ -1,10 +0,0 @@ -MPLS (label 100704, exp 7, [S], ttl 255) IP 12.4.4.4.4529 > 127.0.0.1.3503: LSP-PINGv1, MPLS Echo Request, seq 1, length: 60 -IP 10.20.0.1.3503 > 12.4.4.4.4529: LSP-PINGv1, MPLS Echo Reply, seq 1, length: 32 -MPLS (label 100704, exp 7, [S], ttl 255) IP 12.4.4.4.4529 > 127.0.0.1.3503: LSP-PINGv1, MPLS Echo Request, seq 2, length: 60 -IP 10.20.0.1.3503 > 12.4.4.4.4529: LSP-PINGv1, MPLS Echo Reply, seq 2, length: 32 -MPLS (label 100704, exp 7, [S], ttl 255) IP 12.4.4.4.4529 > 127.0.0.1.3503: LSP-PINGv1, MPLS Echo Request, seq 3, length: 60 -IP 10.20.0.1.3503 > 12.4.4.4.4529: LSP-PINGv1, MPLS Echo Reply, seq 3, length: 32 -MPLS (label 100704, exp 7, [S], ttl 255) IP 12.4.4.4.4529 > 127.0.0.1.3503: LSP-PINGv1, MPLS Echo Request, seq 4, length: 60 -IP 10.20.0.1.3503 > 12.4.4.4.4529: LSP-PINGv1, MPLS Echo Reply, seq 4, length: 32 -MPLS (label 100704, exp 7, [S], ttl 255) IP 12.4.4.4.4529 > 127.0.0.1.3503: LSP-PINGv1, MPLS Echo Request, seq 5, length: 60 -IP 10.20.0.1.3503 > 12.4.4.4.4529: LSP-PINGv1, MPLS Echo Reply, seq 5, length: 32 diff --git a/tests/lspping-fec-rsvp.pcap b/tests/lspping-fec-rsvp.pcap deleted file mode 100644 index d9dcf54..0000000 Binary files a/tests/lspping-fec-rsvp.pcap and /dev/null differ diff --git a/tests/medsa-e.out b/tests/medsa-e.out deleted file mode 100644 index 265be0d..0000000 --- a/tests/medsa-e.out +++ /dev/null @@ -1,20 +0,0 @@ -26:a1:fb:92:da:73 > 01:80:c2:00:00:00, ethertype MEDSA (0xdada), length 68: To_CPU, untagged, dev.port:vlan 0.2:0, BDPU, pri 7: LLC, dsap STP (0x42) Individual, ssap STP (0x42) Command, ctrl 0x03: STP 802.1d, Config, Flags [none], bridge-id 8000.26:a1:fb:92:da:73.8001, length 43 -94:10:3e:80:bc:f3 > 00:22:02:00:18:44, ethertype MEDSA (0xdada), length 98: From_CPU, untagged, dev.port:vlan 0.3:0, pri 0: ethertype IPv4 (0x0800) 10.0.0.12.59483 > 198.110.48.12.123: NTPv4, Client, length 48 -00:22:02:00:18:44 > 94:10:3e:80:bc:f3, ethertype MEDSA (0xdada), length 98: Forward, untagged, dev.port:vlan 0.3:0, pri 0: ethertype IPv4 (0x0800) 198.110.48.12.123 > 10.0.0.12.59483: NTPv4, Server, length 48 -26:a1:fb:92:da:73 > 01:80:c2:00:00:00, ethertype MEDSA (0xdada), length 68: To_CPU, untagged, dev.port:vlan 0.2:0, BDPU, pri 7: LLC, dsap STP (0x42) Individual, ssap STP (0x42) Command, ctrl 0x03: STP 802.1d, Config, Flags [none], bridge-id 8000.26:a1:fb:92:da:73.8001, length 43 -26:a1:fb:92:da:73 > 01:80:c2:00:00:00, ethertype MEDSA (0xdada), length 68: To_CPU, untagged, dev.port:vlan 0.2:0, BDPU, pri 7: LLC, dsap STP (0x42) Individual, ssap STP (0x42) Command, ctrl 0x03: STP 802.1d, Config, Flags [none], bridge-id 8000.26:a1:fb:92:da:73.8001, length 43 -94:10:3e:80:bc:f3 > 00:22:02:00:18:44, ethertype MEDSA (0xdada), length 98: From_CPU, untagged, dev.port:vlan 0.3:0, pri 0: ethertype IPv4 (0x0800) 10.0.0.12.59809 > 66.228.42.59.123: NTPv4, Client, length 48 -94:10:3e:80:bc:f3 > 00:22:02:00:18:44, ethertype MEDSA (0xdada), length 98: From_CPU, untagged, dev.port:vlan 0.3:0, pri 0: ethertype IPv4 (0x0800) 10.0.0.12.58880 > 199.102.46.76.123: NTPv4, Client, length 48 -00:22:02:00:18:44 > 94:10:3e:80:bc:f3, ethertype MEDSA (0xdada), length 98: Forward, untagged, dev.port:vlan 0.3:0, pri 0: ethertype IPv4 (0x0800) 199.102.46.76.123 > 10.0.0.12.58880: NTPv4, Server, length 48 -00:22:02:00:18:44 > 94:10:3e:80:bc:f3, ethertype MEDSA (0xdada), length 98: Forward, untagged, dev.port:vlan 0.3:0, pri 0: ethertype IPv4 (0x0800) 66.228.42.59.123 > 10.0.0.12.59809: NTPv4, Server, length 48 -26:a1:fb:92:da:73 > 01:80:c2:00:00:00, ethertype MEDSA (0xdada), length 68: To_CPU, untagged, dev.port:vlan 0.2:0, BDPU, pri 7: LLC, dsap STP (0x42) Individual, ssap STP (0x42) Command, ctrl 0x03: STP 802.1d, Config, Flags [none], bridge-id 8000.26:a1:fb:92:da:73.8001, length 43 -94:10:3e:80:bc:f3 > 00:22:02:00:18:44, ethertype MEDSA (0xdada), length 98: From_CPU, untagged, dev.port:vlan 0.3:0, pri 0: ethertype IPv4 (0x0800) 10.0.0.12.41068 > 208.97.140.69.123: NTPv4, Client, length 48 -00:22:02:00:18:44 > 94:10:3e:80:bc:f3, ethertype MEDSA (0xdada), length 98: Forward, untagged, dev.port:vlan 0.3:0, pri 0: ethertype IPv4 (0x0800) 208.97.140.69.123 > 10.0.0.12.41068: NTPv4, Server, length 48 -26:a1:fb:92:da:73 > 01:80:c2:00:00:00, ethertype MEDSA (0xdada), length 68: To_CPU, untagged, dev.port:vlan 0.2:0, BDPU, pri 7: LLC, dsap STP (0x42) Individual, ssap STP (0x42) Command, ctrl 0x03: STP 802.1d, Config, Flags [none], bridge-id 8000.26:a1:fb:92:da:73.8001, length 43 -26:a1:fb:92:da:73 > 01:80:c2:00:00:00, ethertype MEDSA (0xdada), length 68: To_CPU, untagged, dev.port:vlan 0.2:0, BDPU, pri 7: LLC, dsap STP (0x42) Individual, ssap STP (0x42) Command, ctrl 0x03: STP 802.1d, Config, Flags [none], bridge-id 8000.26:a1:fb:92:da:73.8001, length 43 -94:10:3e:80:bc:f3 > 00:22:02:00:18:44, ethertype MEDSA (0xdada), length 350: From_CPU, untagged, dev.port:vlan 0.3:0, pri 0: ethertype IPv4 (0x0800) 10.0.0.12.68 > 10.0.0.1.67: BOOTP/DHCP, Request from 94:10:3e:80:bc:f3, length 300 -00:22:02:00:18:44 > 94:10:3e:80:bc:f3, ethertype MEDSA (0xdada), length 350: Forward, untagged, dev.port:vlan 0.3:0, pri 0: ethertype IPv4 (0x0800) 10.0.0.1.67 > 10.0.0.12.68: BOOTP/DHCP, Reply, length 300 -26:a1:fb:92:da:73 > 01:80:c2:00:00:00, ethertype MEDSA (0xdada), length 68: To_CPU, untagged, dev.port:vlan 0.2:0, BDPU, pri 7: LLC, dsap STP (0x42) Individual, ssap STP (0x42) Command, ctrl 0x03: STP 802.1d, Config, Flags [none], bridge-id 8000.26:a1:fb:92:da:73.8001, length 43 -26:a1:fb:92:da:73 > 01:80:c2:00:00:00, ethertype MEDSA (0xdada), length 68: To_CPU, untagged, dev.port:vlan 0.2:0, BDPU, pri 7: LLC, dsap STP (0x42) Individual, ssap STP (0x42) Command, ctrl 0x03: STP 802.1d, Config, Flags [none], bridge-id 8000.26:a1:fb:92:da:73.8001, length 43 -94:10:3e:80:bc:f3 > 00:22:02:00:18:44, ethertype MEDSA (0xdada), length 98: From_CPU, untagged, dev.port:vlan 0.3:0, pri 0: ethertype IPv4 (0x0800) 10.0.0.12.45651 > 171.66.97.126.123: NTPv4, Client, length 48 -00:22:02:00:18:44 > 94:10:3e:80:bc:f3, ethertype MEDSA (0xdada), length 98: Forward, untagged, dev.port:vlan 0.3:0, pri 0: ethertype IPv4 (0x0800) 171.66.97.126.123 > 10.0.0.12.45651: NTPv4, Server, length 48 diff --git a/tests/medsa.out b/tests/medsa.out deleted file mode 100644 index c81ce48..0000000 --- a/tests/medsa.out +++ /dev/null @@ -1,20 +0,0 @@ -MEDSA 0.2:0: STP 802.1d, Config, Flags [none], bridge-id 8000.26:a1:fb:92:da:73.8001, length 43 -MEDSA 0.3:0: IP 10.0.0.12.59483 > 198.110.48.12.123: NTPv4, Client, length 48 -MEDSA 0.3:0: IP 198.110.48.12.123 > 10.0.0.12.59483: NTPv4, Server, length 48 -MEDSA 0.2:0: STP 802.1d, Config, Flags [none], bridge-id 8000.26:a1:fb:92:da:73.8001, length 43 -MEDSA 0.2:0: STP 802.1d, Config, Flags [none], bridge-id 8000.26:a1:fb:92:da:73.8001, length 43 -MEDSA 0.3:0: IP 10.0.0.12.59809 > 66.228.42.59.123: NTPv4, Client, length 48 -MEDSA 0.3:0: IP 10.0.0.12.58880 > 199.102.46.76.123: NTPv4, Client, length 48 -MEDSA 0.3:0: IP 199.102.46.76.123 > 10.0.0.12.58880: NTPv4, Server, length 48 -MEDSA 0.3:0: IP 66.228.42.59.123 > 10.0.0.12.59809: NTPv4, Server, length 48 -MEDSA 0.2:0: STP 802.1d, Config, Flags [none], bridge-id 8000.26:a1:fb:92:da:73.8001, length 43 -MEDSA 0.3:0: IP 10.0.0.12.41068 > 208.97.140.69.123: NTPv4, Client, length 48 -MEDSA 0.3:0: IP 208.97.140.69.123 > 10.0.0.12.41068: NTPv4, Server, length 48 -MEDSA 0.2:0: STP 802.1d, Config, Flags [none], bridge-id 8000.26:a1:fb:92:da:73.8001, length 43 -MEDSA 0.2:0: STP 802.1d, Config, Flags [none], bridge-id 8000.26:a1:fb:92:da:73.8001, length 43 -MEDSA 0.3:0: IP 10.0.0.12.68 > 10.0.0.1.67: BOOTP/DHCP, Request from 94:10:3e:80:bc:f3, length 300 -MEDSA 0.3:0: IP 10.0.0.1.67 > 10.0.0.12.68: BOOTP/DHCP, Reply, length 300 -MEDSA 0.2:0: STP 802.1d, Config, Flags [none], bridge-id 8000.26:a1:fb:92:da:73.8001, length 43 -MEDSA 0.2:0: STP 802.1d, Config, Flags [none], bridge-id 8000.26:a1:fb:92:da:73.8001, length 43 -MEDSA 0.3:0: IP 10.0.0.12.45651 > 171.66.97.126.123: NTPv4, Client, length 48 -MEDSA 0.3:0: IP 171.66.97.126.123 > 10.0.0.12.45651: NTPv4, Server, length 48 diff --git a/tests/medsa.pcap b/tests/medsa.pcap deleted file mode 100644 index ab20710..0000000 Binary files a/tests/medsa.pcap and /dev/null differ diff --git a/tests/mpbgp-linklocal-nexthop.out b/tests/mpbgp-linklocal-nexthop.out deleted file mode 100644 index 9a4c2bd..0000000 --- a/tests/mpbgp-linklocal-nexthop.out +++ /dev/null @@ -1,10 +0,0 @@ -IP (tos 0xc0, ttl 64, id 22725, offset 0, flags [DF], proto TCP (6), length 142) - 30.0.0.1.49038 > 30.0.0.2.179: Flags [P.], cksum 0xd6dc (correct), seq 1284816775:1284816865, ack 1288709908, win 29, options [nop,nop,TS val 184150022 ecr 184150021], length 90: BGP - Update Message (2), length: 90 - Origin (1), length: 1, Flags [T]: Incomplete - AS Path (2), length: 4, Flags [T]: 1 - Next Hop (3), length: 4, Flags [T]: 0.0.0.0 - Multi-Protocol Reach NLRI (14), length: 46, Flags [O]: - AFI: IPv6 (2), SAFI: Unicast (1) - nexthop: dead:beef::1, fe80::1ff:fe01:0, nh-length: 32, no SNPA - 4:5::/64 diff --git a/tests/mpbgp-linklocal-nexthop.pcap b/tests/mpbgp-linklocal-nexthop.pcap deleted file mode 100644 index 1ac823d..0000000 Binary files a/tests/mpbgp-linklocal-nexthop.pcap and /dev/null differ diff --git a/tests/mpls-ldp-hello.out b/tests/mpls-ldp-hello.out deleted file mode 100644 index a8b2373..0000000 --- a/tests/mpls-ldp-hello.out +++ /dev/null @@ -1,10 +0,0 @@ -IP (tos 0xc0, ttl 1, id 15579, offset 0, flags [none], proto UDP (17), length 70) - 10.1.1.3.646 > 224.0.0.2.646: - LDP, Label-Space-ID: 10.1.0.2:0, pdu-length: 38 - Hello Message (0x0100), length: 28, Message ID: 0x00011970, Flags: [ignore if unknown] - Common Hello Parameters TLV (0x0400), length: 4, Flags: [ignore and don't forward if unknown] - Hold Time: 15s, Flags: [Link Hello] - IPv4 Transport Address TLV (0x0401), length: 4, Flags: [ignore and don't forward if unknown] - IPv4 Transport Address: 10.1.0.2 - Configuration Sequence Number TLV (0x0402), length: 4, Flags: [ignore and don't forward if unknown] - Sequence Number: 1 diff --git a/tests/mpls-ldp-hello.pcap b/tests/mpls-ldp-hello.pcap deleted file mode 100644 index a4a42b7..0000000 Binary files a/tests/mpls-ldp-hello.pcap and /dev/null differ diff --git a/tests/mpls-traceroute-v.out b/tests/mpls-traceroute-v.out deleted file mode 100644 index b70c2e3..0000000 --- a/tests/mpls-traceroute-v.out +++ /dev/null @@ -1,81 +0,0 @@ -MPLS (label 100704, exp 0, [S], ttl 1) - IP (tos 0x0, ttl 1, id 42316, offset 0, flags [none], proto UDP (17), length 40) - 12.4.4.4.42315 > 12.1.1.1.33435: UDP, length 12 -IP (tos 0x0, ttl 255, id 5014, offset 0, flags [DF], proto ICMP (1), length 168) - 10.5.0.1 > 12.4.4.4: ICMP time exceeded in-transit, length 148 - IP (tos 0x0, ttl 1, id 42316, offset 0, flags [none], proto UDP (17), length 40) - 12.4.4.4.42315 > 12.1.1.1.33435: UDP, length 12 - MPLS extension v2, checksum 0xc55f (correct), length 12 - MPLS Stack Entry Object (1), Class-Type: 1, length 8 - label 100704, exp 0, [S], ttl 1 -MPLS (label 100704, exp 0, [S], ttl 1) - IP (tos 0x0, ttl 1, id 42317, offset 0, flags [none], proto UDP (17), length 40) - 12.4.4.4.42315 > 12.1.1.1.33436: UDP, length 12 -IP (tos 0x0, ttl 255, id 5015, offset 0, flags [DF], proto ICMP (1), length 168) - 10.5.0.1 > 12.4.4.4: ICMP time exceeded in-transit, length 148 - IP (tos 0x0, ttl 1, id 42317, offset 0, flags [none], proto UDP (17), length 40) - 12.4.4.4.42315 > 12.1.1.1.33436: UDP, length 12 - MPLS extension v2, checksum 0xc55f (correct), length 12 - MPLS Stack Entry Object (1), Class-Type: 1, length 8 - label 100704, exp 0, [S], ttl 1 -MPLS (label 100704, exp 0, [S], ttl 1) - IP (tos 0x0, ttl 1, id 42318, offset 0, flags [none], proto UDP (17), length 40) - 12.4.4.4.42315 > 12.1.1.1.33437: UDP, length 12 -IP (tos 0x0, ttl 255, id 5016, offset 0, flags [DF], proto ICMP (1), length 168) - 10.5.0.1 > 12.4.4.4: ICMP time exceeded in-transit, length 148 - IP (tos 0x0, ttl 1, id 42318, offset 0, flags [none], proto UDP (17), length 40) - 12.4.4.4.42315 > 12.1.1.1.33437: UDP, length 12 - MPLS extension v2, checksum 0xc55f (correct), length 12 - MPLS Stack Entry Object (1), Class-Type: 1, length 8 - label 100704, exp 0, [S], ttl 1 -MPLS (label 100704, exp 0, [S], ttl 2) - IP (tos 0x0, ttl 2, id 42319, offset 0, flags [none], proto UDP (17), length 40) - 12.4.4.4.42315 > 12.1.1.1.33438: UDP, length 12 -IP (tos 0x0, ttl 254, id 59166, offset 0, flags [DF], proto ICMP (1), length 168) - 10.4.0.2 > 12.4.4.4: ICMP time exceeded in-transit, length 148 - IP (tos 0x0, ttl 1, id 42319, offset 0, flags [none], proto UDP (17), length 40) - 12.4.4.4.42315 > 12.1.1.1.33438: UDP, length 12 - MPLS extension v2, checksum 0xc4e4 (correct), length 12 - MPLS Stack Entry Object (1), Class-Type: 1, length 8 - label 102672, exp 0, [S], ttl 1 -MPLS (label 100704, exp 0, [S], ttl 2) - IP (tos 0x0, ttl 2, id 42320, offset 0, flags [none], proto UDP (17), length 40) - 12.4.4.4.42315 > 12.1.1.1.33439: UDP, length 12 -IP (tos 0x0, ttl 254, id 59167, offset 0, flags [DF], proto ICMP (1), length 168) - 10.4.0.2 > 12.4.4.4: ICMP time exceeded in-transit, length 148 - IP (tos 0x0, ttl 1, id 42320, offset 0, flags [none], proto UDP (17), length 40) - 12.4.4.4.42315 > 12.1.1.1.33439: UDP, length 12 - MPLS extension v2, checksum 0xc4e4 (correct), length 12 - MPLS Stack Entry Object (1), Class-Type: 1, length 8 - label 102672, exp 0, [S], ttl 1 -MPLS (label 100704, exp 0, [S], ttl 2) - IP (tos 0x0, ttl 2, id 42321, offset 0, flags [none], proto UDP (17), length 40) - 12.4.4.4.42315 > 12.1.1.1.33440: UDP, length 12 -IP (tos 0x0, ttl 254, id 59168, offset 0, flags [DF], proto ICMP (1), length 168) - 10.4.0.2 > 12.4.4.4: ICMP time exceeded in-transit, length 148 - IP (tos 0x0, ttl 1, id 42321, offset 0, flags [none], proto UDP (17), length 40) - 12.4.4.4.42315 > 12.1.1.1.33440: UDP, length 12 - MPLS extension v2, checksum 0xc4e4 (correct), length 12 - MPLS Stack Entry Object (1), Class-Type: 1, length 8 - label 102672, exp 0, [S], ttl 1 -MPLS (label 100704, exp 0, [S], ttl 3) - IP (tos 0x0, ttl 3, id 42322, offset 0, flags [none], proto UDP (17), length 40) - 12.4.4.4.42315 > 12.1.1.1.33441: UDP, length 12 -IP (tos 0x0, ttl 253, id 50599, offset 0, flags [DF], proto ICMP (1), length 56) - 12.1.1.1 > 12.4.4.4: ICMP 12.1.1.1 udp port 33441 unreachable, length 36 - IP (tos 0x0, ttl 1, id 42322, offset 0, flags [none], proto UDP (17), length 40) - 12.4.4.4.42315 > 12.1.1.1.33441: UDP, length 12 -MPLS (label 100704, exp 0, [S], ttl 3) - IP (tos 0x0, ttl 3, id 42323, offset 0, flags [none], proto UDP (17), length 40) - 12.4.4.4.42315 > 12.1.1.1.33442: UDP, length 12 -IP (tos 0x0, ttl 253, id 50600, offset 0, flags [DF], proto ICMP (1), length 56) - 12.1.1.1 > 12.4.4.4: ICMP 12.1.1.1 udp port 33442 unreachable, length 36 - IP (tos 0x0, ttl 1, id 42323, offset 0, flags [none], proto UDP (17), length 40) - 12.4.4.4.42315 > 12.1.1.1.33442: UDP, length 12 -MPLS (label 100704, exp 0, [S], ttl 3) - IP (tos 0x0, ttl 3, id 42324, offset 0, flags [none], proto UDP (17), length 40) - 12.4.4.4.42315 > 12.1.1.1.33443: UDP, length 12 -IP (tos 0x0, ttl 253, id 50601, offset 0, flags [DF], proto ICMP (1), length 56) - 12.1.1.1 > 12.4.4.4: ICMP 12.1.1.1 udp port 33443 unreachable, length 36 - IP (tos 0x0, ttl 1, id 42324, offset 0, flags [none], proto UDP (17), length 40) - 12.4.4.4.42315 > 12.1.1.1.33443: UDP, length 12 diff --git a/tests/mpls-traceroute.out b/tests/mpls-traceroute.out deleted file mode 100644 index fe8c116..0000000 --- a/tests/mpls-traceroute.out +++ /dev/null @@ -1,18 +0,0 @@ -MPLS (label 100704, exp 0, [S], ttl 1) IP 12.4.4.4.42315 > 12.1.1.1.33435: UDP, length 12 -IP 10.5.0.1 > 12.4.4.4: ICMP time exceeded in-transit, length 148 -MPLS (label 100704, exp 0, [S], ttl 1) IP 12.4.4.4.42315 > 12.1.1.1.33436: UDP, length 12 -IP 10.5.0.1 > 12.4.4.4: ICMP time exceeded in-transit, length 148 -MPLS (label 100704, exp 0, [S], ttl 1) IP 12.4.4.4.42315 > 12.1.1.1.33437: UDP, length 12 -IP 10.5.0.1 > 12.4.4.4: ICMP time exceeded in-transit, length 148 -MPLS (label 100704, exp 0, [S], ttl 2) IP 12.4.4.4.42315 > 12.1.1.1.33438: UDP, length 12 -IP 10.4.0.2 > 12.4.4.4: ICMP time exceeded in-transit, length 148 -MPLS (label 100704, exp 0, [S], ttl 2) IP 12.4.4.4.42315 > 12.1.1.1.33439: UDP, length 12 -IP 10.4.0.2 > 12.4.4.4: ICMP time exceeded in-transit, length 148 -MPLS (label 100704, exp 0, [S], ttl 2) IP 12.4.4.4.42315 > 12.1.1.1.33440: UDP, length 12 -IP 10.4.0.2 > 12.4.4.4: ICMP time exceeded in-transit, length 148 -MPLS (label 100704, exp 0, [S], ttl 3) IP 12.4.4.4.42315 > 12.1.1.1.33441: UDP, length 12 -IP 12.1.1.1 > 12.4.4.4: ICMP 12.1.1.1 udp port 33441 unreachable, length 36 -MPLS (label 100704, exp 0, [S], ttl 3) IP 12.4.4.4.42315 > 12.1.1.1.33442: UDP, length 12 -IP 12.1.1.1 > 12.4.4.4: ICMP 12.1.1.1 udp port 33442 unreachable, length 36 -MPLS (label 100704, exp 0, [S], ttl 3) IP 12.4.4.4.42315 > 12.1.1.1.33443: UDP, length 12 -IP 12.1.1.1 > 12.4.4.4: ICMP 12.1.1.1 udp port 33443 unreachable, length 36 diff --git a/tests/mpls-traceroute.pcap b/tests/mpls-traceroute.pcap deleted file mode 100644 index ac0b6b3..0000000 Binary files a/tests/mpls-traceroute.pcap and /dev/null differ diff --git a/tests/mptcp-fclose.out b/tests/mptcp-fclose.out deleted file mode 100644 index 90ab599..0000000 --- a/tests/mptcp-fclose.out +++ /dev/null @@ -1,11 +0,0 @@ -ARP, Request who-has 10.2.1.2 tell 10.2.1.1, length 28 -ARP, Reply 10.2.1.2 is-at d6:06:3c:4a:35:7a, length 28 -IP 10.1.1.2.37479 > 10.2.1.2.2002: Flags [S], seq 1895673170, win 14600, options [mss 1460,sackOK,TS val 38230 ecr 0,nop,wscale 6,mptcp capable csum {0x9b59be3d695e66a7}], length 0 -IP 10.2.1.2.2002 > 10.1.1.2.37479: Flags [S.], seq 2868811558, ack 1895673171, win 14280, options [mss 1460,sackOK,TS val 4294943148 ecr 38230,nop,wscale 6,mptcp capable csum {0xd005b1ab34bad344}], length 0 -IP 10.1.1.2.37479 > 10.2.1.2.2002: Flags [.], ack 1, win 229, options [nop,nop,TS val 38230 ecr 4294943148,mptcp capable csum {0x9b59be3d695e66a7,0xd005b1ab34bad344}], length 0 -IP 10.1.1.2.37479 > 10.2.1.2.2002: Flags [P.], seq 1:2, ack 1, win 229, options [nop,nop,TS val 38230 ecr 4294943148,mptcp dss ack 3386645601 seq 2976985014 subseq 1 len 1 csum 0x9e91], length 1 -IP 10.2.1.2.2002 > 10.1.1.2.37479: Flags [.], ack 2, win 224, options [nop,nop,TS val 4294943148 ecr 38230,mptcp dss ack 2976985015], length 0 -IP 10.2.1.2.2002 > 10.1.1.2.37479: Flags [P.], seq 1:2, ack 2, win 224, options [nop,nop,TS val 4294943250 ecr 38230,mptcp dss ack 2976985015 seq 3386645601 subseq 1 len 1 csum 0x54ab], length 1 -IP 10.1.1.2.37479 > 10.2.1.2.2002: Flags [.], ack 2, win 229, options [nop,nop,TS val 38334 ecr 4294943250,mptcp dss ack 3386645602], length 0 -IP 10.1.1.2.37479 > 10.2.1.2.2002: Flags [.], ack 2, win 229, options [nop,nop,TS val 38734 ecr 4294943250,mptcp fast-close key 0xd005b1ab34bad344], length 0 -IP 10.2.1.2.2002 > 10.1.1.2.37479: Flags [R.], seq 2, ack 2, win 224, options [nop,nop,TS val 4294943650 ecr 38734,mptcp dss ack 2976985015], length 0 diff --git a/tests/mptcp-fclose.pcap b/tests/mptcp-fclose.pcap deleted file mode 100644 index 6949548..0000000 Binary files a/tests/mptcp-fclose.pcap and /dev/null differ diff --git a/tests/mptcp.out b/tests/mptcp.out deleted file mode 100644 index e52cab1..0000000 --- a/tests/mptcp.out +++ /dev/null @@ -1,264 +0,0 @@ -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [S], seq 2912457561, win 14600, options [mss 1460,sackOK,TS val 4294943152 ecr 0,nop,wscale 6,mptcp capable csum {0x9c9eabd1e46a33b2}], length 0 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [S.], seq 125971326, ack 2912457562, win 14280, options [mss 1460,sackOK,TS val 4294943467 ecr 4294943152,nop,wscale 5,mptcp capable csum {0x967d2770b6960552}], length 0 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 1, win 229, options [nop,nop,TS val 4294943152 ecr 4294943467,mptcp capable csum {0x9c9eabd1e46a33b2,0x967d2770b6960552}], length 0 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 1:42, ack 1, win 447, options [nop,nop,TS val 4294943474 ecr 4294943152,mptcp add-addr id 1 10.1.2.2,mptcp dss ack 3576348362 seq 3518592144 subseq 1 len 41 csum 0x82f], length 41 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 42, win 229, options [nop,nop,TS val 4294943168 ecr 4294943474,mptcp dss ack 3518592185], length 0 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [P.], seq 1:42, ack 42, win 229, options [nop,nop,TS val 4294943168 ecr 4294943474,mptcp dss ack 3518592185 seq 3576348362 subseq 1 len 41 csum 0x45c9], length 41 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [.], ack 42, win 447, options [nop,nop,TS val 4294943474 ecr 4294943168,mptcp dss ack 3576348403], length 0 -IP 10.2.1.2.41221 > 10.1.2.2.22: Flags [S], seq 1863826096, win 14600, options [mss 1460,sackOK,TS val 4294943168 ecr 0,nop,wscale 6,mptcp join id 0 token 0xe47f0142 nonce 0x1b665a18], length 0 -IP 10.1.2.2.22 > 10.2.1.2.41221: Flags [S.], seq 1704897135, ack 1863826097, win 14280, options [mss 1460,sackOK,TS val 4294943474 ecr 4294943168,nop,wscale 5,mptcp join id 1 hmac 0x5ab680c7884af03d nonce 0x33abe9d5], length 0 -IP 10.2.1.2.41221 > 10.1.2.2.22: Flags [.], ack 1, win 229, options [nop,nop,TS val 4294943168 ecr 4294943474,mptcp join hmac 0xcb7b87f5e5f0502f43b535fb70ef6607df2e6c7a], length 0 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [P.], seq 42:890, ack 42, win 229, options [nop,nop,TS val 4294943168 ecr 4294943474,mptcp dss ack 3518592185 seq 3576348403 subseq 42 len 848 csum 0x6d11], length 848 -IP 10.1.2.2.22 > 10.2.1.2.41221: Flags [.], ack 1, win 447, options [nop,nop,TS val 4294943474 ecr 4294943168,mptcp dss ack 3576348403], length 0 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [.], ack 890, win 500, options [nop,nop,TS val 4294943474 ecr 4294943168,mptcp dss ack 3576349251], length 0 -IP 10.1.2.2.22 > 10.2.1.2.41221: Flags [P.], seq 1:785, ack 1, win 500, options [nop,nop,TS val 4294943474 ecr 4294943168,mptcp dss ack 3576349251 seq 3518592185 subseq 1 len 784 csum 0x5187], length 784 -IP 10.2.1.2.41221 > 10.1.2.2.22: Flags [.], ack 785, win 253, options [nop,nop,TS val 4294943170 ecr 4294943474,mptcp dss ack 3518592969], length 0 -IP 10.2.1.2.41221 > 10.1.2.2.22: Flags [P.], seq 1:25, ack 785, win 253, options [nop,nop,TS val 4294943170 ecr 4294943474,mptcp dss ack 3518592969 seq 3576349251 subseq 1 len 24 csum 0xec8a], length 24 -IP 10.1.2.2.22 > 10.2.1.2.41221: Flags [.], ack 25, win 500, options [nop,nop,TS val 4294943474 ecr 4294943170,mptcp dss ack 3576349275], length 0 -IP 10.1.2.2.22 > 10.2.1.2.41221: Flags [P.], seq 785:937, ack 25, win 500, options [nop,nop,TS val 4294943474 ecr 4294943170,mptcp dss ack 3576349275 seq 3518592969 subseq 785 len 152 csum 0x217c], length 152 -IP 10.2.1.2.41221 > 10.1.2.2.22: Flags [P.], seq 25:169, ack 937, win 258, options [nop,nop,TS val 4294943170 ecr 4294943474,mptcp dss ack 3518593121 seq 3576349275 subseq 25 len 144 csum 0x7220], length 144 -IP 10.1.2.2.22 > 10.2.1.2.41221: Flags [P.], seq 937:1657, ack 169, win 533, options [nop,nop,TS val 4294943474 ecr 4294943170,mptcp dss ack 3576349419 seq 3518593121 subseq 937 len 720 csum 0xfb83], length 720 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [P.], seq 890:906, ack 42, win 280, options [nop,nop,TS val 4294943172 ecr 4294943474,mptcp dss ack 3518593841 seq 3576349419 subseq 890 len 16 csum 0xc87], length 16 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [.], ack 906, win 533, options [nop,nop,TS val 4294943474 ecr 4294943172,mptcp dss ack 3576349435], length 0 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [P.], seq 906:954, ack 42, win 280, options [nop,nop,TS val 4294943172 ecr 4294943474,mptcp dss ack 3518593841 seq 3576349435 subseq 906 len 48 csum 0x36d0], length 48 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [.], ack 954, win 533, options [nop,nop,TS val 4294943474 ecr 4294943172,mptcp dss ack 3576349483], length 0 -IP 10.1.2.2.22 > 10.2.1.2.41221: Flags [P.], seq 1657:1705, ack 169, win 533, options [nop,nop,TS val 4294943474 ecr 4294943170,mptcp dss ack 3576349483 seq 3518593841 subseq 1657 len 48 csum 0xb8f3], length 48 -IP 10.2.1.2.41221 > 10.1.2.2.22: Flags [.], ack 1705, win 280, options [nop,nop,TS val 4294943172 ecr 4294943474,mptcp dss ack 3518593889], length 0 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [P.], seq 954:1018, ack 42, win 280, options [nop,nop,TS val 4294943172 ecr 4294943474,mptcp dss ack 3518593889 seq 3576349483 subseq 954 len 64 csum 0x71f6], length 64 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [.], ack 1018, win 533, options [nop,nop,TS val 4294943474 ecr 4294943172,mptcp dss ack 3576349547], length 0 -IP 10.1.2.2.22 > 10.2.1.2.41221: Flags [P.], seq 1705:1769, ack 169, win 533, options [nop,nop,TS val 4294943474 ecr 4294943172,mptcp dss ack 3576349547 seq 3518593889 subseq 1705 len 64 csum 0x67b9], length 64 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [P.], seq 1018:1386, ack 42, win 280, options [nop,nop,TS val 4294943175 ecr 4294943474,mptcp dss ack 3518593953 seq 3576349547 subseq 1018 len 368 csum 0x81d2], length 368 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [.], ack 1386, win 567, options [nop,nop,TS val 4294943474 ecr 4294943175,mptcp dss ack 3576349915], length 0 -IP 10.1.2.2.22 > 10.2.1.2.41221: Flags [P.], seq 1769:2089, ack 169, win 567, options [nop,nop,TS val 4294943474 ecr 4294943172,mptcp dss ack 3576349915 seq 3518593953 subseq 1769 len 320 csum 0x5fc5], length 320 -IP 10.2.1.2.41221 > 10.1.2.2.22: Flags [.], ack 2089, win 290, options [nop,nop,TS val 4294943175 ecr 4294943474,mptcp dss ack 3518594273], length 0 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [P.], seq 1386:2026, ack 42, win 290, options [nop,nop,TS val 4294943175 ecr 4294943474,mptcp dss ack 3518594273 seq 3576349915 subseq 1386 len 640 csum 0x5af4], length 640 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [.], ack 2026, win 607, options [nop,nop,TS val 4294943485 ecr 4294943175,mptcp dss ack 3576350555], length 0 -IP 10.1.2.2.22 > 10.2.1.2.41221: Flags [P.], seq 2089:2153, ack 169, win 607, options [nop,nop,TS val 4294943485 ecr 4294943175,mptcp dss ack 3576350555 seq 3518594273 subseq 2089 len 64 csum 0x548b], length 64 -IP 10.2.1.2.41221 > 10.1.2.2.22: Flags [.], ack 2153, win 290, options [nop,nop,TS val 4294943179 ecr 4294943485,mptcp dss ack 3518594337], length 0 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [P.], seq 2026:2170, ack 42, win 290, options [nop,nop,TS val 4294943301 ecr 4294943485,mptcp dss ack 3518594337 seq 3576350555 subseq 2026 len 144 csum 0x62d7], length 144 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [.], ack 2170, win 640, options [nop,nop,TS val 4294943610 ecr 4294943301,mptcp dss ack 3576350699], length 0 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 42:74, ack 2170, win 640, options [nop,nop,TS val 4294943611 ecr 4294943301,mptcp dss ack 3576350699 seq 3518594337 subseq 42 len 32 csum 0x24cb], length 32 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [P.], seq 2170:2298, ack 74, win 290, options [nop,nop,TS val 4294943304 ecr 4294943611,mptcp dss ack 3518594369 seq 3576350699 subseq 2170 len 128 csum 0x33ac], length 128 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 74:122, ack 2298, win 674, options [nop,nop,TS val 4294943611 ecr 4294943304,mptcp dss ack 3576350827 seq 3518594369 subseq 74 len 48 csum 0xf616], length 48 -IP 10.2.1.2.41221 > 10.1.2.2.22: Flags [P.], seq 169:617, ack 2153, win 290, options [nop,nop,TS val 4294943306 ecr 4294943485,mptcp dss ack 3518594417 seq 3576350827 subseq 169 len 448 csum 0xe192], length 448 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 122:234, ack 2298, win 707, options [nop,nop,TS val 4294943611 ecr 4294943304,mptcp dss ack 3576351275 seq 3518594417 subseq 122 len 112 csum 0xeb29], length 112 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 234, win 290, options [nop,nop,TS val 4294943306 ecr 4294943611,mptcp dss ack 3518594529], length 0 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 234:346, ack 2298, win 707, options [nop,nop,TS val 4294943611 ecr 4294943306,mptcp dss ack 3576351275 seq 3518594529 subseq 234 len 112 csum 0x70c0], length 112 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 346:538, ack 2298, win 707, options [nop,nop,TS val 4294943611 ecr 4294943306,mptcp dss ack 3576351275 seq 3518594641 subseq 346 len 192 csum 0x91c], length 192 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 538, win 296, options [nop,nop,TS val 4294943309 ecr 4294943611,mptcp dss ack 3518594833], length 0 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 538:634, ack 2298, win 707, options [nop,nop,TS val 4294943611 ecr 4294943309,mptcp dss ack 3576351275 seq 3518594833 subseq 538 len 96 csum 0x5851], length 96 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 634:778, ack 2298, win 707, options [nop,nop,TS val 4294943611 ecr 4294943309,mptcp dss ack 3576351275 seq 3518594929 subseq 634 len 144 csum 0x405a], length 144 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 778, win 301, options [nop,nop,TS val 4294943309 ecr 4294943611,mptcp dss ack 3518595073], length 0 -IP 10.1.2.2.22 > 10.2.1.2.41221: Flags [.], ack 617, win 707, options [nop,nop,TS val 4294943621 ecr 4294943306,mptcp dss ack 3576351275], length 0 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 778:858, ack 2298, win 707, options [nop,nop,TS val 4294943621 ecr 4294943309,mptcp dss ack 3576351275 seq 3518595073 subseq 778 len 80 csum 0x3c7b], length 80 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 858, win 301, options [nop,nop,TS val 4294943316 ecr 4294943621,mptcp dss ack 3518595153], length 0 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [P.], seq 2298:2346, ack 858, win 301, options [nop,nop,TS val 4294943328 ecr 4294943621,mptcp dss ack 3518595153 seq 3576351275 subseq 2298 len 48 csum 0xe0ce], length 48 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 858:906, ack 2346, win 707, options [nop,nop,TS val 4294943629 ecr 4294943328,mptcp dss ack 3576351323 seq 3518595153 subseq 858 len 48 csum 0xbe20], length 48 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 906, win 301, options [nop,nop,TS val 4294943328 ecr 4294943629,mptcp dss ack 3518595201], length 0 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 906:1034, ack 2346, win 707, options [nop,nop,TS val 4294943645 ecr 4294943328,mptcp dss ack 3576351323 seq 3518595201 subseq 906 len 128 csum 0x3d9d], length 128 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 1034, win 305, options [nop,nop,TS val 4294943339 ecr 4294943645,mptcp dss ack 3518595329], length 0 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [P.], seq 2346:2394, ack 1034, win 305, options [nop,nop,TS val 4294943343 ecr 4294943645,mptcp dss ack 3518595329 seq 3576351323 subseq 2346 len 48 csum 0x8505], length 48 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 1034:1114, ack 2394, win 707, options [nop,nop,TS val 4294943651 ecr 4294943343,mptcp dss ack 3576351371 seq 3518595329 subseq 1034 len 80 csum 0xb3da], length 80 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 1114, win 305, options [nop,nop,TS val 4294943343 ecr 4294943651,mptcp dss ack 3518595409], length 0 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [P.], seq 2394:2442, ack 1114, win 305, options [nop,nop,TS val 4294943355 ecr 4294943651,mptcp dss ack 3518595409 seq 3576351371 subseq 2394 len 48 csum 0xd46b], length 48 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 1114:1194, ack 2442, win 707, options [nop,nop,TS val 4294943663 ecr 4294943355,mptcp dss ack 3576351419 seq 3518595409 subseq 1114 len 80 csum 0xfe3d], length 80 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 1194, win 305, options [nop,nop,TS val 4294943355 ecr 4294943663,mptcp dss ack 3518595489], length 0 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [P.], seq 2442:2490, ack 1194, win 305, options [nop,nop,TS val 4294943387 ecr 4294943663,mptcp dss ack 3518595489 seq 3576351419 subseq 2442 len 48 csum 0xd83], length 48 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 1194:1242, ack 2490, win 707, options [nop,nop,TS val 4294943695 ecr 4294943387,mptcp dss ack 3576351467 seq 3518595489 subseq 1194 len 48 csum 0xad99], length 48 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 1242, win 305, options [nop,nop,TS val 4294943387 ecr 4294943695,mptcp dss ack 3518595537], length 0 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [P.], seq 2490:2538, ack 1242, win 305, options [nop,nop,TS val 4294943395 ecr 4294943695,mptcp dss ack 3518595537 seq 3576351467 subseq 2490 len 48 csum 0x3689], length 48 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 1242:1290, ack 2538, win 707, options [nop,nop,TS val 4294943703 ecr 4294943395,mptcp dss ack 3576351515 seq 3518595537 subseq 1242 len 48 csum 0xf0cf], length 48 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 1290, win 305, options [nop,nop,TS val 4294943395 ecr 4294943703,mptcp dss ack 3518595585], length 0 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [P.], seq 2538:2586, ack 1290, win 305, options [nop,nop,TS val 4294943408 ecr 4294943703,mptcp dss ack 3518595585 seq 3576351515 subseq 2538 len 48 csum 0xed5f], length 48 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 1290:1338, ack 2586, win 707, options [nop,nop,TS val 4294943717 ecr 4294943408,mptcp dss ack 3576351563 seq 3518595585 subseq 1290 len 48 csum 0xf2ec], length 48 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 1338, win 305, options [nop,nop,TS val 4294943408 ecr 4294943717,mptcp dss ack 3518595633], length 0 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [P.], seq 2586:2634, ack 1338, win 305, options [nop,nop,TS val 4294943417 ecr 4294943717,mptcp dss ack 3518595633 seq 3576351563 subseq 2586 len 48 csum 0x3678], length 48 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 1338:1386, ack 2634, win 707, options [nop,nop,TS val 4294943726 ecr 4294943417,mptcp dss ack 3576351611 seq 3518595633 subseq 1338 len 48 csum 0xc9a1], length 48 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 1386, win 305, options [nop,nop,TS val 4294943417 ecr 4294943726,mptcp dss ack 3518595681], length 0 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [P.], seq 2634:2682, ack 1386, win 305, options [nop,nop,TS val 4294943424 ecr 4294943726,mptcp dss ack 3518595681 seq 3576351611 subseq 2634 len 48 csum 0x54c7], length 48 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 1386:1434, ack 2682, win 707, options [nop,nop,TS val 4294943733 ecr 4294943424,mptcp dss ack 3576351659 seq 3518595681 subseq 1386 len 48 csum 0xf5e9], length 48 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 1434, win 305, options [nop,nop,TS val 4294943424 ecr 4294943733,mptcp dss ack 3518595729], length 0 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [P.], seq 2682:2730, ack 1434, win 305, options [nop,nop,TS val 4294943435 ecr 4294943733,mptcp dss ack 3518595729 seq 3576351659 subseq 2682 len 48 csum 0xc90a], length 48 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 1434:1482, ack 2730, win 707, options [nop,nop,TS val 4294943743 ecr 4294943435,mptcp dss ack 3576351707 seq 3518595729 subseq 1434 len 48 csum 0x4e7d], length 48 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 1482, win 305, options [nop,nop,TS val 4294943435 ecr 4294943743,mptcp dss ack 3518595777], length 0 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [P.], seq 2730:2778, ack 1482, win 305, options [nop,nop,TS val 4294943440 ecr 4294943743,mptcp dss ack 3518595777 seq 3576351707 subseq 2730 len 48 csum 0x7b3d], length 48 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 1482:1530, ack 2778, win 707, options [nop,nop,TS val 4294943749 ecr 4294943440,mptcp dss ack 3576351755 seq 3518595777 subseq 1482 len 48 csum 0x83e2], length 48 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 1530, win 305, options [nop,nop,TS val 4294943440 ecr 4294943749,mptcp dss ack 3518595825], length 0 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [P.], seq 2778:2826, ack 1530, win 305, options [nop,nop,TS val 4294943453 ecr 4294943749,mptcp dss ack 3518595825 seq 3576351755 subseq 2778 len 48 csum 0x6e36], length 48 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 1530:1578, ack 2826, win 707, options [nop,nop,TS val 4294943762 ecr 4294943453,mptcp dss ack 3576351803 seq 3518595825 subseq 1530 len 48 csum 0xb348], length 48 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 1578, win 305, options [nop,nop,TS val 4294943453 ecr 4294943762,mptcp dss ack 3518595873], length 0 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [P.], seq 2826:2874, ack 1578, win 305, options [nop,nop,TS val 4294943458 ecr 4294943762,mptcp dss ack 3518595873 seq 3576351803 subseq 2826 len 48 csum 0x1991], length 48 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 1578:1626, ack 2874, win 707, options [nop,nop,TS val 4294943766 ecr 4294943458,mptcp dss ack 3576351851 seq 3518595873 subseq 1578 len 48 csum 0xb4f], length 48 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 1626, win 305, options [nop,nop,TS val 4294943458 ecr 4294943766,mptcp dss ack 3518595921], length 0 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 1626:1722, ack 2874, win 707, options [nop,nop,TS val 4294943766 ecr 4294943458,mptcp dss ack 3576351851 seq 3518595921 subseq 1626 len 96 csum 0x9334], length 96 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 1722:1834, ack 2874, win 707, options [nop,nop,TS val 4294943766 ecr 4294943458,mptcp dss ack 3576351851 seq 3518596017 subseq 1722 len 112 csum 0xdc3f], length 112 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 1722, win 305, options [nop,nop,TS val 4294943460 ecr 4294943766,mptcp dss ack 3518596017], length 0 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 1834, win 305, options [nop,nop,TS val 4294943460 ecr 4294943766,mptcp dss ack 3518596129], length 0 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 1834:1946, ack 2874, win 707, options [nop,nop,TS val 4294943766 ecr 4294943460,mptcp dss ack 3576351851 seq 3518596129 subseq 1834 len 112 csum 0x349e], length 112 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 1946, win 305, options [nop,nop,TS val 4294943460 ecr 4294943766,mptcp dss ack 3518596241], length 0 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 1946:2042, ack 2874, win 707, options [nop,nop,TS val 4294943766 ecr 4294943460,mptcp dss ack 3576351851 seq 3518596241 subseq 1946 len 96 csum 0xd5fe], length 96 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 2042, win 305, options [nop,nop,TS val 4294943460 ecr 4294943766,mptcp dss ack 3518596337], length 0 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 2042:2154, ack 2874, win 707, options [nop,nop,TS val 4294943766 ecr 4294943460,mptcp dss ack 3576351851 seq 3518596337 subseq 2042 len 112 csum 0x2c14], length 112 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 2154, win 305, options [nop,nop,TS val 4294943460 ecr 4294943766,mptcp dss ack 3518596449], length 0 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 2154:2266, ack 2874, win 707, options [nop,nop,TS val 4294943766 ecr 4294943460,mptcp dss ack 3576351851 seq 3518596449 subseq 2154 len 112 csum 0xe76e], length 112 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 2266, win 305, options [nop,nop,TS val 4294943460 ecr 4294943766,mptcp dss ack 3518596561], length 0 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 2266:2346, ack 2874, win 707, options [nop,nop,TS val 4294943766 ecr 4294943460,mptcp dss ack 3576351851 seq 3518596561 subseq 2266 len 80 csum 0x839a], length 80 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 2346:2442, ack 2874, win 707, options [nop,nop,TS val 4294943766 ecr 4294943460,mptcp dss ack 3576351851 seq 3518596641 subseq 2346 len 96 csum 0xc1ee], length 96 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 2346, win 305, options [nop,nop,TS val 4294943460 ecr 4294943766,mptcp dss ack 3518596641], length 0 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 2442, win 305, options [nop,nop,TS val 4294943460 ecr 4294943766,mptcp dss ack 3518596737], length 0 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 2442:2506, ack 2874, win 707, options [nop,nop,TS val 4294943766 ecr 4294943460,mptcp dss ack 3576351851 seq 3518596737 subseq 2442 len 64 csum 0xe67], length 64 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 2506:2554, ack 2874, win 707, options [nop,nop,TS val 4294943766 ecr 4294943460,mptcp dss ack 3576351851 seq 3518596801 subseq 2506 len 48 csum 0x1474], length 48 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 2506, win 305, options [nop,nop,TS val 4294943460 ecr 4294943766,mptcp dss ack 3518596801], length 0 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 2554, win 305, options [nop,nop,TS val 4294943460 ecr 4294943766,mptcp dss ack 3518596849], length 0 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 2554:2650, ack 2874, win 707, options [nop,nop,TS val 4294943766 ecr 4294943460,mptcp dss ack 3576351851 seq 3518596849 subseq 2554 len 96 csum 0x5dc1], length 96 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 2650, win 305, options [nop,nop,TS val 4294943460 ecr 4294943766,mptcp dss ack 3518596945], length 0 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 2650:2762, ack 2874, win 707, options [nop,nop,TS val 4294943766 ecr 4294943460,mptcp dss ack 3576351851 seq 3518596945 subseq 2650 len 112 csum 0xa20c], length 112 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 2762, win 305, options [nop,nop,TS val 4294943460 ecr 4294943766,mptcp dss ack 3518597057], length 0 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 2762:2874, ack 2874, win 707, options [nop,nop,TS val 4294943766 ecr 4294943460,mptcp dss ack 3576351851 seq 3518597057 subseq 2762 len 112 csum 0x643c], length 112 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 2874, win 305, options [nop,nop,TS val 4294943460 ecr 4294943766,mptcp dss ack 3518597169], length 0 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 2874:2970, ack 2874, win 707, options [nop,nop,TS val 4294943766 ecr 4294943460,mptcp dss ack 3576351851 seq 3518597169 subseq 2874 len 96 csum 0x5244], length 96 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 2970, win 305, options [nop,nop,TS val 4294943460 ecr 4294943766,mptcp dss ack 3518597265], length 0 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 2970:3082, ack 2874, win 707, options [nop,nop,TS val 4294943766 ecr 4294943460,mptcp dss ack 3576351851 seq 3518597265 subseq 2970 len 112 csum 0x295a], length 112 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 3082, win 305, options [nop,nop,TS val 4294943460 ecr 4294943766,mptcp dss ack 3518597377], length 0 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 3082:3194, ack 2874, win 707, options [nop,nop,TS val 4294943766 ecr 4294943460,mptcp dss ack 3576351851 seq 3518597377 subseq 3082 len 112 csum 0x510b], length 112 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 3194, win 305, options [nop,nop,TS val 4294943460 ecr 4294943766,mptcp dss ack 3518597489], length 0 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 3194:3274, ack 2874, win 707, options [nop,nop,TS val 4294943766 ecr 4294943460,mptcp dss ack 3576351851 seq 3518597489 subseq 3194 len 80 csum 0xc29a], length 80 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 3274, win 305, options [nop,nop,TS val 4294943460 ecr 4294943766,mptcp dss ack 3518597569], length 0 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 3274:3370, ack 2874, win 707, options [nop,nop,TS val 4294943766 ecr 4294943460,mptcp dss ack 3576351851 seq 3518597569 subseq 3274 len 96 csum 0x22a5], length 96 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 3370, win 305, options [nop,nop,TS val 4294943460 ecr 4294943766,mptcp dss ack 3518597665], length 0 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 3370:3434, ack 2874, win 707, options [nop,nop,TS val 4294943766 ecr 4294943460,mptcp dss ack 3576351851 seq 3518597665 subseq 3370 len 64 csum 0xe385], length 64 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 3434, win 305, options [nop,nop,TS val 4294943460 ecr 4294943766,mptcp dss ack 3518597729], length 0 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 3434:3482, ack 2874, win 707, options [nop,nop,TS val 4294943766 ecr 4294943460,mptcp dss ack 3576351851 seq 3518597729 subseq 3434 len 48 csum 0xd6b0], length 48 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 3482, win 305, options [nop,nop,TS val 4294943460 ecr 4294943766,mptcp dss ack 3518597777], length 0 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 3482:3562, ack 2874, win 707, options [nop,nop,TS val 4294943766 ecr 4294943460,mptcp dss ack 3576351851 seq 3518597777 subseq 3482 len 80 csum 0xec9d], length 80 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 3562, win 305, options [nop,nop,TS val 4294943460 ecr 4294943766,mptcp dss ack 3518597857], length 0 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 3562:3658, ack 2874, win 707, options [nop,nop,TS val 4294943766 ecr 4294943460,mptcp dss ack 3576351851 seq 3518597857 subseq 3562 len 96 csum 0x1eee], length 96 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 3658, win 305, options [nop,nop,TS val 4294943460 ecr 4294943766,mptcp dss ack 3518597953], length 0 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 3658:3738, ack 2874, win 707, options [nop,nop,TS val 4294943766 ecr 4294943460,mptcp dss ack 3576351851 seq 3518597953 subseq 3658 len 80 csum 0xbc5e], length 80 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 3738, win 305, options [nop,nop,TS val 4294943460 ecr 4294943766,mptcp dss ack 3518598033], length 0 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 3738:3834, ack 2874, win 707, options [nop,nop,TS val 4294943766 ecr 4294943460,mptcp dss ack 3576351851 seq 3518598033 subseq 3738 len 96 csum 0xe], length 96 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 3834, win 305, options [nop,nop,TS val 4294943460 ecr 4294943766,mptcp dss ack 3518598129], length 0 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 3834:3930, ack 2874, win 707, options [nop,nop,TS val 4294943766 ecr 4294943460,mptcp dss ack 3576351851 seq 3518598129 subseq 3834 len 96 csum 0xd42], length 96 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 3930, win 305, options [nop,nop,TS val 4294943460 ecr 4294943766,mptcp dss ack 3518598225], length 0 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 3930:4042, ack 2874, win 707, options [nop,nop,TS val 4294943766 ecr 4294943460,mptcp dss ack 3576351851 seq 3518598225 subseq 3930 len 112 csum 0xb006], length 112 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 4042, win 305, options [nop,nop,TS val 4294943460 ecr 4294943766,mptcp dss ack 3518598337], length 0 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 4042:4122, ack 2874, win 707, options [nop,nop,TS val 4294943766 ecr 4294943460,mptcp dss ack 3576351851 seq 3518598337 subseq 4042 len 80 csum 0x986f], length 80 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 4122, win 305, options [nop,nop,TS val 4294943460 ecr 4294943766,mptcp dss ack 3518598417], length 0 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 4122:4218, ack 2874, win 707, options [nop,nop,TS val 4294943766 ecr 4294943460,mptcp dss ack 3576351851 seq 3518598417 subseq 4122 len 96 csum 0x43ff], length 96 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 4218, win 305, options [nop,nop,TS val 4294943460 ecr 4294943766,mptcp dss ack 3518598513], length 0 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 4218:4266, ack 2874, win 707, options [nop,nop,TS val 4294943766 ecr 4294943460,mptcp dss ack 3576351851 seq 3518598513 subseq 4218 len 48 csum 0x8666], length 48 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 4266, win 305, options [nop,nop,TS val 4294943460 ecr 4294943766,mptcp dss ack 3518598561], length 0 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 4266:4346, ack 2874, win 707, options [nop,nop,TS val 4294943766 ecr 4294943460,mptcp dss ack 3576351851 seq 3518598561 subseq 4266 len 80 csum 0x9239], length 80 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 4346, win 305, options [nop,nop,TS val 4294943460 ecr 4294943766,mptcp dss ack 3518598641], length 0 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [P.], seq 2874:2922, ack 4346, win 305, options [nop,nop,TS val 4294943484 ecr 4294943766,mptcp dss ack 3518598641 seq 3576351851 subseq 2874 len 48 csum 0xd397], length 48 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 4346:4394, ack 2922, win 707, options [nop,nop,TS val 4294943793 ecr 4294943484,mptcp dss ack 3576351899 seq 3518598641 subseq 4346 len 48 csum 0xeeaa], length 48 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 4394, win 305, options [nop,nop,TS val 4294943484 ecr 4294943793,mptcp dss ack 3518598689], length 0 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [P.], seq 2922:2970, ack 4394, win 305, options [nop,nop,TS val 4294943496 ecr 4294943793,mptcp dss ack 3518598689 seq 3576351899 subseq 2922 len 48 csum 0x48a7], length 48 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 4394:4442, ack 2970, win 707, options [nop,nop,TS val 4294943805 ecr 4294943496,mptcp dss ack 3576351947 seq 3518598689 subseq 4394 len 48 csum 0xc354], length 48 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 4442, win 305, options [nop,nop,TS val 4294943496 ecr 4294943805,mptcp dss ack 3518598737], length 0 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [P.], seq 2970:3018, ack 4442, win 305, options [nop,nop,TS val 4294943513 ecr 4294943805,mptcp dss ack 3518598737 seq 3576351947 subseq 2970 len 48 csum 0xf6d], length 48 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 4442:4490, ack 3018, win 707, options [nop,nop,TS val 4294943822 ecr 4294943513,mptcp dss ack 3576351995 seq 3518598737 subseq 4442 len 48 csum 0xe0e2], length 48 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 4490, win 305, options [nop,nop,TS val 4294943513 ecr 4294943822,mptcp dss ack 3518598785], length 0 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [P.], seq 3018:3066, ack 4490, win 305, options [nop,nop,TS val 4294943521 ecr 4294943822,mptcp dss ack 3518598785 seq 3576351995 subseq 3018 len 48 csum 0xf320], length 48 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 4490:4538, ack 3066, win 707, options [nop,nop,TS val 4294943830 ecr 4294943521,mptcp dss ack 3576352043 seq 3518598785 subseq 4490 len 48 csum 0x9c04], length 48 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 4538, win 305, options [nop,nop,TS val 4294943521 ecr 4294943830,mptcp dss ack 3518598833], length 0 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [P.], seq 3066:3114, ack 4538, win 305, options [nop,nop,TS val 4294943525 ecr 4294943830,mptcp dss ack 3518598833 seq 3576352043 subseq 3066 len 48 csum 0x88f6], length 48 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 4538:4586, ack 3114, win 707, options [nop,nop,TS val 4294943834 ecr 4294943525,mptcp dss ack 3576352091 seq 3518598833 subseq 4538 len 48 csum 0x8612], length 48 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 4586, win 305, options [nop,nop,TS val 4294943525 ecr 4294943834,mptcp dss ack 3518598881], length 0 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [P.], seq 3114:3162, ack 4586, win 305, options [nop,nop,TS val 4294943532 ecr 4294943834,mptcp dss ack 3518598881 seq 3576352091 subseq 3114 len 48 csum 0xa14c], length 48 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 4586:4634, ack 3162, win 707, options [nop,nop,TS val 4294943841 ecr 4294943532,mptcp dss ack 3576352139 seq 3518598881 subseq 4586 len 48 csum 0x7979], length 48 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 4634, win 305, options [nop,nop,TS val 4294943532 ecr 4294943841,mptcp dss ack 3518598929], length 0 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [P.], seq 3162:3210, ack 4634, win 305, options [nop,nop,TS val 4294943543 ecr 4294943841,mptcp dss ack 3518598929 seq 3576352139 subseq 3162 len 48 csum 0x7c49], length 48 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 4634:4682, ack 3210, win 707, options [nop,nop,TS val 4294943851 ecr 4294943543,mptcp dss ack 3576352187 seq 3518598929 subseq 4634 len 48 csum 0x7799], length 48 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 4682, win 305, options [nop,nop,TS val 4294943543 ecr 4294943851,mptcp dss ack 3518598977], length 0 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [P.], seq 3210:3258, ack 4682, win 305, options [nop,nop,TS val 4294943549 ecr 4294943851,mptcp dss ack 3518598977 seq 3576352187 subseq 3210 len 48 csum 0x7589], length 48 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 4682:4730, ack 3258, win 707, options [nop,nop,TS val 4294943858 ecr 4294943549,mptcp dss ack 3576352235 seq 3518598977 subseq 4682 len 48 csum 0x9da3], length 48 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 4730, win 305, options [nop,nop,TS val 4294943549 ecr 4294943858,mptcp dss ack 3518599025], length 0 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [P.], seq 3258:3306, ack 4730, win 305, options [nop,nop,TS val 4294943560 ecr 4294943858,mptcp dss ack 3518599025 seq 3576352235 subseq 3258 len 48 csum 0x652], length 48 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 4730:4778, ack 3306, win 707, options [nop,nop,TS val 4294943869 ecr 4294943560,mptcp dss ack 3576352283 seq 3518599025 subseq 4730 len 48 csum 0xf212], length 48 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 4778, win 305, options [nop,nop,TS val 4294943560 ecr 4294943869,mptcp dss ack 3518599073], length 0 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [P.], seq 3306:3354, ack 4778, win 305, options [nop,nop,TS val 4294943572 ecr 4294943869,mptcp dss ack 3518599073 seq 3576352283 subseq 3306 len 48 csum 0x757c], length 48 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 4778:4826, ack 3354, win 707, options [nop,nop,TS val 4294943881 ecr 4294943572,mptcp dss ack 3576352331 seq 3518599073 subseq 4778 len 48 csum 0x5cf1], length 48 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 4826, win 305, options [nop,nop,TS val 4294943572 ecr 4294943881,mptcp dss ack 3518599121], length 0 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [P.], seq 3354:3402, ack 4826, win 305, options [nop,nop,TS val 4294943580 ecr 4294943881,mptcp dss ack 3518599121 seq 3576352331 subseq 3354 len 48 csum 0x363c], length 48 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 4826:4874, ack 3402, win 707, options [nop,nop,TS val 4294943889 ecr 4294943580,mptcp dss ack 3576352379 seq 3518599121 subseq 4826 len 48 csum 0xdae4], length 48 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 4874, win 305, options [nop,nop,TS val 4294943580 ecr 4294943889,mptcp dss ack 3518599169], length 0 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [P.], seq 3402:3450, ack 4874, win 305, options [nop,nop,TS val 4294943589 ecr 4294943889,mptcp dss ack 3518599169 seq 3576352379 subseq 3402 len 48 csum 0x5ded], length 48 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 4874:4922, ack 3450, win 707, options [nop,nop,TS val 4294943898 ecr 4294943589,mptcp dss ack 3576352427 seq 3518599169 subseq 4874 len 48 csum 0xb977], length 48 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 4922, win 305, options [nop,nop,TS val 4294943589 ecr 4294943898,mptcp dss ack 3518599217], length 0 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [P.], seq 3450:3498, ack 4922, win 305, options [nop,nop,TS val 4294943624 ecr 4294943898,mptcp dss ack 3518599217 seq 3576352427 subseq 3450 len 48 csum 0x8425], length 48 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 4922:4970, ack 3498, win 707, options [nop,nop,TS val 4294943933 ecr 4294943624,mptcp dss ack 3576352475 seq 3518599217 subseq 4922 len 48 csum 0x1a42], length 48 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 4970, win 305, options [nop,nop,TS val 4294943624 ecr 4294943933,mptcp dss ack 3518599265], length 0 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [P.], seq 3498:3546, ack 4970, win 305, options [nop,nop,TS val 4294943675 ecr 4294943933,mptcp dss ack 3518599265 seq 3576352475 subseq 3498 len 48 csum 0x37f5], length 48 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 4970:5018, ack 3546, win 707, options [nop,nop,TS val 4294943983 ecr 4294943675,mptcp dss ack 3576352523 seq 3518599265 subseq 4970 len 48 csum 0xb0f0], length 48 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 5018, win 305, options [nop,nop,TS val 4294943675 ecr 4294943983,mptcp dss ack 3518599313], length 0 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [P.], seq 3546:3594, ack 5018, win 305, options [nop,nop,TS val 4294943688 ecr 4294943983,mptcp dss ack 3518599313 seq 3576352523 subseq 3546 len 48 csum 0xd912], length 48 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 5018:5066, ack 3594, win 707, options [nop,nop,TS val 4294943997 ecr 4294943688,mptcp dss ack 3576352571 seq 3518599313 subseq 5018 len 48 csum 0x5be5], length 48 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 5066, win 305, options [nop,nop,TS val 4294943688 ecr 4294943997,mptcp dss ack 3518599361], length 0 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [P.], seq 3594:3642, ack 5066, win 305, options [nop,nop,TS val 4294943703 ecr 4294943997,mptcp dss ack 3518599361 seq 3576352571 subseq 3594 len 48 csum 0x539a], length 48 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 5066:5114, ack 3642, win 707, options [nop,nop,TS val 4294944011 ecr 4294943703,mptcp dss ack 3576352619 seq 3518599361 subseq 5066 len 48 csum 0x2d9e], length 48 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 5114, win 305, options [nop,nop,TS val 4294943703 ecr 4294944011,mptcp dss ack 3518599409], length 0 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [P.], seq 3642:3690, ack 5114, win 305, options [nop,nop,TS val 4294943712 ecr 4294944011,mptcp dss ack 3518599409 seq 3576352619 subseq 3642 len 48 csum 0xbda6], length 48 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 5114:5162, ack 3690, win 707, options [nop,nop,TS val 4294944021 ecr 4294943712,mptcp dss ack 3576352667 seq 3518599409 subseq 5114 len 48 csum 0x1bc7], length 48 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 5162, win 305, options [nop,nop,TS val 4294943712 ecr 4294944021,mptcp dss ack 3518599457], length 0 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [P.], seq 3690:3738, ack 5162, win 305, options [nop,nop,TS val 4294943725 ecr 4294944021,mptcp dss ack 3518599457 seq 3576352667 subseq 3690 len 48 csum 0xad71], length 48 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 5162:5210, ack 3738, win 707, options [nop,nop,TS val 4294944034 ecr 4294943725,mptcp dss ack 3576352715 seq 3518599457 subseq 5162 len 48 csum 0xf8f7], length 48 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 5210, win 305, options [nop,nop,TS val 4294943725 ecr 4294944034,mptcp dss ack 3518599505], length 0 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [P.], seq 3738:3786, ack 5210, win 305, options [nop,nop,TS val 4294943746 ecr 4294944034,mptcp dss ack 3518599505 seq 3576352715 subseq 3738 len 48 csum 0xd16], length 48 -IP 10.1.1.2.22 > 10.2.1.2.35961: Flags [P.], seq 5210:5258, ack 3786, win 707, options [nop,nop,TS val 4294944054 ecr 4294943746,mptcp dss ack 3576352763 seq 3518599505 subseq 5210 len 48 csum 0x8122], length 48 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [.], ack 5258, win 305, options [nop,nop,TS val 4294943746 ecr 4294944054,mptcp dss ack 3518599553], length 0 -IP 10.1.2.2.22 > 10.2.1.2.41221: Flags [.], ack 617, win 707, options [nop,nop,TS val 4294944054 ecr 4294943306,mptcp rem-addr id 0,mptcp dss ack 3576352763], length 0 -IP 10.2.1.2.35961 > 10.1.1.2.22: Flags [R.], seq 3786, ack 5258, win 305, options [nop,nop,TS val 4294943749 ecr 4294944054,mptcp dss ack 3518599553], length 0 -IP 10.1.2.2.22 > 10.2.1.2.41221: Flags [P.], seq 2153:2233, ack 617, win 707, options [nop,nop,TS val 4294944054 ecr 4294943306,mptcp dss ack 3576352763 seq 3518599553 subseq 2153 len 80 csum 0xe206], length 80 -IP 10.2.1.2.41221 > 10.1.2.2.22: Flags [.], ack 2233, win 305, options [nop,nop,TS val 4294943749 ecr 4294944054,mptcp dss ack 3518599633], length 0 -IP 10.2.1.2.41221 > 10.1.2.2.22: Flags [P.], seq 617:665, ack 2233, win 305, options [nop,nop,TS val 4294943782 ecr 4294944054,mptcp dss ack 3518599633 seq 3576352763 subseq 617 len 48 csum 0xa135], length 48 -IP 10.1.2.2.22 > 10.2.1.2.41221: Flags [.], ack 665, win 707, options [nop,nop,TS val 4294944090 ecr 4294943782,mptcp dss ack 3576352811], length 0 -IP 10.1.2.2.22 > 10.2.1.2.41221: Flags [P.], seq 2233:2313, ack 665, win 707, options [nop,nop,TS val 4294944090 ecr 4294943782,mptcp dss ack 3576352811 seq 3518599633 subseq 2233 len 80 csum 0x917d], length 80 -IP 10.2.1.2.41221 > 10.1.2.2.22: Flags [.], ack 2313, win 305, options [nop,nop,TS val 4294943782 ecr 4294944090,mptcp dss ack 3518599713], length 0 -IP 10.2.1.2.41221 > 10.1.2.2.22: Flags [P.], seq 665:713, ack 2313, win 305, options [nop,nop,TS val 4294943797 ecr 4294944090,mptcp dss ack 3518599713 seq 3576352811 subseq 665 len 48 csum 0x3789], length 48 -IP 10.1.2.2.22 > 10.2.1.2.41221: Flags [P.], seq 2313:2393, ack 713, win 707, options [nop,nop,TS val 4294944106 ecr 4294943797,mptcp dss ack 3576352859 seq 3518599713 subseq 2313 len 80 csum 0x6cf1], length 80 -IP 10.2.1.2.41221 > 10.1.2.2.22: Flags [.], ack 2393, win 305, options [nop,nop,TS val 4294943797 ecr 4294944106,mptcp dss ack 3518599793], length 0 -IP 10.2.1.2.41221 > 10.1.2.2.22: Flags [P.], seq 713:761, ack 2393, win 305, options [nop,nop,TS val 4294943811 ecr 4294944106,mptcp dss ack 3518599793 seq 3576352859 subseq 713 len 48 csum 0xc47b], length 48 -IP 10.1.2.2.22 > 10.2.1.2.41221: Flags [P.], seq 2393:2473, ack 761, win 707, options [nop,nop,TS val 4294944119 ecr 4294943811,mptcp dss ack 3576352907 seq 3518599793 subseq 2393 len 80 csum 0x226], length 80 -IP 10.2.1.2.41221 > 10.1.2.2.22: Flags [.], ack 2473, win 305, options [nop,nop,TS val 4294943811 ecr 4294944119,mptcp dss ack 3518599873], length 0 -IP 10.2.1.2.41221 > 10.1.2.2.22: Flags [P.], seq 761:809, ack 2473, win 305, options [nop,nop,TS val 4294943826 ecr 4294944119,mptcp dss ack 3518599873 seq 3576352907 subseq 761 len 48 csum 0x187f], length 48 -IP 10.1.2.2.22 > 10.2.1.2.41221: Flags [P.], seq 2473:2553, ack 809, win 707, options [nop,nop,TS val 4294944134 ecr 4294943826,mptcp dss ack 3576352955 seq 3518599873 subseq 2473 len 80 csum 0xe4fe], length 80 -IP 10.2.1.2.41221 > 10.1.2.2.22: Flags [.], ack 2553, win 305, options [nop,nop,TS val 4294943826 ecr 4294944134,mptcp dss ack 3518599953], length 0 -IP 10.2.1.2.41221 > 10.1.2.2.22: Flags [P.], seq 809:857, ack 2553, win 305, options [nop,nop,TS val 4294943840 ecr 4294944134,mptcp dss ack 3518599953 seq 3576352955 subseq 809 len 48 csum 0xf780], length 48 -IP 10.1.2.2.22 > 10.2.1.2.41221: Flags [P.], seq 2553:2633, ack 857, win 707, options [nop,nop,TS val 4294944149 ecr 4294943840,mptcp dss ack 3576353003 seq 3518599953 subseq 2553 len 80 csum 0xb0e6], length 80 -IP 10.2.1.2.41221 > 10.1.2.2.22: Flags [.], ack 2633, win 305, options [nop,nop,TS val 4294943841 ecr 4294944149,mptcp dss ack 3518600033], length 0 -IP 10.2.1.2.41221 > 10.1.2.2.22: Flags [P.], seq 857:905, ack 2633, win 305, options [nop,nop,TS val 4294943856 ecr 4294944149,mptcp dss ack 3518600033 seq 3576353003 subseq 857 len 48 csum 0x1272], length 48 -IP 10.1.2.2.22 > 10.2.1.2.41221: Flags [P.], seq 2633:2713, ack 905, win 707, options [nop,nop,TS val 4294944164 ecr 4294943856,mptcp dss ack 3576353051 seq 3518600033 subseq 2633 len 80 csum 0x2521], length 80 -IP 10.2.1.2.41221 > 10.1.2.2.22: Flags [.], ack 2713, win 305, options [nop,nop,TS val 4294943856 ecr 4294944164,mptcp dss ack 3518600113], length 0 -IP 10.2.1.2.41221 > 10.1.2.2.22: Flags [P.], seq 905:953, ack 2713, win 305, options [nop,nop,TS val 4294943871 ecr 4294944164,mptcp dss ack 3518600113 seq 3576353051 subseq 905 len 48 csum 0xeb71], length 48 -IP 10.1.2.2.22 > 10.2.1.2.41221: Flags [P.], seq 2713:2793, ack 953, win 707, options [nop,nop,TS val 4294944179 ecr 4294943871,mptcp dss ack 3576353099 seq 3518600113 subseq 2713 len 80 csum 0xdd08], length 80 -IP 10.2.1.2.41221 > 10.1.2.2.22: Flags [.], ack 2793, win 305, options [nop,nop,TS val 4294943871 ecr 4294944179,mptcp dss ack 3518600193], length 0 -IP 10.2.1.2.41221 > 10.1.2.2.22: Flags [P.], seq 953:1001, ack 2793, win 305, options [nop,nop,TS val 4294943887 ecr 4294944179,mptcp dss ack 3518600193 seq 3576353099 subseq 953 len 48 csum 0xf047], length 48 -IP 10.1.2.2.22 > 10.2.1.2.41221: Flags [P.], seq 2793:2873, ack 1001, win 707, options [nop,nop,TS val 4294944195 ecr 4294943887,mptcp dss ack 3576353147 seq 3518600193 subseq 2793 len 80 csum 0x3967], length 80 -IP 10.2.1.2.41221 > 10.1.2.2.22: Flags [.], ack 2873, win 305, options [nop,nop,TS val 4294943887 ecr 4294944195,mptcp dss ack 3518600273], length 0 -IP 10.2.1.2.41221 > 10.1.2.2.22: Flags [P.], seq 1001:1049, ack 2873, win 305, options [nop,nop,TS val 4294944018 ecr 4294944195,mptcp dss ack 3518600273 seq 3576353147 subseq 1001 len 48 csum 0xa43d], length 48 -IP 10.1.2.2.22 > 10.2.1.2.41221: Flags [P.], seq 2873:2921, ack 1049, win 707, options [nop,nop,TS val 4294944326 ecr 4294944018,mptcp dss ack 3576353195 seq 3518600273 subseq 2873 len 48 csum 0x1c25], length 48 -IP 10.2.1.2.41221 > 10.1.2.2.22: Flags [.], ack 2921, win 305, options [nop,nop,TS val 4294944018 ecr 4294944326,mptcp dss ack 3518600321], length 0 -IP 10.2.1.2.41221 > 10.1.2.2.22: Flags [P.], seq 1049:1097, ack 2921, win 305, options [nop,nop,TS val 4294944032 ecr 4294944326,mptcp dss ack 3518600321 seq 3576353195 subseq 1049 len 48 csum 0xebdc], length 48 -IP 10.1.2.2.22 > 10.2.1.2.41221: Flags [P.], seq 2921:2969, ack 1097, win 707, options [nop,nop,TS val 4294944341 ecr 4294944032,mptcp dss ack 3576353243 seq 3518600321 subseq 2921 len 48 csum 0xf7df], length 48 -IP 10.2.1.2.41221 > 10.1.2.2.22: Flags [.], ack 2969, win 305, options [nop,nop,TS val 4294944032 ecr 4294944341,mptcp dss ack 3518600369], length 0 -IP 10.2.1.2.41221 > 10.1.2.2.22: Flags [P.], seq 1097:1145, ack 2969, win 305, options [nop,nop,TS val 4294944037 ecr 4294944341,mptcp dss ack 3518600369 seq 3576353243 subseq 1097 len 48 csum 0xb656], length 48 -IP 10.1.2.2.22 > 10.2.1.2.41221: Flags [P.], seq 2969:3017, ack 1145, win 707, options [nop,nop,TS val 4294944346 ecr 4294944037,mptcp dss ack 3576353291 seq 3518600369 subseq 2969 len 48 csum 0x73fb], length 48 -IP 10.2.1.2.41221 > 10.1.2.2.22: Flags [.], ack 3017, win 305, options [nop,nop,TS val 4294944037 ecr 4294944346,mptcp dss ack 3518600417], length 0 -IP 10.2.1.2.41221 > 10.1.2.2.22: Flags [P.], seq 1145:1193, ack 3017, win 305, options [nop,nop,TS val 4294944056 ecr 4294944346,mptcp dss ack 3518600417 seq 3576353291 subseq 1145 len 48 csum 0x7813], length 48 -IP 10.1.2.2.22 > 10.2.1.2.41221: Flags [P.], seq 3017:3065, ack 1193, win 707, options [nop,nop,TS val 4294944365 ecr 4294944056,mptcp dss ack 3576353339 seq 3518600417 subseq 3017 len 48 csum 0xa7ff], length 48 -IP 10.2.1.2.41221 > 10.1.2.2.22: Flags [.], ack 3065, win 305, options [nop,nop,TS val 4294944056 ecr 4294944365,mptcp dss ack 3518600465], length 0 -IP 10.2.1.2.41221 > 10.1.2.2.22: Flags [P.], seq 1193:1241, ack 3065, win 305, options [nop,nop,TS val 4294944064 ecr 4294944365,mptcp dss ack 3518600465 seq 3576353339 subseq 1193 len 48 csum 0xd43c], length 48 -IP 10.1.2.2.22 > 10.2.1.2.41221: Flags [P.], seq 3065:3241, ack 1241, win 707, options [nop,nop,TS val 4294944372 ecr 4294944064,mptcp dss ack 3576353387 seq 3518600465 subseq 3065 len 176 csum 0x49a0], length 176 -IP 10.1.2.2.22 > 10.2.1.2.41221: Flags [P.], seq 3241:3305, ack 1241, win 707, options [nop,nop,TS val 4294944372 ecr 4294944064,mptcp dss ack 3576353387 seq 3518600641 subseq 3241 len 64 csum 0x2541], length 64 -IP 10.2.1.2.41221 > 10.1.2.2.22: Flags [.], ack 3241, win 310, options [nop,nop,TS val 4294944064 ecr 4294944372,mptcp dss ack 3518600641], length 0 -IP 10.2.1.2.41221 > 10.1.2.2.22: Flags [.], ack 3305, win 310, options [nop,nop,TS val 4294944064 ecr 4294944372,mptcp dss ack 3518600705], length 0 -IP 10.2.1.2.41221 > 10.1.2.2.22: Flags [P.], seq 1241:1273, ack 3305, win 310, options [nop,nop,TS val 4294944064 ecr 4294944372,mptcp dss ack 3518600705 seq 3576353387 subseq 1241 len 32 csum 0xec34], length 32 -IP 10.2.1.2.41221 > 10.1.2.2.22: Flags [P.], seq 1273:1337, ack 3305, win 310, options [nop,nop,TS val 4294944064 ecr 4294944372,mptcp dss ack 3518600705 seq 3576353419 subseq 1273 len 64 csum 0x3f93], length 64 -IP 10.1.2.2.22 > 10.2.1.2.41221: Flags [.], ack 1337, win 707, options [nop,nop,TS val 4294944372 ecr 4294944064,mptcp dss ack 3576353483], length 0 -IP 10.2.1.2.41221 > 10.1.2.2.22: Flags [.], ack 3305, win 310, options [nop,nop,TS val 4294944064 ecr 4294944372,mptcp dss fin ack 3518600705 seq 3576353483 subseq 0 len 1 csum 0xa51], length 0 -IP 10.1.2.2.22 > 10.2.1.2.41221: Flags [.], ack 1337, win 707, options [nop,nop,TS val 4294944372 ecr 4294944064,mptcp dss fin ack 3576353484 seq 3518600705 subseq 0 len 1 csum 0xbe46], length 0 -IP 10.2.1.2.41221 > 10.1.2.2.22: Flags [F.], seq 1337, ack 3305, win 310, options [nop,nop,TS val 4294944066 ecr 4294944372,mptcp dss ack 3518600705], length 0 -IP 10.2.1.2.41221 > 10.1.2.2.22: Flags [.], ack 3305, win 310, options [nop,nop,TS val 4294944066 ecr 4294944372,mptcp dss ack 3518600706], length 0 -IP 10.1.2.2.22 > 10.2.1.2.41221: Flags [F.], seq 3305, ack 1338, win 707, options [nop,nop,TS val 4294944372 ecr 4294944066,mptcp dss ack 3576353484], length 0 -IP 10.2.1.2.41221 > 10.1.2.2.22: Flags [.], ack 3306, win 310, options [nop,nop,TS val 4294944066 ecr 4294944372,mptcp dss ack 3518600706], length 0 diff --git a/tests/mptcp.pcap b/tests/mptcp.pcap deleted file mode 100644 index c3eaae5..0000000 Binary files a/tests/mptcp.pcap and /dev/null differ diff --git a/tests/mrinfo_query.pcap b/tests/mrinfo_query.pcap deleted file mode 100644 index 63a86d6..0000000 Binary files a/tests/mrinfo_query.pcap and /dev/null differ diff --git a/tests/msnlb.out b/tests/msnlb.out deleted file mode 100644 index 194dbcd..0000000 --- a/tests/msnlb.out +++ /dev/null @@ -1,2 +0,0 @@ -MS NLB heartbeat, host priority: 2, cluster IP: 192.168.100.80, host IP: 192.168.100.82 -MS NLB heartbeat, host priority: 1, cluster IP: 192.168.100.80, host IP: 192.168.100.81 diff --git a/tests/msnlb.pcap b/tests/msnlb.pcap deleted file mode 100644 index dab88fe..0000000 Binary files a/tests/msnlb.pcap and /dev/null differ diff --git a/tests/msnlb2.out b/tests/msnlb2.out deleted file mode 100644 index 00fc1a6..0000000 --- a/tests/msnlb2.out +++ /dev/null @@ -1,2 +0,0 @@ -[|MS NLB] -[|MS NLB] diff --git a/tests/msnlb2.pcap b/tests/msnlb2.pcap deleted file mode 100644 index 270476d..0000000 Binary files a/tests/msnlb2.pcap and /dev/null differ diff --git a/tests/mstp-v.out b/tests/mstp-v.out deleted file mode 100644 index 16127b5..0000000 --- a/tests/mstp-v.out +++ /dev/null @@ -1,130 +0,0 @@ -STP 802.1s, Rapid STP, CIST Flags [Learn, Forward], length 134 - port-role Root, CIST root-id 0000.00:1f:27:b4:7d:80, CIST ext-pathcost 200000 - CIST regional-root-id 8000.00:16:46:b5:8c:80, CIST port-id 8012, - message-age 1.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - v3len 96, MCID Name Brewery, rev 0, - digest 9357ebb7a8d74dd5fef4f2bab50531aa, CIST int-root-pathcost 200000, - CIST bridge-id 8000.00:1e:f7:05:a8:80, CIST remaining-hops 20 - MSTI 1, Flags [Learn, Forward, Agreement, Topology change ACK], port-role Designated - MSTI regional-root-id 6001.00:1e:f7:05:a8:80, pathcost 0 - MSTI bridge-prio 6, port-prio 8, hops 20 - MSTI 2, Flags [Learn, Forward, Agreement, Topology change ACK], port-role Root - MSTI regional-root-id 8002.00:16:46:b5:8c:80, pathcost 200000 - MSTI bridge-prio 8, port-prio 8, hops 20 -STP 802.1s, Rapid STP, CIST Flags [Learn, Forward, Agreement], length 134 - port-role Designated, CIST root-id 0000.00:1f:27:b4:7d:80, CIST ext-pathcost 200000 - CIST regional-root-id 8000.00:16:46:b5:8c:80, CIST port-id 800f, - message-age 1.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - v3len 96, MCID Name Brewery, rev 0, - digest 9357ebb7a8d74dd5fef4f2bab50531aa, CIST int-root-pathcost 0, - CIST bridge-id 8000.00:16:46:b5:8c:80, CIST remaining-hops 20 - MSTI 1, Flags [Learn, Forward, Agreement, Topology change ACK], port-role Root - MSTI regional-root-id 6001.00:1e:f7:05:a8:80, pathcost 200000 - MSTI bridge-prio 8, port-prio 8, hops 20 - MSTI 2, Flags [Learn, Forward, Agreement, Topology change ACK], port-role Designated - MSTI regional-root-id 8002.00:16:46:b5:8c:80, pathcost 0 - MSTI bridge-prio 8, port-prio 8, hops 20 -STP 802.1s, Rapid STP, CIST Flags [Learn, Forward], length 134 - port-role Root, CIST root-id 0000.00:1f:27:b4:7d:80, CIST ext-pathcost 200000 - CIST regional-root-id 8000.00:16:46:b5:8c:80, CIST port-id 8012, - message-age 1.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - v3len 96, MCID Name Brewery, rev 0, - digest 9357ebb7a8d74dd5fef4f2bab50531aa, CIST int-root-pathcost 200000, - CIST bridge-id 8000.00:1e:f7:05:a8:80, CIST remaining-hops 20 - MSTI 1, Flags [Learn, Forward, Agreement, Topology change ACK], port-role Designated - MSTI regional-root-id 6001.00:1e:f7:05:a8:80, pathcost 0 - MSTI bridge-prio 6, port-prio 8, hops 20 - MSTI 2, Flags [Learn, Forward, Agreement, Topology change ACK], port-role Root - MSTI regional-root-id 8002.00:16:46:b5:8c:80, pathcost 200000 - MSTI bridge-prio 8, port-prio 8, hops 20 -STP 802.1s, Rapid STP, CIST Flags [Learn, Forward, Agreement], length 134 - port-role Designated, CIST root-id 0000.00:1f:27:b4:7d:80, CIST ext-pathcost 200000 - CIST regional-root-id 8000.00:16:46:b5:8c:80, CIST port-id 800f, - message-age 1.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - v3len 96, MCID Name Brewery, rev 0, - digest 9357ebb7a8d74dd5fef4f2bab50531aa, CIST int-root-pathcost 0, - CIST bridge-id 8000.00:16:46:b5:8c:80, CIST remaining-hops 20 - MSTI 1, Flags [Learn, Forward, Agreement, Topology change ACK], port-role Root - MSTI regional-root-id 6001.00:1e:f7:05:a8:80, pathcost 200000 - MSTI bridge-prio 8, port-prio 8, hops 20 - MSTI 2, Flags [Learn, Forward, Agreement, Topology change ACK], port-role Designated - MSTI regional-root-id 8002.00:16:46:b5:8c:80, pathcost 0 - MSTI bridge-prio 8, port-prio 8, hops 20 -STP 802.1s, Rapid STP, CIST Flags [Learn, Forward], length 134 - port-role Root, CIST root-id 0000.00:1f:27:b4:7d:80, CIST ext-pathcost 200000 - CIST regional-root-id 8000.00:16:46:b5:8c:80, CIST port-id 8012, - message-age 1.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - v3len 96, MCID Name Brewery, rev 0, - digest 9357ebb7a8d74dd5fef4f2bab50531aa, CIST int-root-pathcost 200000, - CIST bridge-id 8000.00:1e:f7:05:a8:80, CIST remaining-hops 20 - MSTI 1, Flags [Learn, Forward, Agreement, Topology change ACK], port-role Designated - MSTI regional-root-id 6001.00:1e:f7:05:a8:80, pathcost 0 - MSTI bridge-prio 6, port-prio 8, hops 20 - MSTI 2, Flags [Learn, Forward, Agreement, Topology change ACK], port-role Root - MSTI regional-root-id 8002.00:16:46:b5:8c:80, pathcost 200000 - MSTI bridge-prio 8, port-prio 8, hops 20 -STP 802.1s, Rapid STP, CIST Flags [Learn, Forward, Agreement], length 134 - port-role Designated, CIST root-id 0000.00:1f:27:b4:7d:80, CIST ext-pathcost 200000 - CIST regional-root-id 8000.00:16:46:b5:8c:80, CIST port-id 800f, - message-age 1.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - v3len 96, MCID Name Brewery, rev 0, - digest 9357ebb7a8d74dd5fef4f2bab50531aa, CIST int-root-pathcost 0, - CIST bridge-id 8000.00:16:46:b5:8c:80, CIST remaining-hops 20 - MSTI 1, Flags [Learn, Forward, Agreement, Topology change ACK], port-role Root - MSTI regional-root-id 6001.00:1e:f7:05:a8:80, pathcost 200000 - MSTI bridge-prio 8, port-prio 8, hops 20 - MSTI 2, Flags [Learn, Forward, Agreement, Topology change ACK], port-role Designated - MSTI regional-root-id 8002.00:16:46:b5:8c:80, pathcost 0 - MSTI bridge-prio 8, port-prio 8, hops 20 -STP 802.1s, Rapid STP, CIST Flags [Learn, Forward], length 134 - port-role Root, CIST root-id 0000.00:1f:27:b4:7d:80, CIST ext-pathcost 200000 - CIST regional-root-id 8000.00:16:46:b5:8c:80, CIST port-id 8012, - message-age 1.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - v3len 96, MCID Name Brewery, rev 0, - digest 9357ebb7a8d74dd5fef4f2bab50531aa, CIST int-root-pathcost 200000, - CIST bridge-id 8000.00:1e:f7:05:a8:80, CIST remaining-hops 20 - MSTI 1, Flags [Learn, Forward, Agreement, Topology change ACK], port-role Designated - MSTI regional-root-id 6001.00:1e:f7:05:a8:80, pathcost 0 - MSTI bridge-prio 6, port-prio 8, hops 20 - MSTI 2, Flags [Learn, Forward, Agreement, Topology change ACK], port-role Root - MSTI regional-root-id 8002.00:16:46:b5:8c:80, pathcost 200000 - MSTI bridge-prio 8, port-prio 8, hops 20 -STP 802.1s, Rapid STP, CIST Flags [Learn, Forward, Agreement], length 134 - port-role Designated, CIST root-id 0000.00:1f:27:b4:7d:80, CIST ext-pathcost 200000 - CIST regional-root-id 8000.00:16:46:b5:8c:80, CIST port-id 800f, - message-age 1.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - v3len 96, MCID Name Brewery, rev 0, - digest 9357ebb7a8d74dd5fef4f2bab50531aa, CIST int-root-pathcost 0, - CIST bridge-id 8000.00:16:46:b5:8c:80, CIST remaining-hops 20 - MSTI 1, Flags [Learn, Forward, Agreement, Topology change ACK], port-role Root - MSTI regional-root-id 6001.00:1e:f7:05:a8:80, pathcost 200000 - MSTI bridge-prio 8, port-prio 8, hops 20 - MSTI 2, Flags [Learn, Forward, Agreement, Topology change ACK], port-role Designated - MSTI regional-root-id 8002.00:16:46:b5:8c:80, pathcost 0 - MSTI bridge-prio 8, port-prio 8, hops 20 -STP 802.1s, Rapid STP, CIST Flags [Learn, Forward], length 134 - port-role Root, CIST root-id 0000.00:1f:27:b4:7d:80, CIST ext-pathcost 200000 - CIST regional-root-id 8000.00:16:46:b5:8c:80, CIST port-id 8012, - message-age 1.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - v3len 96, MCID Name Brewery, rev 0, - digest 9357ebb7a8d74dd5fef4f2bab50531aa, CIST int-root-pathcost 200000, - CIST bridge-id 8000.00:1e:f7:05:a8:80, CIST remaining-hops 20 - MSTI 1, Flags [Learn, Forward, Agreement, Topology change ACK], port-role Designated - MSTI regional-root-id 6001.00:1e:f7:05:a8:80, pathcost 0 - MSTI bridge-prio 6, port-prio 8, hops 20 - MSTI 2, Flags [Learn, Forward, Agreement, Topology change ACK], port-role Root - MSTI regional-root-id 8002.00:16:46:b5:8c:80, pathcost 200000 - MSTI bridge-prio 8, port-prio 8, hops 20 -STP 802.1s, Rapid STP, CIST Flags [Learn, Forward, Agreement], length 134 - port-role Designated, CIST root-id 0000.00:1f:27:b4:7d:80, CIST ext-pathcost 200000 - CIST regional-root-id 8000.00:16:46:b5:8c:80, CIST port-id 800f, - message-age 1.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - v3len 96, MCID Name Brewery, rev 0, - digest 9357ebb7a8d74dd5fef4f2bab50531aa, CIST int-root-pathcost 0, - CIST bridge-id 8000.00:16:46:b5:8c:80, CIST remaining-hops 20 - MSTI 1, Flags [Learn, Forward, Agreement, Topology change ACK], port-role Root - MSTI regional-root-id 6001.00:1e:f7:05:a8:80, pathcost 200000 - MSTI bridge-prio 8, port-prio 8, hops 20 - MSTI 2, Flags [Learn, Forward, Agreement, Topology change ACK], port-role Designated - MSTI regional-root-id 8002.00:16:46:b5:8c:80, pathcost 0 - MSTI bridge-prio 8, port-prio 8, hops 20 diff --git a/tests/mtrace.out b/tests/mtrace.out deleted file mode 100644 index 2995f60..0000000 --- a/tests/mtrace.out +++ /dev/null @@ -1,2 +0,0 @@ -IP 10.0.0.5 > 172.16.20.1: mtrace 7: 172.16.40.1 to 172.16.20.1 reply-to 172.16.40.1 -IP 10.0.0.6 > 10.0.0.5: mtrace 7: 172.16.40.1 to 172.16.20.1 reply-to 172.16.40.1 diff --git a/tests/mtrace.pcap b/tests/mtrace.pcap deleted file mode 100644 index 0d16dd3..0000000 Binary files a/tests/mtrace.pcap and /dev/null differ diff --git a/tests/nflog-e.out b/tests/nflog-e.out deleted file mode 100644 index 636d38e..0000000 --- a/tests/nflog-e.out +++ /dev/null @@ -1,4 +0,0 @@ -version 0, resource ID 20, family IPv4 (2), length 180: 74.82.42.42.53 > 10.0.0.20.42585: 17265 1/0/0 A 93.184.216.119 (45) -version 0, resource ID 20, family IPv4 (2), length 192: 74.82.42.42.53 > 10.0.0.20.45190: 52954 1/0/0 AAAA 2606:2800:220:6d:26bf:1447:1097:aa7 (57) -version 0, resource ID 20, family IPv4 (2), length 184: 74.82.42.42.53 > 10.0.0.20.44031: 8279 1/0/0 A 93.184.216.119 (49) -version 0, resource ID 20, family IPv4 (2), length 196: 74.82.42.42.53 > 10.0.0.20.48736: 2122 1/0/0 AAAA 2606:2800:220:6d:26bf:1447:1097:aa7 (61) diff --git a/tests/nflog-e.sh b/tests/nflog-e.sh deleted file mode 100644 index 00ac4fd..0000000 --- a/tests/nflog-e.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/sh - -# NFLOG support depends on both DLT_NFLOG and working - -if grep '^#define HAVE_PCAP_NFLOG_H 1$' ../config.h >/dev/null -then - ./TESTonce nflog-e nflog.pcap nflog-e.out '-t -e' -else - printf ' %-30s: TEST SKIPPED (compiled w/o NFLOG)\n' 'nflog-e' -fi diff --git a/tests/nflog.pcap b/tests/nflog.pcap deleted file mode 100644 index 9151d6a..0000000 Binary files a/tests/nflog.pcap and /dev/null differ diff --git a/tests/nsh-over-vxlan-gpe-v.out b/tests/nsh-over-vxlan-gpe-v.out deleted file mode 100644 index f8db332..0000000 --- a/tests/nsh-over-vxlan-gpe-v.out +++ /dev/null @@ -1,5 +0,0 @@ -IP (tos 0x0, ttl 64, id 16419, offset 0, flags [DF], proto UDP (17), length 92) - 127.0.0.1.4790 > 127.0.0.1.4790: VXLAN-GPE, flags [IP], vni 16777215 - NSH, flags [OC], service-path-id 0xffffff, service-index 0xff - IP (tos 0x0, ttl 255, id 54321, offset 0, flags [none], proto UDP (17), length 32) - 192.168.0.1.10000 > 192.168.0.2.20000: UDP, length 4 diff --git a/tests/nsh-over-vxlan-gpe-vv.out b/tests/nsh-over-vxlan-gpe-vv.out deleted file mode 100644 index 5233701..0000000 --- a/tests/nsh-over-vxlan-gpe-vv.out +++ /dev/null @@ -1,5 +0,0 @@ -IP (tos 0x0, ttl 64, id 16419, offset 0, flags [DF], proto UDP (17), length 92) - 127.0.0.1.4790 > 127.0.0.1.4790: [udp sum ok] VXLAN-GPE, flags [IP], vni 16777215 - NSH, ver 0, flags [OC], next-protocol 0x1, service-path-id 0xffffff, service-index 0xff - IP (tos 0x0, ttl 255, id 54321, offset 0, flags [none], proto UDP (17), length 32) - 192.168.0.1.10000 > 192.168.0.2.20000: [udp sum ok] UDP, length 4 diff --git a/tests/nsh-over-vxlan-gpe-vvv.out b/tests/nsh-over-vxlan-gpe-vvv.out deleted file mode 100644 index f8af283..0000000 --- a/tests/nsh-over-vxlan-gpe-vvv.out +++ /dev/null @@ -1,9 +0,0 @@ -IP (tos 0x0, ttl 64, id 16419, offset 0, flags [DF], proto UDP (17), length 92) - 127.0.0.1.4790 > 127.0.0.1.4790: [udp sum ok] VXLAN-GPE, flags [IP], vni 16777215 - NSH, ver 0, flags [OC], length 6, md type 0x2, next-protocol 0x1, service-path-id 0xffffff, service-index 0xff - TLV Class 1, Type 2, Len 1 - Value[00]: 0x12345678 - TLV Class 2, Type 3, Len 1 - Value[00]: 0x12345678 - IP (tos 0x0, ttl 255, id 54321, offset 0, flags [none], proto UDP (17), length 32) - 192.168.0.1.10000 > 192.168.0.2.20000: [udp sum ok] UDP, length 4 diff --git a/tests/nsh-over-vxlan-gpe.out b/tests/nsh-over-vxlan-gpe.out deleted file mode 100644 index 3348a42..0000000 --- a/tests/nsh-over-vxlan-gpe.out +++ /dev/null @@ -1 +0,0 @@ -IP 127.0.0.1.4790 > 127.0.0.1.4790: VXLAN-GPE, flags [IP], vni 16777215: NSH, flags [OC], service-path-id 0xffffff, service-index 0xff: IP 192.168.0.1.10000 > 192.168.0.2.20000: UDP, length 4 diff --git a/tests/nsh-over-vxlan-gpe.pcap b/tests/nsh-over-vxlan-gpe.pcap deleted file mode 100644 index 0cc3b67..0000000 Binary files a/tests/nsh-over-vxlan-gpe.pcap and /dev/null differ diff --git a/tests/of10_7050q-v.out b/tests/of10_7050q-v.out deleted file mode 100644 index 4929920..0000000 --- a/tests/of10_7050q-v.out +++ /dev/null @@ -1,18 +0,0 @@ -IP (tos 0x0, ttl 64, id 53965, offset 0, flags [DF], proto TCP (6), length 104) - 10.0.0.80.6633 > 86.139.225.177.57145: Flags [P.], cksum 0xddb3 (correct), seq 3804035784:3804035836, ack 3936946676, win 136, options [nop,nop,TS val 256259488 ecr 12980962], length 52: OpenFlow - version 1.0, type VENDOR, length 24, xid 0x00000018, vendor 0x005c16c7 (Big Switch Networks) - subtype GET_IP_MASK_REQUEST, index 0 - version 1.0, type VENDOR, length 20, xid 0x00000019, vendor 0x005c16c7 (Big Switch Networks) - subtype GET_MIRRORING_REQUEST, report_mirror_ports OFF - version 1.0, type BARRIER_REQUEST, length 8, xid 0x0000001a -IP (tos 0x0, ttl 44, id 2943, offset 0, flags [DF], proto TCP (6), length 76) - 86.139.225.177.57145 > 10.0.0.80.6633: Flags [P.], cksum 0xf75f (correct), seq 1:25, ack 52, win 54, options [nop,nop,TS val 12980987 ecr 256259488], length 24: OpenFlow - version 1.0, type VENDOR, length 24, xid 0x00000018, vendor 0x005c16c7 (Big Switch Networks) - subtype GET_IP_MASK_REPLY, index 0, mask 255.255.255.255 -IP (tos 0x0, ttl 64, id 53966, offset 0, flags [DF], proto TCP (6), length 52) - 10.0.0.80.6633 > 86.139.225.177.57145: Flags [.], cksum 0x42b3 (incorrect -> 0x0ee3), ack 25, win 136, options [nop,nop,TS val 256259628 ecr 12980987], length 0 -IP (tos 0x0, ttl 44, id 2944, offset 0, flags [DF], proto TCP (6), length 80) - 86.139.225.177.57145 > 10.0.0.80.6633: Flags [P.], cksum 0xf55e (correct), seq 25:53, ack 52, win 54, options [nop,nop,TS val 12981023 ecr 256259628], length 28: OpenFlow - version 1.0, type VENDOR, length 20, xid 0x00000019, vendor 0x005c16c7 (Big Switch Networks) - subtype GET_MIRRORING_REPLY, report_mirror_ports OFF - version 1.0, type BARRIER_REPLY, length 8, xid 0x0000001a diff --git a/tests/of10_7050q.pcap b/tests/of10_7050q.pcap deleted file mode 100644 index 43602af..0000000 Binary files a/tests/of10_7050q.pcap and /dev/null differ diff --git a/tests/of10_7050sx_bsn-vv.out b/tests/of10_7050sx_bsn-vv.out deleted file mode 100644 index a1674fc..0000000 --- a/tests/of10_7050sx_bsn-vv.out +++ /dev/null @@ -1,343 +0,0 @@ -IP (tos 0x0, ttl 55, id 5483, offset 0, flags [DF], proto TCP (6), length 60) - 88.150.169.52.37044 > 109.74.202.168.6653: Flags [S], cksum 0x0576 (correct), seq 1216143989, win 14600, options [mss 1460,sackOK,TS val 50525982 ecr 0,nop,wscale 7], length 0 -IP (tos 0x0, ttl 64, id 26571, offset 0, flags [DF], proto TCP (6), length 40) - 109.74.202.168.6653 > 88.150.169.52.37044: Flags [R.], cksum 0xa06e (correct), seq 0, ack 1216143990, win 0, length 0 -IP (tos 0x0, ttl 55, id 49495, offset 0, flags [DF], proto TCP (6), length 60) - 88.150.169.52.4756 > 109.74.202.168.6653: Flags [S], cksum 0x4629 (correct), seq 774256709, win 14600, options [mss 1460,sackOK,TS val 50526482 ecr 0,nop,wscale 7], length 0 -IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto TCP (6), length 60) - 109.74.202.168.6653 > 88.150.169.52.4756: Flags [S.], cksum 0x39ec (incorrect -> 0x0c04), seq 3422281440, ack 774256710, win 28960, options [mss 1460,sackOK,TS val 590230513 ecr 50526482,nop,wscale 7], length 0 -IP (tos 0x0, ttl 55, id 49496, offset 0, flags [DF], proto TCP (6), length 52) - 88.150.169.52.4756 > 109.74.202.168.6653: Flags [.], cksum 0xab7c (correct), seq 1, ack 1, win 115, options [nop,nop,TS val 50526483 ecr 590230513], length 0 -IP (tos 0x0, ttl 64, id 60691, offset 0, flags [DF], proto TCP (6), length 60) - 109.74.202.168.6653 > 88.150.169.52.4756: Flags [P.], cksum 0x39ec (incorrect -> 0xa9f0), seq 1:9, ack 1, win 227, options [nop,nop,TS val 590230516 ecr 50526483], length 8: OpenFlow - version 1.0, type HELLO, length 8, xid 0x00000001 -IP (tos 0x0, ttl 55, id 49497, offset 0, flags [DF], proto TCP (6), length 52) - 88.150.169.52.4756 > 109.74.202.168.6653: Flags [.], cksum 0xab6e (correct), seq 1, ack 9, win 115, options [nop,nop,TS val 50526486 ecr 590230516], length 0 -IP (tos 0x0, ttl 55, id 49498, offset 0, flags [DF], proto TCP (6), length 60) - 88.150.169.52.4756 > 109.74.202.168.6653: Flags [P.], cksum 0x7b45 (correct), seq 1:9, ack 9, win 115, options [nop,nop,TS val 50526732 ecr 590230516], length 8: OpenFlow - version 1.0, type HELLO, length 8, xid 0x00002e1b -IP (tos 0x0, ttl 64, id 60692, offset 0, flags [DF], proto TCP (6), length 52) - 109.74.202.168.6653 > 88.150.169.52.4756: Flags [.], cksum 0x39e4 (incorrect -> 0xa8d7), seq 9, ack 9, win 227, options [nop,nop,TS val 590230813 ecr 50526732], length 0 -IP (tos 0x0, ttl 64, id 60693, offset 0, flags [DF], proto TCP (6), length 60) - 109.74.202.168.6653 > 88.150.169.52.4756: Flags [P.], cksum 0x39ec (incorrect -> 0xa7b8), seq 9:17, ack 9, win 227, options [nop,nop,TS val 590230813 ecr 50526732], length 8: OpenFlow - version 1.0, type FEATURES_REQUEST, length 8, xid 0x00000002 -IP (tos 0x0, ttl 55, id 49499, offset 0, flags [DF], proto TCP (6), length 52) - 88.150.169.52.4756 > 109.74.202.168.6653: Flags [.], cksum 0xa93e (correct), seq 9, ack 17, win 115, options [nop,nop,TS val 50526733 ecr 590230813], length 0 -IP (tos 0x0, ttl 55, id 49500, offset 0, flags [DF], proto TCP (6), length 468) - 88.150.169.52.4756 > 109.74.202.168.6653: Flags [P.], cksum 0xff61 (correct), seq 9:425, ack 17, win 115, options [nop,nop,TS val 50526733 ecr 590230813], length 416: OpenFlow - version 1.0, type FEATURES_REPLY, length 416, xid 0x00000002 - dpid 0x0000001c737d280f, n_buffers 0, n_tables 1 - capabilities 0x000000c7 (FLOW_STATS, TABLE_STATS, PORT_STATS, QUEUE_STATS, ARP_MATCH_IP) - actions 0x00000905 (OUTPUT, SET_VLAN_PCP, SET_NW_TOS, ENQUEUE) - port_no 16, hw_addr 00:1c:73:7d:28:1f, name 'Ethernet16' - config 0x00000001 (PORT_DOWN) - state 0x00000001 (LINK_DOWN) - curr 0x00000040 (10GB_FD) - advertised 0x00000000 - supported 0x00000c40 (10GB_FD, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no 20, hw_addr 00:1c:73:7d:28:23, name 'Ethernet20' - config 0x00000001 (PORT_DOWN) - state 0x00000001 (LINK_DOWN) - curr 0x00000040 (10GB_FD) - advertised 0x00000000 - supported 0x00000c40 (10GB_FD, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no 18, hw_addr 00:1c:73:7d:28:21, name 'Ethernet18' - config 0x00000001 (PORT_DOWN) - state 0x00000001 (LINK_DOWN) - curr 0x00000040 (10GB_FD) - advertised 0x00000000 - supported 0x00000c40 (10GB_FD, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no 22, hw_addr 00:1c:73:7d:28:25, name 'Ethernet22' - config 0x00000001 (PORT_DOWN) - state 0x00000001 (LINK_DOWN) - curr 0x00000040 (10GB_FD) - advertised 0x00000000 - supported 0x00000c40 (10GB_FD, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no 17, hw_addr 00:1c:73:7d:28:20, name 'Ethernet17' - config 0x00000001 (PORT_DOWN) - state 0x00000001 (LINK_DOWN) - curr 0x00000040 (10GB_FD) - advertised 0x00000000 - supported 0x00000cc0 (10GB_FD, COPPER, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no 21, hw_addr 00:1c:73:7d:28:24, name 'Ethernet21' - config 0x80000001 (PORT_DOWN) (bogus) - state 0x00000001 (LINK_DOWN) - curr 0x00000040 (10GB_FD) - advertised 0x00000000 - supported 0x00000cc0 (10GB_FD, COPPER, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no 19, hw_addr 00:1c:73:7d:28:22, name 'Ethernet19' - config 0x00000001 (PORT_DOWN) - state 0x00000001 (LINK_DOWN) - curr 0x00000040 (10GB_FD) - advertised 0x00000000 - supported 0x00000c40 (10GB_FD, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no 23, hw_addr 00:1c:73:7d:28:26, name 'Ethernet23' - config 0x80000001 (PORT_DOWN) (bogus) - state 0x00000001 (LINK_DOWN) - curr 0x00000040 (10GB_FD) - advertised 0x00000000 - supported 0x00000c40 (10GB_FD, PAUSE, PAUSE_ASYM) - peer 0x00000000 -IP (tos 0x0, ttl 64, id 60694, offset 0, flags [DF], proto TCP (6), length 136) - 109.74.202.168.6653 > 88.150.169.52.4756: Flags [P.], cksum 0x3a38 (incorrect -> 0xa414), seq 17:101, ack 425, win 235, options [nop,nop,TS val 590230815 ecr 50526733], length 84: OpenFlow - version 1.0, type SET_CONFIG, length 12, xid 0x00000003 - flags FRAG_NORMAL, miss_send_len 65535 - version 1.0, type FLOW_MOD, length 72, xid 0x00000004 - cookie 0x0000000000000000, command DELETE, out_port NONE, flags 0x0000 -IP (tos 0x0, ttl 64, id 60695, offset 0, flags [DF], proto TCP (6), length 60) - 109.74.202.168.6653 > 88.150.169.52.4756: Flags [P.], cksum 0x39ec (incorrect -> 0xa5a0), seq 101:109, ack 425, win 235, options [nop,nop,TS val 590230816 ecr 50526733], length 8: OpenFlow - version 1.0, type BARRIER_REQUEST, length 8, xid 0x00000005 -IP (tos 0x0, ttl 55, id 49501, offset 0, flags [DF], proto TCP (6), length 140) - 88.150.169.52.4756 > 109.74.202.168.6653: Flags [P.], cksum 0x8297 (correct), seq 425:513, ack 109, win 115, options [nop,nop,TS val 50526735 ecr 590230815], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x00000ffd - match in_port 16 - cookie 0x0000000000000001, priority 33000, reason DELETE, duration_sec 53, duration_nsec 990000000, packet_count 0, byte_count 0 -IP (tos 0x0, ttl 64, id 60696, offset 0, flags [DF], proto TCP (6), length 52) - 109.74.202.168.6653 > 88.150.169.52.4756: Flags [.], cksum 0x39e4 (incorrect -> 0xa661), seq 109, ack 513, win 235, options [nop,nop,TS val 590230828 ecr 50526735], length 0 -IP (tos 0x0, ttl 55, id 49502, offset 0, flags [DF], proto TCP (6), length 236) - 88.150.169.52.4756 > 109.74.202.168.6653: Flags [P.], cksum 0x6fdb (correct), seq 513:697, ack 109, win 115, options [nop,nop,TS val 50526745 ecr 590230828], length 184: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x00000ffe - match in_port 18 - cookie 0x0000000000000002, priority 31000, reason DELETE, duration_sec 53, duration_nsec 990000000, packet_count 0, byte_count 0 - version 1.0, type FLOW_REMOVED, length 88, xid 0x00000fff - match in_port 22 - cookie 0x0000000000000003, priority 30000, reason DELETE, duration_sec 53, duration_nsec 990000000, packet_count 0, byte_count 0 - version 1.0, type BARRIER_REPLY, length 8, xid 0x00000005 -IP (tos 0x0, ttl 64, id 60697, offset 0, flags [DF], proto TCP (6), length 52) - 109.74.202.168.6653 > 88.150.169.52.4756: Flags [.], cksum 0x39e4 (incorrect -> 0xa596), seq 109, ack 697, win 243, options [nop,nop,TS val 590230829 ecr 50526745], length 0 -IP (tos 0x0, ttl 64, id 60698, offset 0, flags [DF], proto TCP (6), length 140) - 109.74.202.168.6653 > 88.150.169.52.4756: Flags [P.], cksum 0x3a3c (incorrect -> 0x41fa), seq 109:197, ack 697, win 243, options [nop,nop,TS val 590230829 ecr 50526745], length 88: OpenFlow - version 1.0, type VENDOR, length 20, xid 0x00000006, vendor 0x005c16c7 (Big Switch Networks) - subtype SET_MIRRORING, report_mirror_ports ON - version 1.0, type VENDOR, length 20, xid 0x00000007, vendor 0x005c16c7 (Big Switch Networks) - subtype GET_MIRRORING_REQUEST, report_mirror_ports OFF - version 1.0, type VENDOR, length 20, xid 0x00000008, vendor 0x005c16c7 (Big Switch Networks) - subtype SET_MIRRORING, report_mirror_ports OFF - version 1.0, type VENDOR, length 20, xid 0x00000009, vendor 0x005c16c7 (Big Switch Networks) - subtype GET_MIRRORING_REQUEST, report_mirror_ports OFF - version 1.0, type BARRIER_REQUEST, length 8, xid 0x0000000a -IP (tos 0x0, ttl 55, id 49503, offset 0, flags [DF], proto TCP (6), length 72) - 88.150.169.52.4756 > 109.74.202.168.6653: Flags [P.], cksum 0x8c59 (correct), seq 697:717, ack 197, win 115, options [nop,nop,TS val 50526747 ecr 590230829], length 20: OpenFlow - version 1.0, type VENDOR, length 20, xid 0x00000007, vendor 0x005c16c7 (Big Switch Networks) - subtype GET_MIRRORING_REPLY, report_mirror_ports ON -IP (tos 0x0, ttl 64, id 60699, offset 0, flags [DF], proto TCP (6), length 52) - 109.74.202.168.6653 > 88.150.169.52.4756: Flags [.], cksum 0x39e4 (incorrect -> 0xa51a), seq 197, ack 717, win 243, options [nop,nop,TS val 590230843 ecr 50526747], length 0 -IP (tos 0x0, ttl 55, id 49504, offset 0, flags [DF], proto TCP (6), length 80) - 88.150.169.52.4756 > 109.74.202.168.6653: Flags [P.], cksum 0x8bfd (correct), seq 717:745, ack 197, win 115, options [nop,nop,TS val 50526758 ecr 590230843], length 28: OpenFlow - version 1.0, type VENDOR, length 20, xid 0x00000009, vendor 0x005c16c7 (Big Switch Networks) - subtype GET_MIRRORING_REPLY, report_mirror_ports OFF - version 1.0, type BARRIER_REPLY, length 8, xid 0x0000000a -IP (tos 0x0, ttl 64, id 60700, offset 0, flags [DF], proto TCP (6), length 52) - 109.74.202.168.6653 > 88.150.169.52.4756: Flags [.], cksum 0x39e4 (incorrect -> 0xa4f3), seq 197, ack 745, win 243, options [nop,nop,TS val 590230843 ecr 50526758], length 0 -IP (tos 0x0, ttl 64, id 60701, offset 0, flags [DF], proto TCP (6), length 80) - 109.74.202.168.6653 > 88.150.169.52.4756: Flags [P.], cksum 0x3a00 (incorrect -> 0xa165), seq 197:225, ack 745, win 243, options [nop,nop,TS val 590230843 ecr 50526758], length 28: OpenFlow - version 1.0, type FEATURES_REQUEST, length 8, xid 0x0000000b - version 1.0, type STATS_REQUEST, length 12, xid 0x0000000c - type TABLE, flags 0x0000 - version 1.0, type BARRIER_REQUEST, length 8, xid 0x0000000d -IP (tos 0x0, ttl 55, id 49505, offset 0, flags [DF], proto TCP (6), length 468) - 88.150.169.52.4756 > 109.74.202.168.6653: Flags [P.], cksum 0xfb70 (correct), seq 745:1161, ack 225, win 115, options [nop,nop,TS val 50526759 ecr 590230843], length 416: OpenFlow - version 1.0, type FEATURES_REPLY, length 416, xid 0x0000000b - dpid 0x0000001c737d280f, n_buffers 0, n_tables 1 - capabilities 0x000000c7 (FLOW_STATS, TABLE_STATS, PORT_STATS, QUEUE_STATS, ARP_MATCH_IP) - actions 0x00000905 (OUTPUT, SET_VLAN_PCP, SET_NW_TOS, ENQUEUE) - port_no 16, hw_addr 00:1c:73:7d:28:1f, name 'Ethernet16' - config 0x00000001 (PORT_DOWN) - state 0x00000001 (LINK_DOWN) - curr 0x00000040 (10GB_FD) - advertised 0x00000000 - supported 0x00000c40 (10GB_FD, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no 20, hw_addr 00:1c:73:7d:28:23, name 'Ethernet20' - config 0x00000001 (PORT_DOWN) - state 0x00000001 (LINK_DOWN) - curr 0x00000040 (10GB_FD) - advertised 0x00000000 - supported 0x00000c40 (10GB_FD, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no 18, hw_addr 00:1c:73:7d:28:21, name 'Ethernet18' - config 0x00000001 (PORT_DOWN) - state 0x00000001 (LINK_DOWN) - curr 0x00000040 (10GB_FD) - advertised 0x00000000 - supported 0x00000c40 (10GB_FD, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no 22, hw_addr 00:1c:73:7d:28:25, name 'Ethernet22' - config 0x00000001 (PORT_DOWN) - state 0x00000001 (LINK_DOWN) - curr 0x00000040 (10GB_FD) - advertised 0x00000000 - supported 0x00000c40 (10GB_FD, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no 17, hw_addr 00:1c:73:7d:28:20, name 'Ethernet17' - config 0x00000001 (PORT_DOWN) - state 0x00000001 (LINK_DOWN) - curr 0x00000040 (10GB_FD) - advertised 0x00000000 - supported 0x00000cc0 (10GB_FD, COPPER, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no 21, hw_addr 00:1c:73:7d:28:24, name 'Ethernet21' - config 0x80000001 (PORT_DOWN) (bogus) - state 0x00000001 (LINK_DOWN) - curr 0x00000040 (10GB_FD) - advertised 0x00000000 - supported 0x00000cc0 (10GB_FD, COPPER, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no 19, hw_addr 00:1c:73:7d:28:22, name 'Ethernet19' - config 0x00000001 (PORT_DOWN) - state 0x00000001 (LINK_DOWN) - curr 0x00000040 (10GB_FD) - advertised 0x00000000 - supported 0x00000c40 (10GB_FD, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no 23, hw_addr 00:1c:73:7d:28:26, name 'Ethernet23' - config 0x80000001 (PORT_DOWN) (bogus) - state 0x00000001 (LINK_DOWN) - curr 0x00000040 (10GB_FD) - advertised 0x00000000 - supported 0x00000c40 (10GB_FD, PAUSE, PAUSE_ASYM) - peer 0x00000000 -IP (tos 0x0, ttl 64, id 60702, offset 0, flags [DF], proto TCP (6), length 52) - 109.74.202.168.6653 > 88.150.169.52.4756: Flags [.], cksum 0x39e4 (incorrect -> 0xa320), seq 225, ack 1161, win 252, options [nop,nop,TS val 590230856 ecr 50526759], length 0 -IP (tos 0x0, ttl 55, id 49506, offset 0, flags [DF], proto TCP (6), length 136) - 88.150.169.52.4756 > 109.74.202.168.6653: Flags [P.], cksum 0x4ea6 (correct), seq 1161:1245, ack 225, win 115, options [nop,nop,TS val 50526769 ecr 590230856], length 84: OpenFlow - version 1.0, type STATS_REPLY, length 76, xid 0x0000000c - type TABLE, flags 0x0000 - table_id 0, name 'Table 0' - wildcards 0x003fffff (IN_PORT, DL_VLAN, DL_SRC, DL_DST, DL_TYPE, NW_PROTO, TP_SRC, TP_DST, DL_VLAN_PCP, NW_TOS) - max_entries 1500, active_count 0, lookup_count 0, matched_count 0 - version 1.0, type BARRIER_REPLY, length 8, xid 0x0000000d -IP (tos 0x0, ttl 64, id 60703, offset 0, flags [DF], proto TCP (6), length 52) - 109.74.202.168.6653 > 88.150.169.52.4756: Flags [.], cksum 0x39e4 (incorrect -> 0xa2c1), seq 225, ack 1245, win 252, options [nop,nop,TS val 590230857 ecr 50526769], length 0 -IP (tos 0x0, ttl 64, id 60704, offset 0, flags [DF], proto TCP (6), length 60) - 109.74.202.168.6653 > 88.150.169.52.4756: Flags [P.], cksum 0x39ec (incorrect -> 0xa189), seq 225:233, ack 1245, win 252, options [nop,nop,TS val 590230857 ecr 50526769], length 8: OpenFlow - version 1.0, type BARRIER_REQUEST, length 8, xid 0x0000000e -IP (tos 0x0, ttl 55, id 49507, offset 0, flags [DF], proto TCP (6), length 60) - 88.150.169.52.4756 > 109.74.202.168.6653: Flags [P.], cksum 0xa208 (correct), seq 1245:1253, ack 233, win 115, options [nop,nop,TS val 50526770 ecr 590230857], length 8: OpenFlow - version 1.0, type BARRIER_REPLY, length 8, xid 0x0000000e -IP (tos 0x0, ttl 64, id 60705, offset 0, flags [DF], proto TCP (6), length 60) - 109.74.202.168.6653 > 88.150.169.52.4756: Flags [P.], cksum 0x39ec (incorrect -> 0xa176), seq 233:241, ack 1253, win 252, options [nop,nop,TS val 590230858 ecr 50526770], length 8: OpenFlow - version 1.0, type BARRIER_REQUEST, length 8, xid 0x0000000f -IP (tos 0x0, ttl 55, id 49508, offset 0, flags [DF], proto TCP (6), length 60) - 88.150.169.52.4756 > 109.74.202.168.6653: Flags [P.], cksum 0xa1f5 (correct), seq 1253:1261, ack 241, win 115, options [nop,nop,TS val 50526771 ecr 590230858], length 8: OpenFlow - version 1.0, type BARRIER_REPLY, length 8, xid 0x0000000f -IP (tos 0x0, ttl 64, id 60706, offset 0, flags [DF], proto TCP (6), length 60) - 109.74.202.168.6653 > 88.150.169.52.4756: Flags [P.], cksum 0x39ec (incorrect -> 0xa163), seq 241:249, ack 1261, win 252, options [nop,nop,TS val 590230859 ecr 50526771], length 8: OpenFlow - version 1.0, type BARRIER_REQUEST, length 8, xid 0x00000010 -IP (tos 0x0, ttl 55, id 49509, offset 0, flags [DF], proto TCP (6), length 60) - 88.150.169.52.4756 > 109.74.202.168.6653: Flags [P.], cksum 0xa1e3 (correct), seq 1261:1269, ack 249, win 115, options [nop,nop,TS val 50526771 ecr 590230859], length 8: OpenFlow - version 1.0, type BARRIER_REPLY, length 8, xid 0x00000010 -IP (tos 0x0, ttl 64, id 60707, offset 0, flags [DF], proto TCP (6), length 60) - 109.74.202.168.6653 > 88.150.169.52.4756: Flags [P.], cksum 0x39ec (incorrect -> 0xa151), seq 249:257, ack 1269, win 252, options [nop,nop,TS val 590230860 ecr 50526771], length 8: OpenFlow - version 1.0, type BARRIER_REQUEST, length 8, xid 0x00000011 -IP (tos 0x0, ttl 55, id 49510, offset 0, flags [DF], proto TCP (6), length 60) - 88.150.169.52.4756 > 109.74.202.168.6653: Flags [P.], cksum 0xa1d0 (correct), seq 1269:1277, ack 257, win 115, options [nop,nop,TS val 50526772 ecr 590230860], length 8: OpenFlow - version 1.0, type BARRIER_REPLY, length 8, xid 0x00000011 -IP (tos 0x0, ttl 64, id 60708, offset 0, flags [DF], proto TCP (6), length 60) - 109.74.202.168.6653 > 88.150.169.52.4756: Flags [P.], cksum 0x39ec (incorrect -> 0xa13e), seq 257:265, ack 1277, win 252, options [nop,nop,TS val 590230861 ecr 50526772], length 8: OpenFlow - version 1.0, type BARRIER_REQUEST, length 8, xid 0x00000012 -IP (tos 0x0, ttl 55, id 49511, offset 0, flags [DF], proto TCP (6), length 60) - 88.150.169.52.4756 > 109.74.202.168.6653: Flags [P.], cksum 0xa1bd (correct), seq 1277:1285, ack 265, win 115, options [nop,nop,TS val 50526773 ecr 590230861], length 8: OpenFlow - version 1.0, type BARRIER_REPLY, length 8, xid 0x00000012 -IP (tos 0x0, ttl 64, id 60709, offset 0, flags [DF], proto TCP (6), length 60) - 109.74.202.168.6653 > 88.150.169.52.4756: Flags [P.], cksum 0x39ec (incorrect -> 0xa12b), seq 265:273, ack 1285, win 252, options [nop,nop,TS val 590230862 ecr 50526773], length 8: OpenFlow - version 1.0, type BARRIER_REQUEST, length 8, xid 0x00000013 -IP (tos 0x0, ttl 55, id 49512, offset 0, flags [DF], proto TCP (6), length 60) - 88.150.169.52.4756 > 109.74.202.168.6653: Flags [P.], cksum 0xa1aa (correct), seq 1285:1293, ack 273, win 115, options [nop,nop,TS val 50526774 ecr 590230862], length 8: OpenFlow - version 1.0, type BARRIER_REPLY, length 8, xid 0x00000013 -IP (tos 0x0, ttl 64, id 60710, offset 0, flags [DF], proto TCP (6), length 120) - 109.74.202.168.6653 > 88.150.169.52.4756: Flags [P.], cksum 0x3a28 (incorrect -> 0x9a6c), seq 273:341, ack 1293, win 252, options [nop,nop,TS val 590230863 ecr 50526774], length 68: OpenFlow - version 1.0, type QUEUE_GET_CONFIG_REQUEST, length 12, xid 0x00000014 - port_no 16 - version 1.0, type QUEUE_GET_CONFIG_REQUEST, length 12, xid 0x00000015 - port_no 20 - version 1.0, type QUEUE_GET_CONFIG_REQUEST, length 12, xid 0x00000016 - port_no 18 - version 1.0, type QUEUE_GET_CONFIG_REQUEST, length 12, xid 0x00000017 - port_no 22 - version 1.0, type QUEUE_GET_CONFIG_REQUEST, length 12, xid 0x00000018 - port_no 17 - version 1.0, type BARRIER_REQUEST, length 8, xid 0x00000019 -IP (tos 0x0, ttl 55, id 49513, offset 0, flags [DF], proto TCP (6), length 68) - 88.150.169.52.4756 > 109.74.202.168.6653: Flags [P.], cksum 0xa139 (correct), seq 1293:1309, ack 341, win 115, options [nop,nop,TS val 50526775 ecr 590230863], length 16: OpenFlow - version 1.0, type QUEUE_GET_CONFIG_REPLY, length 16, xid 0x00000014 - port_no 16 -IP (tos 0x0, ttl 64, id 60711, offset 0, flags [DF], proto TCP (6), length 52) - 109.74.202.168.6653 > 88.150.169.52.4756: Flags [.], cksum 0x39e4 (incorrect -> 0xa1f5), seq 341, ack 1309, win 252, options [nop,nop,TS val 590230875 ecr 50526775], length 0 -IP (tos 0x0, ttl 55, id 49514, offset 0, flags [DF], proto TCP (6), length 124) - 88.150.169.52.4756 > 109.74.202.168.6653: Flags [P.], cksum 0x9bb5 (correct), seq 1309:1381, ack 341, win 115, options [nop,nop,TS val 50526785 ecr 590230875], length 72: OpenFlow - version 1.0, type QUEUE_GET_CONFIG_REPLY, length 16, xid 0x00000015 - port_no 20 - version 1.0, type QUEUE_GET_CONFIG_REPLY, length 16, xid 0x00000016 - port_no 18 - version 1.0, type QUEUE_GET_CONFIG_REPLY, length 16, xid 0x00000017 - port_no 22 - version 1.0, type QUEUE_GET_CONFIG_REPLY, length 16, xid 0x00000018 - port_no 17 - version 1.0, type BARRIER_REPLY, length 8, xid 0x00000019 -IP (tos 0x0, ttl 64, id 60712, offset 0, flags [DF], proto TCP (6), length 52) - 109.74.202.168.6653 > 88.150.169.52.4756: Flags [.], cksum 0x39e4 (incorrect -> 0xa1a3), seq 341, ack 1381, win 252, options [nop,nop,TS val 590230875 ecr 50526785], length 0 -IP (tos 0x0, ttl 64, id 60713, offset 0, flags [DF], proto TCP (6), length 562) - 109.74.202.168.6653 > 88.150.169.52.4756: Flags [P.], cksum 0x3be2 (incorrect -> 0x4d80), seq 341:851, ack 1381, win 252, options [nop,nop,TS val 590230876 ecr 50526785], length 510: OpenFlow - version 1.0, type VENDOR, length 24, xid 0x0000001a, vendor 0x005c16c7 (Big Switch Networks) - subtype SET_IP_MASK, index 1, mask 255.0.14.0 - version 1.0, type VENDOR, length 24, xid 0x0000001b, vendor 0x005c16c7 (Big Switch Networks) - subtype SET_IP_MASK, index 2, mask 255.0.28.0 - version 1.0, type VENDOR, length 24, xid 0x0000001c, vendor 0x005c16c7 (Big Switch Networks) - subtype SET_IP_MASK, index 3, mask 255.0.56.0 - version 1.0, type VENDOR, length 24, xid 0x0000001d, vendor 0x005c16c7 (Big Switch Networks) - subtype SET_IP_MASK, index 4, mask 255.0.112.0 - version 1.0, type VENDOR, length 24, xid 0x0000001e, vendor 0x005c16c7 (Big Switch Networks) - subtype SET_IP_MASK, index 5, mask 255.0.224.0 - version 1.0, type VENDOR, length 24, xid 0x0000001f, vendor 0x005c16c7 (Big Switch Networks) - subtype GET_IP_MASK_REQUEST, index 3 - version 1.0, type VENDOR, length 30, xid 0x00000020, vendor 0x005c16c7 (Big Switch Networks) - subtype SHELL_COMMAND, service 0, data 'show clock' - version 1.0, type FLOW_MOD, length 104, xid 0x00000021 - match in_port 16 - cookie 0x0000000000000001, command ADD, priority 33000, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type VENDOR, len 24, vendor 0x005c16c7 (Big Switch Networks) - subtype MIRROR, dest_port 21, vlan_tag none, copy_stage INGRESS - action type OUTPUT, len 8, port 17 - version 1.0, type FLOW_MOD, length 128, xid 0x00000022 - match in_port 18 - cookie 0x0000000000000002, command ADD, priority 31000, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type VENDOR, len 24, vendor 0x005c16c7 (Big Switch Networks) - subtype MIRROR, dest_port 21, vlan_tag 802.1Q (vlan 2, p 4), copy_stage INGRESS - action type OUTPUT, len 8, port 19 - action type VENDOR, len 24, vendor 0x005c16c7 (Big Switch Networks) - subtype MIRROR, dest_port 23, vlan_tag 802.1Q (vlan 2748, p 5, DEI), copy_stage EGRESS - version 1.0, type FLOW_MOD, length 96, xid 0x00000023 - match in_port 22 - cookie 0x0000000000000003, command ADD, priority 30000, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type VENDOR, len 24, vendor 0x005c16c7 (Big Switch Networks) - subtype MIRROR, dest_port 21, vlan_tag 802.1Q (vlan 0, p 1), copy_stage INGRESS - version 1.0, type BARRIER_REQUEST, length 8, xid 0x00000024 -IP (tos 0x0, ttl 55, id 49515, offset 0, flags [DF], proto TCP (6), length 76) - 88.150.169.52.4756 > 109.74.202.168.6653: Flags [P.], cksum 0x4da3 (correct), seq 1381:1405, ack 851, win 123, options [nop,nop,TS val 50526786 ecr 590230876], length 24: OpenFlow - version 1.0, type VENDOR, length 24, xid 0x0000001f, vendor 0x005c16c7 (Big Switch Networks) - subtype GET_IP_MASK_REPLY, index 3, mask 255.0.56.0 -IP (tos 0x0, ttl 64, id 60714, offset 0, flags [DF], proto TCP (6), length 52) - 109.74.202.168.6653 > 88.150.169.52.4756: Flags [.], cksum 0x39e4 (incorrect -> 0x9f7f), seq 851, ack 1405, win 252, options [nop,nop,TS val 590230888 ecr 50526786], length 0 -IP (tos 0x0, ttl 55, id 49516, offset 0, flags [DF], proto TCP (6), length 80) - 88.150.169.52.4756 > 109.74.202.168.6653: Flags [P.], cksum 0x8632 (correct), seq 1405:1433, ack 851, win 123, options [nop,nop,TS val 50526795 ecr 590230888], length 28: OpenFlow - version 1.0, type VENDOR, length 20, xid 0x00000020, vendor 0x005c16c7 (Big Switch Networks) - subtype SHELL_STATUS, status 0xfffffffe - version 1.0, type BARRIER_REPLY, length 8, xid 0x00000024 -IP (tos 0x0, ttl 64, id 60715, offset 0, flags [DF], proto TCP (6), length 52) - 109.74.202.168.6653 > 88.150.169.52.4756: Flags [.], cksum 0x39e4 (incorrect -> 0x9f59), seq 851, ack 1433, win 252, options [nop,nop,TS val 590230889 ecr 50526795], length 0 -IP (tos 0x0, ttl 64, id 60716, offset 0, flags [DF], proto TCP (6), length 60) - 109.74.202.168.6653 > 88.150.169.52.4756: Flags [P.], cksum 0x39ec (incorrect -> 0x9e0a), seq 851:859, ack 1433, win 252, options [nop,nop,TS val 590230889 ecr 50526795], length 8: OpenFlow - version 1.0, type BARRIER_REQUEST, length 8, xid 0x00000025 -IP (tos 0x0, ttl 55, id 49517, offset 0, flags [DF], proto TCP (6), length 60) - 88.150.169.52.4756 > 109.74.202.168.6653: Flags [P.], cksum 0x9e80 (correct), seq 1433:1441, ack 859, win 123, options [nop,nop,TS val 50526797 ecr 590230889], length 8: OpenFlow - version 1.0, type BARRIER_REPLY, length 8, xid 0x00000025 -IP (tos 0x0, ttl 64, id 60717, offset 0, flags [DF], proto TCP (6), length 52) - 109.74.202.168.6653 > 88.150.169.52.4756: Flags [.], cksum 0x39e4 (incorrect -> 0x9f3a), seq 859, ack 1441, win 252, options [nop,nop,TS val 590230902 ecr 50526797], length 0 diff --git a/tests/of10_7050sx_bsn.pcap b/tests/of10_7050sx_bsn.pcap deleted file mode 100644 index c5164f1..0000000 Binary files a/tests/of10_7050sx_bsn.pcap and /dev/null differ diff --git a/tests/of10_p3295-vv.out b/tests/of10_p3295-vv.out deleted file mode 100644 index 1e9f5d5..0000000 --- a/tests/of10_p3295-vv.out +++ /dev/null @@ -1,798 +0,0 @@ -IP (tos 0x0, ttl 64, id 55495, offset 0, flags [DF], proto TCP (6), length 60) - 10.0.0.50.35256 > 10.0.0.20.6633: Flags [S], cksum 0xa230 (correct), seq 3930397949, win 5840, options [sackOK,TS val 194888762 ecr 0,mss 1460,nop,wscale 5], length 0 -IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto TCP (6), length 60) - 10.0.0.20.6633 > 10.0.0.50.35256: Flags [S.], cksum 0x1474 (incorrect -> 0x4253), seq 491620419, ack 3930397950, win 14480, options [mss 1460,sackOK,TS val 220957518 ecr 194888762,nop,wscale 7], length 0 -IP (tos 0x0, ttl 64, id 55496, offset 0, flags [DF], proto TCP (6), length 52) - 10.0.0.50.35256 > 10.0.0.20.6633: Flags [.], cksum 0xa8f8 (correct), seq 1, ack 1, win 183, options [nop,nop,TS val 194888762 ecr 220957518], length 0 -IP (tos 0x0, ttl 64, id 778, offset 0, flags [DF], proto TCP (6), length 60) - 10.0.0.20.6633 > 10.0.0.50.35256: Flags [P.], cksum 0x1474 (incorrect -> 0xa818), seq 1:9, ack 1, win 114, options [nop,nop,TS val 220957530 ecr 194888762], length 8: OpenFlow - version 1.0, type HELLO, length 8, xid 0x00000001 -IP (tos 0x0, ttl 64, id 55497, offset 0, flags [DF], proto TCP (6), length 52) - 10.0.0.50.35256 > 10.0.0.20.6633: Flags [.], cksum 0xa8e1 (correct), seq 1, ack 9, win 183, options [nop,nop,TS val 194888765 ecr 220957530], length 0 -IP (tos 0x0, ttl 64, id 55498, offset 0, flags [DF], proto TCP (6), length 60) - 10.0.0.50.35256 > 10.0.0.20.6633: Flags [P.], cksum 0xa74f (correct), seq 1:9, ack 9, win 183, options [nop,nop,TS val 194888811 ecr 220957530], length 8: OpenFlow - version 1.0, type HELLO, length 8, xid 0x0000004c -IP (tos 0x0, ttl 64, id 779, offset 0, flags [DF], proto TCP (6), length 52) - 10.0.0.20.6633 > 10.0.0.50.35256: Flags [.], cksum 0x146c (incorrect -> 0xa839), seq 9, ack 9, win 114, options [nop,nop,TS val 220957713 ecr 194888811], length 0 -IP (tos 0x0, ttl 64, id 780, offset 0, flags [DF], proto TCP (6), length 60) - 10.0.0.20.6633 > 10.0.0.50.35256: Flags [P.], cksum 0x1474 (incorrect -> 0xa719), seq 9:17, ack 9, win 114, options [nop,nop,TS val 220957714 ecr 194888811], length 8: OpenFlow - version 1.0, type FEATURES_REQUEST, length 8, xid 0x00000002 -IP (tos 0x0, ttl 64, id 55499, offset 0, flags [DF], proto TCP (6), length 52) - 10.0.0.50.35256 > 10.0.0.20.6633: Flags [.], cksum 0xa7eb (correct), seq 9, ack 17, win 183, options [nop,nop,TS val 194888811 ecr 220957714], length 0 -IP (tos 0x0, ttl 64, id 55500, offset 0, flags [DF], proto TCP (6), length 2628) - 10.0.0.50.35256 > 10.0.0.20.6633: Flags [P.], cksum 0x1e7c (incorrect -> 0xae92), seq 9:2585, ack 17, win 183, options [nop,nop,TS val 194889013 ecr 220957714], length 2576: OpenFlow - version 1.0, type FEATURES_REPLY, length 2576, xid 0x00000002 - dpid 0x0000089e0162d5f4, n_buffers 256, n_tables 1 - capabilities 0x00000087 (FLOW_STATS, TABLE_STATS, PORT_STATS, ARP_MATCH_IP) - actions 0x0000003f (OUTPUT, SET_VLAN_VID, SET_VLAN_PCP, STRIP_VLAN, SET_DL_SRC, SET_DL_DST) - port_no 42, hw_addr 08:9e:01:62:d5:f4, name 'ge-1/1/42' - config 0x00000000 - state 0x00000001 (LINK_DOWN) - curr 0x00000000 - advertised 0x0000042f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, PAUSE) - supported 0x00000e2f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, AUTONEG, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no 33, hw_addr 08:9e:01:62:d5:f4, name 'ge-1/1/33' - config 0x00000000 - state 0x00000001 (LINK_DOWN) - curr 0x00000000 - advertised 0x0000042f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, PAUSE) - supported 0x00000e2f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, AUTONEG, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no 36, hw_addr 08:9e:01:62:d5:f4, name 'ge-1/1/36' - config 0x00000000 - state 0x00000001 (LINK_DOWN) - curr 0x00000000 - advertised 0x0000042f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, PAUSE) - supported 0x00000e2f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, AUTONEG, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no 31, hw_addr 08:9e:01:62:d5:f4, name 'ge-1/1/31' - config 0x00000000 - state 0x00000001 (LINK_DOWN) - curr 0x00000000 - advertised 0x0000042f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, PAUSE) - supported 0x00000e2f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, AUTONEG, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no 48, hw_addr 08:9e:01:62:d5:f4, name 'ge-1/1/48' - config 0x00000000 - state 0x00000001 (LINK_DOWN) - curr 0x00000000 - advertised 0x0000042f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, PAUSE) - supported 0x00000e2f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, AUTONEG, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no 40, hw_addr 08:9e:01:62:d5:f4, name 'ge-1/1/40' - config 0x00000000 - state 0x00000001 (LINK_DOWN) - curr 0x00000000 - advertised 0x0000042f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, PAUSE) - supported 0x00000e2f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, AUTONEG, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no 1, hw_addr 08:9e:01:62:d5:f4, name 'ge-1/1/1' - config 0x00000000 - state 0x00000001 (LINK_DOWN) - curr 0x00000000 - advertised 0x0000042f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, PAUSE) - supported 0x00000e2f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, AUTONEG, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no 28, hw_addr 08:9e:01:62:d5:f4, name 'ge-1/1/28' - config 0x00000000 - state 0x00000001 (LINK_DOWN) - curr 0x00000000 - advertised 0x0000042f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, PAUSE) - supported 0x00000e2f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, AUTONEG, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no 20, hw_addr 08:9e:01:62:d5:f4, name 'ge-1/1/20' - config 0x00000000 - state 0x00000001 (LINK_DOWN) - curr 0x00000000 - advertised 0x0000042f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, PAUSE) - supported 0x00000e2f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, AUTONEG, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no 10, hw_addr 08:9e:01:62:d5:f4, name 'ge-1/1/10' - config 0x00000000 - state 0x00000001 (LINK_DOWN) - curr 0x00000000 - advertised 0x0000042f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, PAUSE) - supported 0x00000e2f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, AUTONEG, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no 22, hw_addr 08:9e:01:62:d5:f4, name 'ge-1/1/22' - config 0x00000000 - state 0x00000001 (LINK_DOWN) - curr 0x00000000 - advertised 0x0000042f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, PAUSE) - supported 0x00000e2f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, AUTONEG, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no 29, hw_addr 08:9e:01:62:d5:f4, name 'ge-1/1/29' - config 0x00000000 - state 0x00000001 (LINK_DOWN) - curr 0x00000000 - advertised 0x0000042f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, PAUSE) - supported 0x00000e2f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, AUTONEG, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no 44, hw_addr 08:9e:01:62:d5:f4, name 'ge-1/1/44' - config 0x00000000 - state 0x00000001 (LINK_DOWN) - curr 0x00000000 - advertised 0x0000042f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, PAUSE) - supported 0x00000e2f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, AUTONEG, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no 41, hw_addr 08:9e:01:62:d5:f4, name 'ge-1/1/41' - config 0x00000000 - state 0x00000001 (LINK_DOWN) - curr 0x00000000 - advertised 0x0000042f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, PAUSE) - supported 0x00000e2f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, AUTONEG, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no 21, hw_addr 08:9e:01:62:d5:f4, name 'ge-1/1/21' - config 0x00000000 - state 0x00000001 (LINK_DOWN) - curr 0x00000000 - advertised 0x0000042f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, PAUSE) - supported 0x00000e2f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, AUTONEG, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no 16, hw_addr 08:9e:01:62:d5:f4, name 'ge-1/1/16' - config 0x00000000 - state 0x00000001 (LINK_DOWN) - curr 0x00000000 - advertised 0x0000042f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, PAUSE) - supported 0x00000e2f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, AUTONEG, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no 45, hw_addr 08:9e:01:62:d5:f4, name 'ge-1/1/45' - config 0x00000000 - state 0x00000001 (LINK_DOWN) - curr 0x00000000 - advertised 0x0000042f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, PAUSE) - supported 0x00000e2f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, AUTONEG, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no 49, hw_addr 08:9e:01:62:d5:f4, name 'te-1/1/49' - config 0x00000000 - state 0x00000001 (LINK_DOWN) - curr 0x00000000 - advertised 0x00000020 (1GB_FD) - supported 0x00000e60 (1GB_FD, 10GB_FD, AUTONEG, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no 38, hw_addr 08:9e:01:62:d5:f4, name 'ge-1/1/38' - config 0x00000000 - state 0x00000001 (LINK_DOWN) - curr 0x00000000 - advertised 0x0000042f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, PAUSE) - supported 0x00000e2f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, AUTONEG, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no 17, hw_addr 08:9e:01:62:d5:f4, name 'ge-1/1/17' - config 0x00000000 - state 0x00000001 (LINK_DOWN) - curr 0x00000000 - advertised 0x0000042f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, PAUSE) - supported 0x00000e2f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, AUTONEG, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no 27, hw_addr 08:9e:01:62:d5:f4, name 'ge-1/1/27' - config 0x00000000 - state 0x00000001 (LINK_DOWN) - curr 0x00000000 - advertised 0x0000042f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, PAUSE) - supported 0x00000e2f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, AUTONEG, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no 51, hw_addr 08:9e:01:62:d5:f4, name 'te-1/1/51' - config 0x00000000 - state 0x00000001 (LINK_DOWN) - curr 0x00000000 - advertised 0x00000020 (1GB_FD) - supported 0x00000e60 (1GB_FD, 10GB_FD, AUTONEG, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no 46, hw_addr 08:9e:01:62:d5:f4, name 'ge-1/1/46' - config 0x00000000 - state 0x00000001 (LINK_DOWN) - curr 0x00000000 - advertised 0x0000042f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, PAUSE) - supported 0x00000e2f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, AUTONEG, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no 6, hw_addr 08:9e:01:62:d5:f4, name 'ge-1/1/6' - config 0x00000000 - state 0x00000001 (LINK_DOWN) - curr 0x00000000 - advertised 0x0000042f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, PAUSE) - supported 0x00000e2f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, AUTONEG, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no 50, hw_addr 08:9e:01:62:d5:f4, name 'te-1/1/50' - config 0x00000000 - state 0x00000001 (LINK_DOWN) - curr 0x00000000 - advertised 0x00000020 (1GB_FD) - supported 0x00000e60 (1GB_FD, 10GB_FD, AUTONEG, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no 43, hw_addr 08:9e:01:62:d5:f4, name 'ge-1/1/43' - config 0x00000000 - state 0x00000001 (LINK_DOWN) - curr 0x00000000 - advertised 0x0000042f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, PAUSE) - supported 0x00000e2f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, AUTONEG, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no 35, hw_addr 08:9e:01:62:d5:f4, name 'ge-1/1/35' - config 0x00000000 - state 0x00000001 (LINK_DOWN) - curr 0x00000000 - advertised 0x0000042f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, PAUSE) - supported 0x00000e2f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, AUTONEG, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no 19, hw_addr 08:9e:01:62:d5:f4, name 'ge-1/1/19' - config 0x00000000 - state 0x00000001 (LINK_DOWN) - curr 0x00000000 - advertised 0x0000042f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, PAUSE) - supported 0x00000e2f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, AUTONEG, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no 47, hw_addr 08:9e:01:62:d5:f4, name 'ge-1/1/47' - config 0x00000000 - state 0x00000001 (LINK_DOWN) - curr 0x00000000 - advertised 0x0000042f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, PAUSE) - supported 0x00000e2f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, AUTONEG, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no 23, hw_addr 08:9e:01:62:d5:f4, name 'ge-1/1/23' - config 0x00000000 - state 0x00000001 (LINK_DOWN) - curr 0x00000000 - advertised 0x0000042f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, PAUSE) - supported 0x00000e2f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, AUTONEG, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no 25, hw_addr 08:9e:01:62:d5:f4, name 'ge-1/1/25' - config 0x00000000 - state 0x00000001 (LINK_DOWN) - curr 0x00000000 - advertised 0x0000042f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, PAUSE) - supported 0x00000e2f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, AUTONEG, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no 37, hw_addr 08:9e:01:62:d5:f4, name 'ge-1/1/37' - config 0x00000000 - state 0x00000001 (LINK_DOWN) - curr 0x00000000 - advertised 0x0000042f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, PAUSE) - supported 0x00000e2f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, AUTONEG, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no 7, hw_addr 08:9e:01:62:d5:f4, name 'ge-1/1/7' - config 0x00000000 - state 0x00000001 (LINK_DOWN) - curr 0x00000000 - advertised 0x0000042f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, PAUSE) - supported 0x00000e2f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, AUTONEG, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no 26, hw_addr 08:9e:01:62:d5:f4, name 'ge-1/1/26' - config 0x00000000 - state 0x00000001 (LINK_DOWN) - curr 0x00000000 - advertised 0x0000042f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, PAUSE) - supported 0x00000e2f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, AUTONEG, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no 32, hw_addr 08:9e:01:62:d5:f4, name 'ge-1/1/32' - config 0x00000020 (NO_FWD) - state 0x00000001 (LINK_DOWN) - curr 0x00000000 - advertised 0x0000042f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, PAUSE) - supported 0x00000e2f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, AUTONEG, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no 4, hw_addr 08:9e:01:62:d5:f4, name 'ge-1/1/4' - config 0x00000000 - state 0x00000000 - curr 0x00000020 (1GB_FD) - advertised 0x0000042f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, PAUSE) - supported 0x00000e2f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, AUTONEG, PAUSE, PAUSE_ASYM) - peer 0x0000042f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, PAUSE) - port_no 3, hw_addr 08:9e:01:62:d5:f4, name 'ge-1/1/3' - config 0x00000000 - state 0x00000000 - curr 0x00000020 (1GB_FD) - advertised 0x0000042f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, PAUSE) - supported 0x00000e2f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, AUTONEG, PAUSE, PAUSE_ASYM) - peer 0x0000042f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, PAUSE) - port_no 18, hw_addr 08:9e:01:62:d5:f4, name 'ge-1/1/18' - config 0x00000000 - state 0x00000001 (LINK_DOWN) - curr 0x00000000 - advertised 0x0000042f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, PAUSE) - supported 0x00000e2f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, AUTONEG, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no 39, hw_addr 08:9e:01:62:d5:f4, name 'ge-1/1/39' - config 0x00000000 - state 0x00000001 (LINK_DOWN) - curr 0x00000000 - advertised 0x0000042f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, PAUSE) - supported 0x00000e2f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, AUTONEG, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no 8, hw_addr 08:9e:01:62:d5:f4, name 'ge-1/1/8' - config 0x00000000 - state 0x00000001 (LINK_DOWN) - curr 0x00000000 - advertised 0x0000042f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, PAUSE) - supported 0x00000e2f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, AUTONEG, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no 2, hw_addr 08:9e:01:62:d5:f4, name 'ge-1/1/2' - config 0x00000000 - state 0x00000001 (LINK_DOWN) - curr 0x00000000 - advertised 0x0000042f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, PAUSE) - supported 0x00000e2f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, AUTONEG, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no 14, hw_addr 08:9e:01:62:d5:f4, name 'ge-1/1/14' - config 0x00000000 - state 0x00000001 (LINK_DOWN) - curr 0x00000000 - advertised 0x0000042f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, PAUSE) - supported 0x00000e2f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, AUTONEG, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no 5, hw_addr 08:9e:01:62:d5:f4, name 'ge-1/1/5' - config 0x00000000 - state 0x00000001 (LINK_DOWN) - curr 0x00000000 - advertised 0x0000042f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, PAUSE) - supported 0x00000e2f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, AUTONEG, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no 30, hw_addr 08:9e:01:62:d5:f4, name 'ge-1/1/30' - config 0x00000000 - state 0x00000001 (LINK_DOWN) - curr 0x00000000 - advertised 0x0000042f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, PAUSE) - supported 0x00000e2f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, AUTONEG, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no 11, hw_addr 08:9e:01:62:d5:f4, name 'ge-1/1/11' - config 0x00000000 - state 0x00000001 (LINK_DOWN) - curr 0x00000000 - advertised 0x0000042f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, PAUSE) - supported 0x00000e2f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, AUTONEG, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no 15, hw_addr 08:9e:01:62:d5:f4, name 'ge-1/1/15' - config 0x00000000 - state 0x00000001 (LINK_DOWN) - curr 0x00000000 - advertised 0x0000042f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, PAUSE) - supported 0x00000e2f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, AUTONEG, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no 52, hw_addr 08:9e:01:62:d5:f4, name 'te-1/1/52' - config 0x00000000 - state 0x00000001 (LINK_DOWN) - curr 0x00000000 - advertised 0x00000020 (1GB_FD) - supported 0x00000e60 (1GB_FD, 10GB_FD, AUTONEG, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no 34, hw_addr 08:9e:01:62:d5:f4, name 'ge-1/1/34' - config 0x00000000 - state 0x00000001 (LINK_DOWN) - curr 0x00000000 - advertised 0x0000042f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, PAUSE) - supported 0x00000e2f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, AUTONEG, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no 13, hw_addr 08:9e:01:62:d5:f4, name 'ge-1/1/13' - config 0x00000000 - state 0x00000001 (LINK_DOWN) - curr 0x00000000 - advertised 0x0000042f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, PAUSE) - supported 0x00000e2f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, AUTONEG, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no 12, hw_addr 08:9e:01:62:d5:f4, name 'ge-1/1/12' - config 0x00000000 - state 0x00000001 (LINK_DOWN) - curr 0x00000000 - advertised 0x0000042f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, PAUSE) - supported 0x00000e2f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, AUTONEG, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no 24, hw_addr 08:9e:01:62:d5:f4, name 'ge-1/1/24' - config 0x00000000 - state 0x00000001 (LINK_DOWN) - curr 0x00000000 - advertised 0x0000042f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, PAUSE) - supported 0x00000e2f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, AUTONEG, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no 9, hw_addr 08:9e:01:62:d5:f4, name 'ge-1/1/9' - config 0x00000000 - state 0x00000001 (LINK_DOWN) - curr 0x00000000 - advertised 0x0000042f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, PAUSE) - supported 0x00000e2f (10MB_HD, 10MB_FD, 100MB_HD, 100MB_FD, 1GB_FD, AUTONEG, PAUSE, PAUSE_ASYM) - peer 0x00000000 - port_no LOCAL, hw_addr 08:9e:01:62:d5:f4, name 'br0' - config 0x00000001 (PORT_DOWN) - state 0x00000001 (LINK_DOWN) - curr 0x00000082 (10MB_FD, COPPER) - advertised 0x00000000 - supported 0x00000000 - peer 0x00000000 -IP (tos 0x0, ttl 64, id 781, offset 0, flags [DF], proto TCP (6), length 52) - 10.0.0.20.6633 > 10.0.0.50.35256: Flags [.], cksum 0x146c (incorrect -> 0x9a07), seq 17, ack 2585, win 154, options [nop,nop,TS val 220958521 ecr 194889013], length 0 -IP (tos 0x0, ttl 64, id 782, offset 0, flags [DF], proto TCP (6), length 136) - 10.0.0.20.6633 > 10.0.0.50.35256: Flags [P.], cksum 0x14c0 (incorrect -> 0x96f3), seq 17:101, ack 2585, win 154, options [nop,nop,TS val 220958525 ecr 194889013], length 84: OpenFlow - version 1.0, type SET_CONFIG, length 12, xid 0x00000003 - flags FRAG_NORMAL, miss_send_len 65535 - version 1.0, type FLOW_MOD, length 72, xid 0x00000004 - cookie 0x0000000000000000, command DELETE, out_port NONE, flags 0x0000 -IP (tos 0x0, ttl 64, id 55502, offset 0, flags [DF], proto TCP (6), length 52) - 10.0.0.50.35256 > 10.0.0.20.6633: Flags [.], cksum 0x9991 (correct), seq 2585, ack 101, win 183, options [nop,nop,TS val 194889014 ecr 220958525], length 0 -IP (tos 0x0, ttl 64, id 783, offset 0, flags [DF], proto TCP (6), length 1500) - 10.0.0.20.6633 > 10.0.0.50.35256: Flags [.], cksum 0x1a14 (incorrect -> 0xcf68), seq 101:1549, ack 2585, win 154, options [nop,nop,TS val 220958532 ecr 194889014], length 1448: OpenFlow - version 1.0, type GET_CONFIG_REQUEST, length 8, xid 0x00000005 - version 1.0, type FLOW_MOD, length 80, xid 0x00000006 - match in_port 4 - cookie 0x0000000000000001, command ADD, priority 54321, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type OUTPUT, len 8, port 1 - version 1.0, type FLOW_MOD, length 80, xid 0x00000007 - match in_port 4 - cookie 0x0000000000000002, command ADD, priority 54320, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type OUTPUT, len 8, port LOCAL - version 1.0, type FLOW_MOD, length 80, xid 0x00000008 - match in_port 4 - cookie 0x0000000000000003, command ADD, priority 54319, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type OUTPUT, len 8, port CONTROLLER, max_len 65535 - version 1.0, type FLOW_MOD, length 88, xid 0x00000009 - match in_port 4 - cookie 0x0000000000000004, command ADD, priority 54318, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type SET_VLAN_VID, len 8, vlan_vid 2 - action type SET_TP_SRC, len 8, tp_port 23 - version 1.0, type FLOW_MOD, length 80, xid 0x0000000a - match in_port 4 - cookie 0x0000000000000005, command ADD, priority 54317, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type SET_VLAN_PCP, len 8, vlan_pcp 5 - version 1.0, type FLOW_MOD, length 80, xid 0x0000000b - match in_port 4 - cookie 0x0000000000000006, command ADD, priority 54316, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type STRIP_VLAN, len 8 - version 1.0, type FLOW_MOD, length 96, xid 0x0000000c - match in_port 4 - cookie 0x0000000000000007, command ADD, priority 54315, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type SET_DL_SRC, len 16, dl_addr 11:22:33:44:55:66 - action type SET_NW_SRC, len 8, nw_addr 192.168.72.143 - version 1.0, type FLOW_MOD, length 96, xid 0x0000000d - match in_port 4 - cookie 0x0000000000000008, command ADD, priority 54314, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type SET_DL_DST, len 16, dl_addr 77:88:99:aa:bb:cc - action type SET_NW_DST, len 8, nw_addr 192.168.98.55 - version 1.0, type FLOW_MOD, length 88, xid 0x0000000e - match in_port 4 - cookie 0x0000000000000009, command ADD, priority 54313, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type SET_NW_TOS, len 8, nw_tos 0x2c - action type SET_TP_DST, len 8, tp_port 80 - version 1.0, type FLOW_MOD, length 88, xid 0x0000000f - match in_port 4 - cookie 0x000000000000000a, command ADD, priority 54312, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type ENQUEUE, len 16, port 1, queue_id 2 - version 1.0, type FLOW_MOD, length 144, xid 0x00000010 - match in_port 4 - cookie 0x000000000000000b, command ADD, priority 54311, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type VENDOR, len 72, vendor 0x00001234 (unknown) - data (64 octets) - 0x0000: 4469 6420 796f 7520 6b6e 6f77 2076 656e Did.you.know.ven - 0x0010: 646f 7220 6163 7469 6f6e 2064 6174 6120 dor.action.data. - 0x0020: 6c65 6e67 7468 206d 7573 7420 6265 2061 length.must.be.a - 0x0030: 206d 756c 7469 706c 6520 6f66 2020 383f .multiple.of..8? - version 1.0, type FLOW_MOD, length 80, xid 0x00000011 - match in_port 1 - match dl_src 00:00:00:00:00:01 - cookie 0x000000000000000c, command ADD, priority 43210, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type OUTPUT, len 8, port 5 - version 1.0, type FLOW_MOD, length 80, xid 0x00000012 - match dl_vlan 100 - match dl_vlan_pcp 4 - match dl_type 0x8100 - cookie 0x000000000000000d, command ADD, priority 43209, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type OUTPUT, len 8, port 5 - version 1.0, type FLOW_MOD, length 80, xid 0x00000013 - match dl_type 0x0800 - match nw_src 10.11.12.0/24 - match nw_dst 10.13.14.0/24 - cookie 0x000000000000000e, command ADD, priority 43208, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type OUTPUT, len 8, port 5 - version 1.0, type FLOW_MOD, length 80, xid 0x00000014 - match dl_type 0x0800 - match nw_proto 17 - match tp_src 68 - match tp_dst 67 - cookie 0x000000000000000f, command ADD, priority 43207, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type OUTPUT, len 8, port 5 - version 1.0, type FLOW_MOD, length 80, xid 0x00000015 - match dl_type 0x0800 - match nw_proto 1 - match icmp_type 8 - cookie 0x0000000000000010, command ADD, priority 43206, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type OUTPUT, len 8, port 5 - version 1.0, type FLOW_MOD, length 80, xid 0x00000016 - match dl_type 0x0800 - match nw_proto 1 [|openflow] -IP (tos 0x0, ttl 64, id 784, offset 0, flags [DF], proto TCP (6), length 740) - 10.0.0.20.6633 > 10.0.0.50.35256: Flags [P.], cksum 0x171c (incorrect -> 0xdfee), seq 1549:2237, ack 2585, win 154, options [nop,nop,TS val 220958532 ecr 194889014], length 688: OpenFlow - version unknown (0x00), type 0x00, length 0, xid 0x0003000d (invalid) -IP (tos 0x0, ttl 64, id 55503, offset 0, flags [DF], proto TCP (6), length 52) - 10.0.0.50.35256 > 10.0.0.20.6633: Flags [.], cksum 0x9386 (correct), seq 2585, ack 1549, win 273, options [nop,nop,TS val 194889016 ecr 220958532], length 0 -IP (tos 0x0, ttl 64, id 55504, offset 0, flags [DF], proto TCP (6), length 52) - 10.0.0.50.35256 > 10.0.0.20.6633: Flags [.], cksum 0x907b (correct), seq 2585, ack 2237, win 364, options [nop,nop,TS val 194889016 ecr 220958532], length 0 -IP (tos 0x0, ttl 64, id 55505, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.50.35256 > 10.0.0.20.6633: Flags [P.], cksum 0xba5c (correct), seq 2585:2673, ack 2237, win 364, options [nop,nop,TS val 194889060 ecr 220958532], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x00000000 - match dl_type 0x0800 - match nw_proto 17 - match tp_src 68 - match tp_dst 67 - cookie 0x000000000000000f, priority 43207, reason DELETE, duration_sec 122, duration_nsec 0, packet_count 0, byte_count 0 -IP (tos 0x0, ttl 64, id 55506, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.50.35256 > 10.0.0.20.6633: Flags [P.], cksum 0x3c6a (correct), seq 2673:2761, ack 2237, win 364, options [nop,nop,TS val 194889060 ecr 220958532], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x00000000 - match dl_vlan 100 - match dl_vlan_pcp 4 - match dl_type 0x8100 - cookie 0x000000000000000d, priority 43209, reason DELETE, duration_sec 122, duration_nsec 0, packet_count 0, byte_count 0 -IP (tos 0x0, ttl 64, id 785, offset 0, flags [DF], proto TCP (6), length 52) - 10.0.0.20.6633 > 10.0.0.50.35256: Flags [.], cksum 0x146c (incorrect -> 0x8fbf), seq 2237, ack 2761, win 154, options [nop,nop,TS val 220958710 ecr 194889060], length 0 -IP (tos 0x0, ttl 64, id 55507, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.50.35256 > 10.0.0.20.6633: Flags [P.], cksum 0xc154 (correct), seq 2761:2849, ack 2237, win 364, options [nop,nop,TS val 194889060 ecr 220958532], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x00000000 - cookie 0x0000000000000014, priority 43202, reason DELETE, duration_sec 122, duration_nsec 0, packet_count 0, byte_count 0 -IP (tos 0x0, ttl 64, id 55508, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.50.35256 > 10.0.0.20.6633: Flags [P.], cksum 0xc04a (correct), seq 2849:2937, ack 2237, win 364, options [nop,nop,TS val 194889060 ecr 220958710], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x00000000 - cookie 0x0000000000000015, priority 43201, reason DELETE, duration_sec 122, duration_nsec 0, packet_count 0, byte_count 0 -IP (tos 0x0, ttl 64, id 55509, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.50.35256 > 10.0.0.20.6633: Flags [P.], cksum 0xa1f0 (correct), seq 2937:3025, ack 2237, win 364, options [nop,nop,TS val 194889060 ecr 220958710], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x00000000 - match dl_type 0x0800 - match nw_src 10.11.12.0/24 - match nw_dst 10.13.14.0/24 - cookie 0x000000000000000e, priority 43208, reason DELETE, duration_sec 122, duration_nsec 0, packet_count 0, byte_count 0 -IP (tos 0x0, ttl 64, id 786, offset 0, flags [DF], proto TCP (6), length 52) - 10.0.0.20.6633 > 10.0.0.50.35256: Flags [.], cksum 0x146c (incorrect -> 0x8eb7), seq 2237, ack 3025, win 154, options [nop,nop,TS val 220958710 ecr 194889060], length 0 -IP (tos 0x0, ttl 64, id 55510, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.50.35256 > 10.0.0.20.6633: Flags [P.], cksum 0xbf9d (correct), seq 3025:3113, ack 2237, win 364, options [nop,nop,TS val 194889060 ecr 220958710], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x00000000 - match in_port 1 - match dl_src 00:00:00:00:00:01 - cookie 0x000000000000000c, priority 43210, reason DELETE, duration_sec 122, duration_nsec 0, packet_count 0, byte_count 0 -IP (tos 0x0, ttl 64, id 55511, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.50.35256 > 10.0.0.20.6633: Flags [P.], cksum 0x54e2 (correct), seq 3113:3201, ack 2237, win 364, options [nop,nop,TS val 194889060 ecr 220958710], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x00000000 - match dl_src aa:00:00:00:00:11 - match dl_dst bb:00:00:00:00:22 - cookie 0x0000000000000013, priority 43203, reason DELETE, duration_sec 122, duration_nsec 0, packet_count 13, byte_count 1323 -IP (tos 0x0, ttl 64, id 55512, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.50.35256 > 10.0.0.20.6633: Flags [P.], cksum 0x6bfc (correct), seq 3201:3289, ack 2237, win 364, options [nop,nop,TS val 194889060 ecr 220958710], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x00000000 - match in_port 4 - cookie 0x0000000000000001, priority 54321, reason DELETE, duration_sec 122, duration_nsec 0, packet_count 100, byte_count 10027 -IP (tos 0x0, ttl 64, id 787, offset 0, flags [DF], proto TCP (6), length 52) - 10.0.0.20.6633 > 10.0.0.50.35256: Flags [.], cksum 0x146c (incorrect -> 0x8dae), seq 2237, ack 3289, win 154, options [nop,nop,TS val 220958711 ecr 194889060], length 0 -IP (tos 0x0, ttl 64, id 55513, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.50.35256 > 10.0.0.20.6633: Flags [P.], cksum 0x9333 (correct), seq 3289:3377, ack 2237, win 364, options [nop,nop,TS val 194889060 ecr 220958710], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x00000000 - match in_port 4 - cookie 0x0000000000000002, priority 54320, reason DELETE, duration_sec 122, duration_nsec 0, packet_count 0, byte_count 0 -IP (tos 0x0, ttl 64, id 55514, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.50.35256 > 10.0.0.20.6633: Flags [P.], cksum 0x92da (correct), seq 3377:3465, ack 2237, win 364, options [nop,nop,TS val 194889060 ecr 220958711], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x00000000 - match in_port 4 - cookie 0x0000000000000003, priority 54319, reason DELETE, duration_sec 122, duration_nsec 0, packet_count 0, byte_count 0 -IP (tos 0x0, ttl 64, id 55515, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.50.35256 > 10.0.0.20.6633: Flags [P.], cksum 0x9282 (correct), seq 3465:3553, ack 2237, win 364, options [nop,nop,TS val 194889060 ecr 220958711], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x00000000 - match in_port 4 - cookie 0x0000000000000004, priority 54318, reason DELETE, duration_sec 122, duration_nsec 0, packet_count 0, byte_count 0 -IP (tos 0x0, ttl 64, id 788, offset 0, flags [DF], proto TCP (6), length 52) - 10.0.0.20.6633 > 10.0.0.50.35256: Flags [.], cksum 0x146c (incorrect -> 0x8ca5), seq 2237, ack 3553, win 154, options [nop,nop,TS val 220958712 ecr 194889060], length 0 -IP (tos 0x0, ttl 64, id 55516, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.50.35256 > 10.0.0.20.6633: Flags [P.], cksum 0x922a (correct), seq 3553:3641, ack 2237, win 364, options [nop,nop,TS val 194889060 ecr 220958711], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x00000000 - match in_port 4 - cookie 0x0000000000000005, priority 54317, reason DELETE, duration_sec 122, duration_nsec 0, packet_count 0, byte_count 0 -IP (tos 0x0, ttl 64, id 55517, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.50.35256 > 10.0.0.20.6633: Flags [P.], cksum 0x91d1 (correct), seq 3641:3729, ack 2237, win 364, options [nop,nop,TS val 194889060 ecr 220958712], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x00000000 - match in_port 4 - cookie 0x0000000000000006, priority 54316, reason DELETE, duration_sec 122, duration_nsec 0, packet_count 0, byte_count 0 -IP (tos 0x0, ttl 64, id 789, offset 0, flags [DF], proto TCP (6), length 52) - 10.0.0.20.6633 > 10.0.0.50.35256: Flags [.], cksum 0x146c (incorrect -> 0x8bf5), seq 2237, ack 3729, win 154, options [nop,nop,TS val 220958712 ecr 194889060], length 0 -IP (tos 0x0, ttl 64, id 55518, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.50.35256 > 10.0.0.20.6633: Flags [P.], cksum 0x9179 (correct), seq 3729:3817, ack 2237, win 364, options [nop,nop,TS val 194889060 ecr 220958712], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x00000000 - match in_port 4 - cookie 0x0000000000000007, priority 54315, reason DELETE, duration_sec 122, duration_nsec 0, packet_count 0, byte_count 0 -IP (tos 0x0, ttl 64, id 55519, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.50.35256 > 10.0.0.20.6633: Flags [P.], cksum 0x9120 (correct), seq 3817:3905, ack 2237, win 364, options [nop,nop,TS val 194889061 ecr 220958712], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x00000000 - match in_port 4 - cookie 0x0000000000000008, priority 54314, reason DELETE, duration_sec 122, duration_nsec 0, packet_count 0, byte_count 0 -IP (tos 0x0, ttl 64, id 55520, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.50.35256 > 10.0.0.20.6633: Flags [P.], cksum 0x90c8 (correct), seq 3905:3993, ack 2237, win 364, options [nop,nop,TS val 194889061 ecr 220958712], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x00000000 - match in_port 4 - cookie 0x0000000000000009, priority 54313, reason DELETE, duration_sec 122, duration_nsec 0, packet_count 0, byte_count 0 -IP (tos 0x0, ttl 64, id 790, offset 0, flags [DF], proto TCP (6), length 52) - 10.0.0.20.6633 > 10.0.0.50.35256: Flags [.], cksum 0x146c (incorrect -> 0x8aec), seq 2237, ack 3993, win 154, options [nop,nop,TS val 220958713 ecr 194889060], length 0 -IP (tos 0x0, ttl 64, id 55521, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.50.35256 > 10.0.0.20.6633: Flags [P.], cksum 0x9070 (correct), seq 3993:4081, ack 2237, win 364, options [nop,nop,TS val 194889061 ecr 220958712], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x00000000 - match in_port 4 - cookie 0x000000000000000a, priority 54312, reason DELETE, duration_sec 122, duration_nsec 0, packet_count 0, byte_count 0 -IP (tos 0x0, ttl 64, id 55522, offset 0, flags [DF], proto TCP (6), length 64) - 10.0.0.50.35256 > 10.0.0.20.6633: Flags [P.], cksum 0x8894 (correct), seq 4081:4093, ack 2237, win 364, options [nop,nop,TS val 194889061 ecr 220958713], length 12: OpenFlow - version 1.0, type GET_CONFIG_REPLY, length 12, xid 0x00000005 - flags FRAG_NORMAL, miss_send_len 65535 -IP (tos 0x0, ttl 64, id 791, offset 0, flags [DF], proto TCP (6), length 52) - 10.0.0.20.6633 > 10.0.0.50.35256: Flags [.], cksum 0x146c (incorrect -> 0x8a87), seq 2237, ack 4093, win 154, options [nop,nop,TS val 220958713 ecr 194889061], length 0 -IP (tos 0x0, ttl 64, id 55523, offset 0, flags [DF], proto TCP (6), length 128) - 10.0.0.50.35256 > 10.0.0.20.6633: Flags [P.], cksum 0x90e5 (correct), seq 4093:4169, ack 2237, win 364, options [nop,nop,TS val 194889061 ecr 220958713], length 76: OpenFlow - version 1.0, type ERROR, length 76, xid 0x00000010 - type BAD_ACTION, code BAD_VENDOR - data (64 octets) - 0x0000: 010e 0090 0000 0010 0038 20fe 0004 0000 .........8...... - 0x0010: 0000 0000 0000 0000 0000 0000 0000 0000 ................ - 0x0020: 0000 0000 0000 0000 0000 0000 0000 0000 ................ - 0x0030: 0000 0000 0000 000b 0000 0000 0000 d427 ...............' -IP (tos 0x0, ttl 64, id 55524, offset 0, flags [DF], proto TCP (6), length 60) - 10.0.0.50.35256 > 10.0.0.20.6633: Flags [P.], cksum 0x8821 (correct), seq 4169:4177, ack 2237, win 364, options [nop,nop,TS val 194889063 ecr 220958713], length 8: OpenFlow - version 1.0, type BARRIER_REPLY, length 8, xid 0x0000001b -IP (tos 0x0, ttl 64, id 55525, offset 0, flags [DF], proto TCP (6), length 1120) - 10.0.0.50.35256 > 10.0.0.20.6633: Flags [P.], cksum 0xb778 (correct), seq 4177:5245, ack 2237, win 364, options [nop,nop,TS val 194889063 ecr 220958713], length 1068: OpenFlow - version 1.0, type STATS_REPLY, length 1068, xid 0x0000001c - type DESC, flags 0x0000 - mfr_desc 'Nicira Networks, Inc.' - hw_desc 'Open vSwitch' - sw_desc '1.2.2' - serial_num 'None' - dp_desc 'None' -IP (tos 0x0, ttl 64, id 792, offset 0, flags [DF], proto TCP (6), length 52) - 10.0.0.20.6633 > 10.0.0.50.35256: Flags [.], cksum 0x146c (incorrect -> 0x85e9), seq 2237, ack 5245, win 176, options [nop,nop,TS val 220958721 ecr 194889061], length 0 -IP (tos 0x0, ttl 64, id 55526, offset 0, flags [DF], proto TCP (6), length 1752) - 10.0.0.50.35256 > 10.0.0.20.6633: Flags [P.], cksum 0x1b10 (incorrect -> 0x7df4), seq 5245:6945, ack 2237, win 364, options [nop,nop,TS val 194889063 ecr 220958713], length 1700: OpenFlow - version 1.0, type STATS_REPLY, length 1700, xid 0x0000001d - type FLOW, flags 0x0000 - length 96, table_id 0 - match dl_type 0x0800 - match nw_proto 17 - match tp_src 68 - match tp_dst 67 - duration_sec 0, duration_nsec 0, priority 43207, idle_timeout 0, hard_timeout 0, cookie 0x000000000000000f, packet_count 0, byte_count 0 - action type OUTPUT, len 8, port 5 - length 96, table_id 0 - match dl_vlan 100 - match dl_vlan_pcp 4 - match dl_type 0x8100 - duration_sec 0, duration_nsec 0, priority 43209, idle_timeout 0, hard_timeout 0, cookie 0x000000000000000d, packet_count 0, byte_count 0 - action type OUTPUT, len 8, port 5 - length 96, table_id 0 - duration_sec 0, duration_nsec 0, priority 43202, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000014, packet_count 0, byte_count 0 - action type OUTPUT, len 8, port 5 - length 96, table_id 0 - duration_sec 0, duration_nsec 0, priority 43201, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000015, packet_count 0, byte_count 0 - action type OUTPUT, len 8, port 5 - length 96, table_id 0 - match dl_type 0x0800 - match nw_src 10.11.12.0/24 - match nw_dst 10.13.14.0/24 - duration_sec 0, duration_nsec 0, priority 43208, idle_timeout 0, hard_timeout 0, cookie 0x000000000000000e, packet_count 0, byte_count 0 - action type OUTPUT, len 8, port 5 - length 96, table_id 0 - match in_port 1 - match dl_src 00:00:00:00:00:01 - duration_sec 0, duration_nsec 0, priority 43210, idle_timeout 0, hard_timeout 0, cookie 0x000000000000000c, packet_count 0, byte_count 0 - action type OUTPUT, len 8, port 5 - length 96, table_id 0 - match dl_src aa:00:00:00:00:11 - match dl_dst bb:00:00:00:00:22 - duration_sec 0, duration_nsec 0, priority 43203, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000013, packet_count 0, byte_count 0 - action type OUTPUT, len 8, port 5 - length 96, table_id 0 - match in_port 4 - duration_sec 0, duration_nsec 0, priority 54321, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000001, packet_count 0, byte_count 0 - action type OUTPUT, len 8, port 1 - length 96, table_id 0 - match in_port 4 - duration_sec 0, duration_nsec 0, priority 54320, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000002, packet_count 0, byte_count 0 - action type OUTPUT, len 8, port LOCAL - length 96, table_id 0 - match in_port 4 - duration_sec 0, duration_nsec 0, priority 54319, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000003, packet_count 0, byte_count 0 - action type OUTPUT, len 8, port CONTROLLER, max_len 65535 - length 104, table_id 0 - match in_port 4 - duration_sec 0, duration_nsec 0, priority 54318, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000004, packet_count 0, byte_count 0 - action type SET_VLAN_VID, len 8, vlan_vid 2 - action type SET_TP_SRC, len 8, tp_port 23 - length 96, table_id 0 - match in_port 4 - duration_sec 0, duration_nsec 0, priority 54317, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000005, packet_count 0, byte_count 0 - action type SET_VLAN_PCP, len 8, vlan_pcp 5 - length 96, table_id 0 - match in_port 4 - duration_sec 0, duration_nsec 0, priority 54316, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000006, packet_count 0, byte_count 0 - action type STRIP_VLAN, len 8 - length 112, table_id 0 - match in_port 4 - duration_sec 0, duration_nsec 0, priority 54315, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000007, packet_count 0, byte_count 0 - action type SET_DL_SRC, len 16, dl_addr 11:22:33:44:55:66 - action type SET_NW_SRC, len 8, nw_addr 192.168.72.143 - length 112, table_id 0 - match in_port 4 - duration_sec 0, duration_nsec 0, priority 54314, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000008, packet_count 0, byte_count 0 - action type SET_DL_DST, len 16, dl_addr 77:88:99:aa:bb:cc - action type SET_NW_DST, len 8, nw_addr 192.168.98.55 - length 104, table_id 0 - match in_port 4 - duration_sec 0, duration_nsec 0, priority 54313, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000009, packet_count 0, byte_count 0 - action type SET_NW_TOS, len 8, nw_tos 0x2c - action type SET_TP_DST, len 8, tp_port 80 - length 104, table_id 0 - match in_port 4 - duration_sec 0, duration_nsec 0, priority 54312, idle_timeout 0, hard_timeout 0, cookie 0x000000000000000a, packet_count 0, byte_count 0 - action type ENQUEUE, len 16, port 1, queue_id 2 -IP (tos 0x0, ttl 64, id 793, offset 0, flags [DF], proto TCP (6), length 52) - 10.0.0.20.6633 > 10.0.0.50.35256: Flags [.], cksum 0x146c (incorrect -> 0x7f28), seq 2237, ack 6945, win 203, options [nop,nop,TS val 220958721 ecr 194889063], length 0 -IP (tos 0x0, ttl 64, id 55528, offset 0, flags [DF], proto TCP (6), length 88) - 10.0.0.50.35256 > 10.0.0.20.6633: Flags [P.], cksum 0x7cfd (correct), seq 6945:6981, ack 2237, win 364, options [nop,nop,TS val 194889063 ecr 220958713], length 36: OpenFlow - version 1.0, type STATS_REPLY, length 36, xid 0x0000001e - type AGGREGATE, flags 0x0000 - packet_count 0, byte_count 0, flow_count 17 -IP (tos 0x0, ttl 64, id 55529, offset 0, flags [DF], proto TCP (6), length 128) - 10.0.0.50.35256 > 10.0.0.20.6633: Flags [P.], cksum 0xeac4 (correct), seq 6981:7057, ack 2237, win 364, options [nop,nop,TS val 194889063 ecr 220958713], length 76: OpenFlow - version 1.0, type STATS_REPLY, length 76, xid 0x0000001f - type TABLE, flags 0x0000 - table_id 0, name 'classifier' - wildcards 0x003fffff (IN_PORT, DL_VLAN, DL_SRC, DL_DST, DL_TYPE, NW_PROTO, TP_SRC, TP_DST, DL_VLAN_PCP, NW_TOS) - max_entries 1000000, active_count 26, lookup_count 1158498983736653433, matched_count 1158498983736653433 -IP (tos 0x0, ttl 64, id 794, offset 0, flags [DF], proto TCP (6), length 52) - 10.0.0.20.6633 > 10.0.0.50.35256: Flags [.], cksum 0x146c (incorrect -> 0x7eb8), seq 2237, ack 7057, win 203, options [nop,nop,TS val 220958721 ecr 194889063], length 0 -IP (tos 0x0, ttl 64, id 55530, offset 0, flags [DF], proto TCP (6), length 2948) - 10.0.0.50.35256 > 10.0.0.20.6633: Flags [.], cksum 0x1fbc (incorrect -> 0x5886), seq 7057:9953, ack 2237, win 364, options [nop,nop,TS val 194889063 ecr 220958721], length 2896: OpenFlow - version 1.0, type STATS_REPLY, length 5524, xid 0x00000020 - type PORT, flags 0x0000 - port_no 42, rx_packets 0, tx_packets 0, rx_bytes 0, tx_bytes 0, rx_dropped 0, tx_dropped 0, rx_errors 0, tx_errors 0, rx_frame_err 0, rx_over_err 0, rx_crc_err 0, collisions 0 - port_no 33, rx_packets 0, tx_packets 0, rx_bytes 0, tx_bytes 0, rx_dropped 0, tx_dropped 0, rx_errors 0, tx_errors 0, rx_frame_err 0, rx_over_err 0, rx_crc_err 0, collisions 0 - port_no 36, rx_packets 0, tx_packets 0, rx_bytes 0, tx_bytes 0, rx_dropped 0, tx_dropped 0, rx_errors 0, tx_errors 0, rx_frame_err 0, rx_over_err 0, rx_crc_err 0, collisions 0 - port_no 31, rx_packets 0, tx_packets 0, rx_bytes 0, tx_bytes 0, rx_dropped 0, tx_dropped 0, rx_errors 0, tx_errors 0, rx_frame_err 0, rx_over_err 0, rx_crc_err 0, collisions 0 - port_no 48, rx_packets 0, tx_packets 0, rx_bytes 0, tx_bytes 0, rx_dropped 0, tx_dropped 0, rx_errors 0, tx_errors 0, rx_frame_err 0, rx_over_err 0, rx_crc_err 0, collisions 0 - port_no 40, rx_packets 0, tx_packets 0, rx_bytes 0, tx_bytes 0, rx_dropped 0, tx_dropped 0, rx_errors 0, tx_errors 0, rx_frame_err 0, rx_over_err 0, rx_crc_err 0, collisions 0 - port_no 1, rx_packets 0, tx_packets 0, rx_bytes 0, tx_bytes 0, rx_dropped 0, tx_dropped 0, rx_errors 0, tx_errors 0, rx_frame_err 0, rx_over_err 0, rx_crc_err 0, collisions 0 - port_no 28, rx_packets 0, tx_packets 0, rx_bytes 0, tx_bytes 0, rx_dropped 0, tx_dropped 0, rx_errors 0, tx_errors 0, rx_frame_err 0, rx_over_err 0, rx_crc_err 0, collisions 0 - port_no 20, rx_packets 0, tx_packets 0, rx_bytes 0, tx_bytes 0, rx_dropped 0, tx_dropped 0, rx_errors 0, tx_errors 0, rx_frame_err 0, rx_over_err 0, rx_crc_err 0, collisions 0 - port_no 10, rx_packets 0, tx_packets 0, rx_bytes 0, tx_bytes 0, rx_dropped 0, tx_dropped 0, rx_errors 0, tx_errors 0, rx_frame_err 0, rx_over_err 0, rx_crc_err 0, collisions 0 - port_no 22, rx_packets 0, tx_packets 0, rx_bytes 0, tx_bytes 0, rx_dropped 0, tx_dropped 0, rx_errors 0, tx_errors 0, rx_frame_err 0, rx_over_err 0, rx_crc_err 0, collisions 0 - port_no 29, rx_packets 0, tx_packets 0, rx_bytes 0, tx_bytes 0, rx_dropped 0, tx_dropped 0, rx_errors 0, tx_errors 0, rx_frame_err 0, rx_over_err 0, rx_crc_err 0, collisions 0 - port_no 44, rx_packets 0, tx_packets 0, rx_bytes 0, tx_bytes 0, rx_dropped 0, tx_dropped 0, rx_errors 0, tx_errors 0, rx_frame_err 0, rx_over_err 0, rx_crc_err 0, collisions 0 - port_no 41, rx_packets 0, tx_packets 0, rx_bytes 0, tx_bytes 0, rx_dropped 0, tx_dropped 0, rx_errors 0, tx_errors 0, rx_frame_err 0, rx_over_err 0, rx_crc_err 0, collisions 0 - port_no 21, rx_packets 0, tx_packets 0, rx_bytes 0, tx_bytes 0, rx_dropped 0, tx_dropped 0, rx_errors 0, tx_errors 0, rx_frame_err 0, rx_over_err 0, rx_crc_err 0, collisions 0 - port_no 16, rx_packets 0, tx_packets 0, rx_bytes 0, tx_bytes 0, rx_dropped 0, tx_dropped 0, rx_errors 0, tx_errors 0, rx_frame_err 0, rx_over_err 0, rx_crc_err 0, collisions 0 - port_no 45, rx_packets 0, tx_packets 0, rx_bytes 0, tx_bytes 0, rx_dropped 0, tx_dropped 0, rx_errors 0, tx_errors 0, rx_frame_err 0, rx_over_err 0, rx_crc_err 0, collisions 0 - port_no 49, rx_packets 0, tx_packets 0, rx_bytes 0, tx_bytes 0, rx_dropped 0, tx_dropped 0, rx_errors 0, tx_errors 0, rx_frame_err 0, rx_over_err 0, rx_crc_err 0, collisions 0 - port_no 38, rx_packets 0, tx_packets 0, rx_bytes 0, tx_bytes 0, rx_dropped 0, tx_dropped 0, rx_errors 0, tx_errors 0, rx_frame_err 0, rx_over_err 0, rx_crc_err 0, collisions 0 - port_no 17, rx_packets 0, tx_packets 0, rx_bytes 0, tx_bytes 0, rx_dropped 0, tx_dropped 0, rx_errors 0, tx_errors 0, rx_frame_err 0, rx_over_err 0, rx_crc_err 0, collisions 0 - port_no 27, rx_packets 0, tx_packets 0, rx_bytes 0, tx_bytes 0, rx_dropped 0, tx_dropped 0, rx_errors 0, tx_errors 0, rx_frame_err 0, rx_over_err 0, rx_crc_err 0, collisions 0 - port_no 51, rx_packets 0, tx_packets 0, rx_bytes 0, tx_bytes 0, rx_dropped 0, tx_dropped 0, rx_errors 0, tx_errors 0, rx_frame_err 0, rx_over_err 0, rx_crc_err 0, collisions 0 - port_no 46, rx_packets 0, tx_packets 0, rx_bytes 0, tx_bytes 0, rx_dropped 0, tx_dropped 0, rx_errors 0, tx_errors 0, rx_frame_err 0, rx_over_err 0, rx_crc_err 0, collisions 0 - port_no 6, rx_packets 0, tx_packets 0, rx_bytes 0, tx_bytes 0, rx_dropped 0, tx_dropped 0, rx_errors 0, tx_errors 0, rx_frame_err 0, rx_over_err 0, rx_crc_err 0, collisions 0 - port_no 50, rx_packets 0, tx_packets 0, rx_bytes 0, tx_bytes 0, rx_dropped 0, tx_dropped 0, rx_errors 0, tx_errors 0, rx_frame_err 0, rx_over_err 0, rx_crc_err 0, collisions 0 - port_no 43, rx_packets 0, tx_packets 0, rx_bytes 0, tx_bytes 0, rx_dropped 0, tx_dropped 0, rx_errors 0, tx_errors 0, rx_frame_err 0, rx_over_err 0, rx_crc_err 0, collisions 0 - port_no 35, rx_packets 0, tx_packets 0, rx_bytes 0, tx_bytes 0, rx_dropped 0, tx_dropped 0, rx_errors 0, tx_errors 0, rx_frame_err 0, rx_over_err 0, rx_crc_err 0, collisions 0 - port_no 19, rx_packets 0, tx_packets 0, rx_bytes 0, tx_bytes 0, rx_dropped 0, tx_dropped 0, rx_errors 0, tx_errors 0 [|openflow] -IP (tos 0x0, ttl 64, id 795, offset 0, flags [DF], proto TCP (6), length 52) - 10.0.0.20.6633 > 10.0.0.50.35256: Flags [.], cksum 0x146c (incorrect -> 0x733a), seq 2237, ack 9953, win 248, options [nop,nop,TS val 220958722 ecr 194889063], length 0 -IP (tos 0x0, ttl 64, id 55532, offset 0, flags [DF], proto TCP (6), length 2680) - 10.0.0.50.35256 > 10.0.0.20.6633: Flags [P.], cksum 0x1eb0 (incorrect -> 0x561b), seq 9953:12581, ack 2237, win 364, options [nop,nop,TS val 194889063 ecr 220958721], length 2628: OpenFlow - version unknown (0x00), type 0x00, length 0, xid 0x00000000 (invalid) -IP (tos 0x0, ttl 64, id 796, offset 0, flags [DF], proto TCP (6), length 52) - 10.0.0.20.6633 > 10.0.0.50.35256: Flags [.], cksum 0x146c (incorrect -> 0x68cd), seq 2237, ack 12581, win 289, options [nop,nop,TS val 220958722 ecr 194889063], length 0 -IP (tos 0x0, ttl 64, id 55534, offset 0, flags [DF], proto TCP (6), length 64) - 10.0.0.50.35256 > 10.0.0.20.6633: Flags [P.], cksum 0x672c (correct), seq 12581:12593, ack 2237, win 364, options [nop,nop,TS val 194889063 ecr 220958721], length 12: OpenFlow - version 1.0, type STATS_REPLY, length 12, xid 0x00000021 - type QUEUE, flags 0x0000 -IP (tos 0x0, ttl 64, id 55535, offset 0, flags [DF], proto TCP (6), length 128) - 10.0.0.50.35256 > 10.0.0.20.6633: Flags [P.], cksum 0xda41 (correct), seq 12593:12669, ack 2237, win 364, options [nop,nop,TS val 194889063 ecr 220958721], length 76: OpenFlow - version 1.0, type ERROR, length 76, xid 0x00000022 - type BAD_REQUEST, code BAD_VENDOR - data (64 octets) - 0x0000: 0110 0090 0000 0022 ffff 0000 0000 1234 .......".......4 - 0x0010: afaf afaf afaf afaf afaf afaf afaf afaf ................ - 0x0020: afaf afaf afaf afaf afaf afaf afaf afaf ................ - 0x0030: afaf afaf afaf afaf afaf afaf afaf afaf ................ -IP (tos 0x0, ttl 64, id 797, offset 0, flags [DF], proto TCP (6), length 52) - 10.0.0.20.6633 > 10.0.0.50.35256: Flags [.], cksum 0x146c (incorrect -> 0x6875), seq 2237, ack 12669, win 289, options [nop,nop,TS val 220958722 ecr 194889063], length 0 -IP (tos 0x0, ttl 64, id 798, offset 0, flags [DF], proto TCP (6), length 52) - 10.0.0.20.6633 > 10.0.0.50.35256: Flags [F.], cksum 0x146c (incorrect -> 0x5a63), seq 2237, ack 12669, win 289, options [nop,nop,TS val 220962323 ecr 194889063], length 0 -IP (tos 0x0, ttl 64, id 55536, offset 0, flags [DF], proto TCP (6), length 52) - 10.0.0.50.35256 > 10.0.0.20.6633: Flags [.], cksum 0x568a (correct), seq 12669, ack 2238, win 364, options [nop,nop,TS val 194889973 ecr 220962323], length 0 -IP (tos 0x0, ttl 64, id 55537, offset 0, flags [DF], proto TCP (6), length 52) - 10.0.0.50.35256 > 10.0.0.20.6633: Flags [F.], cksum 0x5664 (correct), seq 12669, ack 2238, win 364, options [nop,nop,TS val 194890010 ecr 220962323], length 0 -IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto TCP (6), length 52) - 10.0.0.20.6633 > 10.0.0.50.35256: Flags [.], cksum 0x55f5 (correct), seq 2238, ack 12670, win 289, options [nop,nop,TS val 220962509 ecr 194890010], length 0 diff --git a/tests/of10_p3295.pcap b/tests/of10_p3295.pcap deleted file mode 100644 index 85f1b27..0000000 Binary files a/tests/of10_p3295.pcap and /dev/null differ diff --git a/tests/of10_pf5240-vv.out b/tests/of10_pf5240-vv.out deleted file mode 100644 index a7685e9..0000000 --- a/tests/of10_pf5240-vv.out +++ /dev/null @@ -1,428 +0,0 @@ -IP (tos 0xa0, ttl 64, id 10670, offset 0, flags [DF], proto TCP (6), length 60) - 172.16.1.101.62224 > 172.16.1.51.6633: Flags [S], cksum 0x6dd0 (correct), seq 2446711727, win 2048, options [mss 1460,nop,wscale 0,nop,nop,TS val 0 ecr 0], length 0 -IP (tos 0xa0, ttl 64, id 0, offset 0, flags [DF], proto TCP (6), length 40) - 172.16.1.51.6633 > 172.16.1.101.62224: Flags [R.], cksum 0xda97 (correct), seq 0, ack 2446711728, win 0, length 0 -IP (tos 0xa0, ttl 64, id 10673, offset 0, flags [DF], proto TCP (6), length 60) - 172.16.1.101.62221 > 172.16.1.51.6633: Flags [S], cksum 0xa14c (correct), seq 2619186670, win 2048, options [mss 1460,nop,wscale 0,nop,nop,TS val 0 ecr 0], length 0 -IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto TCP (6), length 60) - 172.16.1.51.6633 > 172.16.1.101.62221: Flags [S.], cksum 0x5ae7 (incorrect -> 0x3c7c), seq 3998019188, ack 2619186671, win 14480, options [mss 1460,nop,nop,TS val 2256457959 ecr 0,nop,wscale 7], length 0 -IP (tos 0xa0, ttl 64, id 10674, offset 0, flags [DF], proto TCP (6), length 52) - 172.16.1.101.62221 > 172.16.1.51.6633: Flags [.], cksum 0x956f (correct), seq 1, ack 1, win 2920, options [nop,nop,TS val 0 ecr 2256457959], length 0 -IP (tos 0xa0, ttl 64, id 10675, offset 0, flags [DF], proto TCP (6), length 60) - 172.16.1.101.62221 > 172.16.1.51.6633: Flags [P.], cksum 0xb6f9 (correct), seq 1:9, ack 1, win 2920, options [nop,nop,TS val 0 ecr 2256457959], length 8: OpenFlow - version 1.0, type HELLO, length 8, xid 0x000cdd51 -IP (tos 0x0, ttl 64, id 16028, offset 0, flags [DF], proto TCP (6), length 52) - 172.16.1.51.6633 > 172.16.1.101.62221: Flags [.], cksum 0x5adf (incorrect -> 0xa05b), seq 1, ack 9, win 114, options [nop,nop,TS val 2256457961 ecr 0], length 0 -IP (tos 0x0, ttl 64, id 16029, offset 0, flags [DF], proto TCP (6), length 60) - 172.16.1.51.6633 > 172.16.1.101.62221: Flags [P.], cksum 0x5ae7 (incorrect -> 0x9f29), seq 1:9, ack 9, win 114, options [nop,nop,TS val 2256457986 ecr 0], length 8: OpenFlow - version 1.0, type HELLO, length 8, xid 0x00000001 -IP (tos 0x0, ttl 64, id 16030, offset 0, flags [DF], proto TCP (6), length 60) - 172.16.1.51.6633 > 172.16.1.101.62221: Flags [P.], cksum 0x5ae7 (incorrect -> 0x9f13), seq 9:17, ack 9, win 114, options [nop,nop,TS val 2256457994 ecr 0], length 8: OpenFlow - version 1.0, type FEATURES_REQUEST, length 8, xid 0x00000002 -IP (tos 0xa0, ttl 64, id 10676, offset 0, flags [DF], proto TCP (6), length 52) - 172.16.1.101.62221 > 172.16.1.51.6633: Flags [.], cksum 0x9544 (correct), seq 9, ack 17, win 2912, options [nop,nop,TS val 0 ecr 2256457986], length 0 -IP (tos 0xa0, ttl 64, id 10679, offset 0, flags [DF], proto TCP (6), length 468) - 172.16.1.101.62221 > 172.16.1.51.6633: Flags [P.], cksum 0xcacf (correct), seq 9:425, ack 17, win 2920, options [nop,nop,TS val 0 ecr 2256457986], length 416: OpenFlow - version 1.0, type FEATURES_REPLY, length 416, xid 0x00000002 - dpid 0x000100255cab0c07, n_buffers 544, n_tables 11 - capabilities 0x00000087 (FLOW_STATS, TABLE_STATS, PORT_STATS, ARP_MATCH_IP) - actions 0x00000fff (OUTPUT, SET_VLAN_VID, SET_VLAN_PCP, STRIP_VLAN, SET_DL_SRC, SET_DL_DST, SET_NW_SRC, SET_NW_DST, SET_NW_TOS, SET_TP_SRC, SET_TP_DST, ENQUEUE) - port_no 1, hw_addr 00:25:5c:ab:0c:87, name 'GBE0/1' - config 0x00000002 (NO_STP) - state 0x00000200 (STP_FORWARD, STP_BLOCK) - curr 0x000002a0 (1GB_FD, COPPER, AUTONEG) - advertised 0x00000000 - supported 0x00000000 - peer 0x00000000 - port_no 2, hw_addr 00:25:5c:ab:0c:47, name 'GBE0/2' - config 0x00000002 (NO_STP) - state 0x00000200 (STP_FORWARD, STP_BLOCK) - curr 0x000002a0 (1GB_FD, COPPER, AUTONEG) - advertised 0x00000000 - supported 0x00000000 - peer 0x00000000 - port_no 3, hw_addr 00:25:5c:ab:0c:c7, name 'GBE0/3' - config 0x00000002 (NO_STP) - state 0x00000200 (STP_FORWARD, STP_BLOCK) - curr 0x000002a0 (1GB_FD, COPPER, AUTONEG) - advertised 0x00000000 - supported 0x00000000 - peer 0x00000000 - port_no 4, hw_addr 00:25:5c:ab:0c:27, name 'GBE0/4' - config 0x00000002 (NO_STP) - state 0x00000201 (LINK_DOWN, STP_FORWARD, STP_BLOCK) - curr 0x00000000 - advertised 0x00000000 - supported 0x00000000 - peer 0x00000000 - port_no 5, hw_addr 00:25:5c:ab:0c:a7, name 'GBE0/5' - config 0x00000002 (NO_STP) - state 0x00000201 (LINK_DOWN, STP_FORWARD, STP_BLOCK) - curr 0x00000000 - advertised 0x00000000 - supported 0x00000000 - peer 0x00000000 - port_no 6, hw_addr 00:25:5c:ab:0c:67, name 'GBE0/6' - config 0x00000002 (NO_STP) - state 0x00000201 (LINK_DOWN, STP_FORWARD, STP_BLOCK) - curr 0x00000000 - advertised 0x00000000 - supported 0x00000000 - peer 0x00000000 - port_no 7, hw_addr 00:25:5c:ab:0c:e7, name 'GBE0/7' - config 0x00000002 (NO_STP) - state 0x00000201 (LINK_DOWN, STP_FORWARD, STP_BLOCK) - curr 0x00000000 - advertised 0x00000000 - supported 0x00000000 - peer 0x00000000 - port_no 8, hw_addr 00:25:5c:ab:0c:17, name 'GBE0/8' - config 0x00000002 (NO_STP) - state 0x00000201 (LINK_DOWN, STP_FORWARD, STP_BLOCK) - curr 0x00000000 - advertised 0x00000000 - supported 0x00000000 - peer 0x00000000 -IP (tos 0x0, ttl 64, id 16031, offset 0, flags [DF], proto TCP (6), length 136) - 172.16.1.51.6633 > 172.16.1.101.62221: Flags [P.], cksum 0x5b33 (incorrect -> 0x9b62), seq 17:101, ack 425, win 122, options [nop,nop,TS val 2256458010 ecr 0], length 84: OpenFlow - version 1.0, type SET_CONFIG, length 12, xid 0x00000003 - flags FRAG_NORMAL, miss_send_len 65535 - version 1.0, type FLOW_MOD, length 72, xid 0x00000004 - cookie 0x0000000000000000, command DELETE, out_port NONE, flags 0x0000 -IP (tos 0x0, ttl 64, id 16032, offset 0, flags [DF], proto TCP (6), length 60) - 172.16.1.51.6633 > 172.16.1.101.62221: Flags [P.], cksum 0x5ae7 (incorrect -> 0x9ceb), seq 101:109, ack 425, win 122, options [nop,nop,TS val 2256458014 ecr 0], length 8: OpenFlow - version 1.0, type BARRIER_REQUEST, length 8, xid 0x00000005 -IP (tos 0xa0, ttl 64, id 10680, offset 0, flags [DF], proto TCP (6), length 52) - 172.16.1.101.62221 > 172.16.1.51.6633: Flags [.], cksum 0x932f (correct), seq 425, ack 109, win 2912, options [nop,nop,TS val 1 ecr 2256458010], length 0 -IP (tos 0xa0, ttl 64, id 10681, offset 0, flags [DF], proto TCP (6), length 60) - 172.16.1.101.62221 > 172.16.1.51.6633: Flags [P.], cksum 0x91f7 (correct), seq 425:433, ack 109, win 2920, options [nop,nop,TS val 1 ecr 2256458010], length 8: OpenFlow - version 1.0, type BARRIER_REPLY, length 8, xid 0x00000005 -IP (tos 0x0, ttl 64, id 16033, offset 0, flags [DF], proto TCP (6), length 72) - 172.16.1.51.6633 > 172.16.1.101.62221: Flags [P.], cksum 0x5af3 (incorrect -> 0x9ba7), seq 109:129, ack 433, win 122, options [nop,nop,TS val 2256458017 ecr 1], length 20: OpenFlow - version 1.0, type STATS_REQUEST, length 12, xid 0x00000006 - type DESC, flags 0x0000 - version 1.0, type BARRIER_REQUEST, length 8, xid 0x00000007 -IP (tos 0xa0, ttl 64, id 10682, offset 0, flags [DF], proto TCP (6), length 1120) - 172.16.1.101.62221 > 172.16.1.51.6633: Flags [P.], cksum 0x7324 (correct), seq 433:1501, ack 129, win 2912, options [nop,nop,TS val 1 ecr 2256458017], length 1068: OpenFlow - version 1.0, type STATS_REPLY, length 1068, xid 0x00000006 - type DESC, flags 0x0000 - mfr_desc 'NEC Corporation' - hw_desc 'PF5240F-48T4XW-AX(L1L2)' - sw_desc 'OS-F3PA Ver. V4.0.1.0' - serial_num 'Y1252CFA0000S4068C8N004' - dp_desc 'PFS1' -IP (tos 0x0, ttl 64, id 16034, offset 0, flags [DF], proto TCP (6), length 52) - 172.16.1.51.6633 > 172.16.1.101.62221: Flags [.], cksum 0x5adf (incorrect -> 0x998b), seq 129, ack 1501, win 139, options [nop,nop,TS val 2256458059 ecr 1], length 0 -IP (tos 0xa0, ttl 64, id 10686, offset 0, flags [DF], proto TCP (6), length 60) - 172.16.1.101.62221 > 172.16.1.51.6633: Flags [P.], cksum 0x8da6 (correct), seq 1501:1509, ack 129, win 2920, options [nop,nop,TS val 1 ecr 2256458017], length 8: OpenFlow - version 1.0, type BARRIER_REPLY, length 8, xid 0x00000007 -IP (tos 0x0, ttl 64, id 16035, offset 0, flags [DF], proto TCP (6), length 52) - 172.16.1.51.6633 > 172.16.1.101.62221: Flags [.], cksum 0x5adf (incorrect -> 0x9982), seq 129, ack 1509, win 139, options [nop,nop,TS val 2256458060 ecr 1], length 0 -IP (tos 0x0, ttl 64, id 16036, offset 0, flags [DF], proto TCP (6), length 84) - 172.16.1.51.6633 > 172.16.1.101.62221: Flags [P.], cksum 0x5aff (incorrect -> 0x95e2), seq 129:161, ack 1509, win 139, options [nop,nop,TS val 2256458060 ecr 1], length 32: OpenFlow - version 1.0, type QUEUE_GET_CONFIG_REQUEST, length 12, xid 0x00000008 - port_no 1 - version 1.0, type QUEUE_GET_CONFIG_REQUEST, length 12, xid 0x00000009 - port_no 2 - version 1.0, type BARRIER_REQUEST, length 8, xid 0x0000000a -IP (tos 0xa0, ttl 64, id 10687, offset 0, flags [DF], proto TCP (6), length 196) - 172.16.1.101.62221 > 172.16.1.51.6633: Flags [P.], cksum 0x8b77 (correct), seq 1509:1653, ack 161, win 2900, options [nop,nop,TS val 1 ecr 2256458060], length 144: OpenFlow - version 1.0, type QUEUE_GET_CONFIG_REPLY, length 144, xid 0x00000008 - port_no 1 - queue_id 0, len 16 - property NONE, len 8 - queue_id 1, len 16 - property NONE, len 8 - queue_id 2, len 16 - property NONE, len 8 - queue_id 3, len 16 - property NONE, len 8 - queue_id 4, len 16 - property NONE, len 8 - queue_id 5, len 16 - property NONE, len 8 - queue_id 6, len 16 - property NONE, len 8 - queue_id 7, len 16 - property NONE, len 8 -IP (tos 0x0, ttl 64, id 16037, offset 0, flags [DF], proto TCP (6), length 52) - 172.16.1.51.6633 > 172.16.1.101.62221: Flags [.], cksum 0x5adf (incorrect -> 0x9899), seq 161, ack 1653, win 155, options [nop,nop,TS val 2256458101 ecr 1], length 0 -IP (tos 0xa0, ttl 64, id 10688, offset 0, flags [DF], proto TCP (6), length 204) - 172.16.1.101.62221 > 172.16.1.51.6633: Flags [P.], cksum 0x89a4 (correct), seq 1653:1805, ack 161, win 2920, options [nop,nop,TS val 1 ecr 2256458060], length 152: OpenFlow - version 1.0, type QUEUE_GET_CONFIG_REPLY, length 144, xid 0x00000009 - port_no 2 - queue_id 0, len 16 - property NONE, len 8 - queue_id 1, len 16 - property NONE, len 8 - queue_id 2, len 16 - property NONE, len 8 - queue_id 3, len 16 - property NONE, len 8 - queue_id 4, len 16 - property NONE, len 8 - queue_id 5, len 16 - property NONE, len 8 - queue_id 6, len 16 - property NONE, len 8 - queue_id 7, len 16 - property NONE, len 8 - version 1.0, type BARRIER_REPLY, length 8, xid 0x0000000a -IP (tos 0x0, ttl 64, id 16038, offset 0, flags [DF], proto TCP (6), length 52) - 172.16.1.51.6633 > 172.16.1.101.62221: Flags [.], cksum 0x5adf (incorrect -> 0x97ef), seq 161, ack 1805, win 172, options [nop,nop,TS val 2256458102 ecr 1], length 0 -IP (tos 0x0, ttl 64, id 16039, offset 0, flags [DF], proto TCP (6), length 100) - 172.16.1.51.6633 > 172.16.1.101.62221: Flags [P.], cksum 0x5b0f (incorrect -> 0x9424), seq 161:209, ack 1805, win 172, options [nop,nop,TS val 2256458102 ecr 1], length 48: OpenFlow - version 1.0, type STATS_REQUEST, length 20, xid 0x0000000b - type QUEUE, flags 0x0000 - port_no 1, queue_id ALL - version 1.0, type STATS_REQUEST, length 20, xid 0x0000000c - type QUEUE, flags 0x0000 - port_no 2, queue_id ALL - version 1.0, type BARRIER_REQUEST, length 8, xid 0x0000000d -IP (tos 0xa0, ttl 64, id 10689, offset 0, flags [DF], proto TCP (6), length 96) - 172.16.1.101.62221 > 172.16.1.51.6633: Flags [P.], cksum 0x8b9c (correct), seq 1805:1849, ack 209, win 2892, options [nop,nop,TS val 1 ecr 2256458102], length 44: OpenFlow - version 1.0, type STATS_REPLY, length 44, xid 0x0000000b - type QUEUE, flags 0x0001 (MORE) - port_no 1, queue_id 0, tx_bytes 18446744073709551615, tx_packets 18446744073709551615, tx_errors 18446744073709551615 -IP (tos 0x0, ttl 64, id 16040, offset 0, flags [DF], proto TCP (6), length 52) - 172.16.1.51.6633 > 172.16.1.101.62221: Flags [.], cksum 0x5adf (incorrect -> 0x9769), seq 209, ack 1849, win 172, options [nop,nop,TS val 2256458144 ecr 1], length 0 -IP (tos 0xa0, ttl 64, id 10690, offset 0, flags [DF], proto TCP (6), length 744) - 172.16.1.101.62221 > 172.16.1.51.6633: Flags [P.], cksum 0x72af (correct), seq 1849:2541, ack 209, win 2920, options [nop,nop,TS val 1 ecr 2256458102], length 692: OpenFlow - version 1.0, type STATS_REPLY, length 44, xid 0x0000000b - type QUEUE, flags 0x0001 (MORE) - port_no 1, queue_id 1, tx_bytes 18446744073709551615, tx_packets 18446744073709551615, tx_errors 18446744073709551615 - version 1.0, type STATS_REPLY, length 44, xid 0x0000000b - type QUEUE, flags 0x0001 (MORE) - port_no 1, queue_id 2, tx_bytes 18446744073709551615, tx_packets 18446744073709551615, tx_errors 18446744073709551615 - version 1.0, type STATS_REPLY, length 44, xid 0x0000000b - type QUEUE, flags 0x0001 (MORE) - port_no 1, queue_id 3, tx_bytes 18446744073709551615, tx_packets 18446744073709551615, tx_errors 18446744073709551615 - version 1.0, type STATS_REPLY, length 44, xid 0x0000000b - type QUEUE, flags 0x0001 (MORE) - port_no 1, queue_id 4, tx_bytes 18446744073709551615, tx_packets 18446744073709551615, tx_errors 18446744073709551615 - version 1.0, type STATS_REPLY, length 44, xid 0x0000000b - type QUEUE, flags 0x0001 (MORE) - port_no 1, queue_id 5, tx_bytes 18446744073709551615, tx_packets 18446744073709551615, tx_errors 18446744073709551615 - version 1.0, type STATS_REPLY, length 44, xid 0x0000000b - type QUEUE, flags 0x0001 (MORE) - port_no 1, queue_id 6, tx_bytes 18446744073709551615, tx_packets 18446744073709551615, tx_errors 18446744073709551615 - version 1.0, type STATS_REPLY, length 44, xid 0x0000000b - type QUEUE, flags 0x0001 (MORE) - port_no 1, queue_id 7, tx_bytes 18446744073709551615, tx_packets 18446744073709551615, tx_errors 18446744073709551615 - version 1.0, type STATS_REPLY, length 12, xid 0x0000000b - type QUEUE, flags 0x0000 - version 1.0, type STATS_REPLY, length 44, xid 0x0000000c - type QUEUE, flags 0x0001 (MORE) - port_no 2, queue_id 0, tx_bytes 18446744073709551615, tx_packets 18446744073709551615, tx_errors 18446744073709551615 - version 1.0, type STATS_REPLY, length 44, xid 0x0000000c - type QUEUE, flags 0x0001 (MORE) - port_no 2, queue_id 1, tx_bytes 18446744073709551615, tx_packets 18446744073709551615, tx_errors 18446744073709551615 - version 1.0, type STATS_REPLY, length 44, xid 0x0000000c - type QUEUE, flags 0x0001 (MORE) - port_no 2, queue_id 2, tx_bytes 18446744073709551615, tx_packets 18446744073709551615, tx_errors 18446744073709551615 - version 1.0, type STATS_REPLY, length 44, xid 0x0000000c - type QUEUE, flags 0x0001 (MORE) - port_no 2, queue_id 3, tx_bytes 18446744073709551615, tx_packets 18446744073709551615, tx_errors 18446744073709551615 - version 1.0, type STATS_REPLY, length 44, xid 0x0000000c - type QUEUE, flags 0x0001 (MORE) - port_no 2, queue_id 4, tx_bytes 18446744073709551615, tx_packets 18446744073709551615, tx_errors 18446744073709551615 - version 1.0, type STATS_REPLY, length 44, xid 0x0000000c - type QUEUE, flags 0x0001 (MORE) - port_no 2, queue_id 5, tx_bytes 18446744073709551615, tx_packets 18446744073709551615, tx_errors 18446744073709551615 - version 1.0, type STATS_REPLY, length 44, xid 0x0000000c - type QUEUE, flags 0x0001 (MORE) - port_no 2, queue_id 6, tx_bytes 18446744073709551615, tx_packets 18446744073709551615, tx_errors 18446744073709551615 - version 1.0, type STATS_REPLY, length 44, xid 0x0000000c - type QUEUE, flags 0x0001 (MORE) - port_no 2, queue_id 7, tx_bytes 18446744073709551615, tx_packets 18446744073709551615, tx_errors 18446744073709551615 - version 1.0, type STATS_REPLY, length 12, xid 0x0000000c - type QUEUE, flags 0x0000 - version 1.0, type BARRIER_REPLY, length 8, xid 0x0000000d -IP (tos 0x0, ttl 64, id 16041, offset 0, flags [DF], proto TCP (6), length 52) - 172.16.1.51.6633 > 172.16.1.101.62221: Flags [.], cksum 0x5adf (incorrect -> 0x94a3), seq 209, ack 2541, win 189, options [nop,nop,TS val 2256458145 ecr 1], length 0 -IP (tos 0x0, ttl 64, id 16042, offset 0, flags [DF], proto TCP (6), length 700) - 172.16.1.51.6633 > 172.16.1.101.62221: Flags [P.], cksum 0x5d67 (incorrect -> 0xa5e9), seq 209:857, ack 2541, win 189, options [nop,nop,TS val 2256458147 ecr 1], length 648: OpenFlow - version 1.0, type FLOW_MOD, length 80, xid 0x0000000e - match in_port 1 - cookie 0x0000000000000001, command ADD, priority 24100, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type OUTPUT, len 8, port 4 - version 1.0, type FLOW_MOD, length 80, xid 0x0000000f - match in_port 2 - cookie 0x0000000000000002, command ADD, priority 24200, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type OUTPUT, len 8, port 4 - version 1.0, type FLOW_MOD, length 80, xid 0x00000010 - match in_port 3 - cookie 0x0000000000000003, command ADD, priority 24300, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type OUTPUT, len 8, port 4 - version 1.0, type FLOW_MOD, length 80, xid 0x00000011 - match in_port 5 - cookie 0x0000000000000004, command ADD, priority 20500, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type OUTPUT, len 8, port 8 - version 1.0, type FLOW_MOD, length 80, xid 0x00000012 - match in_port 6 - cookie 0x0000000000000005, command ADD, priority 20600, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type OUTPUT, len 8, port 8 - version 1.0, type FLOW_MOD, length 80, xid 0x00000013 - match in_port 7 - cookie 0x0000000000000006, command ADD, priority 20700, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type OUTPUT, len 8, port 8 - version 1.0, type FLOW_MOD, length 80, xid 0x00000014 - match in_port 4 - cookie 0x0000000000000007, command ADD, priority 25400, buffer_id NONE, flags 0x0005 (SEND_FLOW_REM, EMERG) - action type OUTPUT, len 8, port 8 - version 1.0, type FLOW_MOD, length 80, xid 0x00000015 - match in_port 8 - cookie 0x0000000000000008, command ADD, priority 25800, buffer_id NONE, flags 0x0005 (SEND_FLOW_REM, EMERG) - action type OUTPUT, len 8, port 4 - version 1.0, type BARRIER_REQUEST, length 8, xid 0x00000016 -IP (tos 0xa0, ttl 64, id 10691, offset 0, flags [DF], proto TCP (6), length 60) - 172.16.1.101.62221 > 172.16.1.51.6633: Flags [P.], cksum 0x862d (correct), seq 2541:2549, ack 857, win 2920, options [nop,nop,TS val 1 ecr 2256458147], length 8: OpenFlow - version 1.0, type BARRIER_REPLY, length 8, xid 0x00000016 -IP (tos 0x0, ttl 64, id 16043, offset 0, flags [DF], proto TCP (6), length 116) - 172.16.1.51.6633 > 172.16.1.101.62221: Flags [P.], cksum 0x5b1f (incorrect -> 0x6ef4), seq 857:921, ack 2549, win 189, options [nop,nop,TS val 2256458158 ecr 1], length 64: OpenFlow - version 1.0, type STATS_REQUEST, length 56, xid 0x00000017 - type FLOW, flags 0x0000 - table_id ALL, out_port NONE - version 1.0, type BARRIER_REQUEST, length 8, xid 0x00000018 -IP (tos 0xa0, ttl 64, id 10692, offset 0, flags [DF], proto TCP (6), length 160) - 172.16.1.101.62221 > 172.16.1.51.6633: Flags [P.], cksum 0x0485 (correct), seq 2549:2657, ack 921, win 2912, options [nop,nop,TS val 1 ecr 2256458158], length 108: OpenFlow - version 1.0, type STATS_REPLY, length 108, xid 0x00000017 - type FLOW, flags 0x0001 (MORE) - length 96, table_id 0 - match in_port 3 - duration_sec 0, duration_nsec 0, priority 24300, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000003, packet_count 0, byte_count 0 - action type OUTPUT, len 8, port 4 -IP (tos 0x0, ttl 64, id 16044, offset 0, flags [DF], proto TCP (6), length 52) - 172.16.1.51.6633 > 172.16.1.101.62221: Flags [.], cksum 0x5adf (incorrect -> 0x9131), seq 921, ack 2657, win 189, options [nop,nop,TS val 2256458199 ecr 1], length 0 -IP (tos 0xa0, ttl 64, id 10693, offset 0, flags [DF], proto TCP (6), length 828) - 172.16.1.101.62221 > 172.16.1.51.6633: Flags [P.], cksum 0x1544 (correct), seq 2657:3433, ack 921, win 2920, options [nop,nop,TS val 1 ecr 2256458158], length 776: OpenFlow - version 1.0, type STATS_REPLY, length 108, xid 0x00000017 - type FLOW, flags 0x0001 (MORE) - length 96, table_id 0 - match in_port 2 - duration_sec 0, duration_nsec 0, priority 24200, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000002, packet_count 0, byte_count 0 - action type OUTPUT, len 8, port 4 - version 1.0, type STATS_REPLY, length 108, xid 0x00000017 - type FLOW, flags 0x0001 (MORE) - length 96, table_id 0 - match in_port 1 - duration_sec 0, duration_nsec 0, priority 24100, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000001, packet_count 0, byte_count 0 - action type OUTPUT, len 8, port 4 - version 1.0, type STATS_REPLY, length 108, xid 0x00000017 - type FLOW, flags 0x0001 (MORE) - length 96, table_id 1 - match in_port 7 - duration_sec 0, duration_nsec 0, priority 20700, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000006, packet_count 0, byte_count 0 - action type OUTPUT, len 8, port 8 - version 1.0, type STATS_REPLY, length 108, xid 0x00000017 - type FLOW, flags 0x0001 (MORE) - length 96, table_id 1 - match in_port 6 - duration_sec 0, duration_nsec 0, priority 20600, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000005, packet_count 0, byte_count 0 - action type OUTPUT, len 8, port 8 - version 1.0, type STATS_REPLY, length 108, xid 0x00000017 - type FLOW, flags 0x0001 (MORE) - length 96, table_id 1 - match in_port 5 - duration_sec 0, duration_nsec 0, priority 20500, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000004, packet_count 0, byte_count 0 - action type OUTPUT, len 8, port 8 - version 1.0, type STATS_REPLY, length 108, xid 0x00000017 - type FLOW, flags 0x0001 (MORE) - length 96, table_id EMERG - match in_port 8 - duration_sec 0, duration_nsec 0, priority 25800, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000008, packet_count 0, byte_count 0 - action type OUTPUT, len 8, port 4 - version 1.0, type STATS_REPLY, length 108, xid 0x00000017 - type FLOW, flags 0x0001 (MORE) - length 96, table_id EMERG - match in_port 4 - duration_sec 0, duration_nsec 0, priority 25400, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000007, packet_count 0, byte_count 0 - action type OUTPUT, len 8, port 8 - version 1.0, type STATS_REPLY, length 12, xid 0x00000017 - type FLOW, flags 0x0000 - version 1.0, type BARRIER_REPLY, length 8, xid 0x00000018 -IP (tos 0x0, ttl 64, id 16045, offset 0, flags [DF], proto TCP (6), length 52) - 172.16.1.51.6633 > 172.16.1.101.62221: Flags [.], cksum 0x5adf (incorrect -> 0x8e18), seq 921, ack 3433, win 205, options [nop,nop,TS val 2256458200 ecr 1], length 0 -IP (tos 0x0, ttl 64, id 16046, offset 0, flags [DF], proto TCP (6), length 72) - 172.16.1.51.6633 > 172.16.1.101.62221: Flags [P.], cksum 0x5af3 (incorrect -> 0x8b90), seq 921:941, ack 3433, win 205, options [nop,nop,TS val 2256458200 ecr 1], length 20: OpenFlow - version 1.0, type STATS_REQUEST, length 12, xid 0x00000019 - type TABLE, flags 0x0000 - version 1.0, type BARRIER_REQUEST, length 8, xid 0x0000001a -IP (tos 0xa0, ttl 64, id 10694, offset 0, flags [DF], proto TCP (6), length 128) - 172.16.1.101.62221 > 172.16.1.51.6633: Flags [P.], cksum 0xe84a (correct), seq 3433:3509, ack 941, win 2912, options [nop,nop,TS val 1 ecr 2256458200], length 76: OpenFlow - version 1.0, type STATS_REPLY, length 76, xid 0x00000019 - type TABLE, flags 0x0001 (MORE) - table_id 0, name 'Normal 1 Flow Table' - wildcards 0x003820ff (IN_PORT, DL_VLAN, DL_SRC, DL_DST, DL_TYPE, NW_PROTO, TP_SRC, TP_DST, DL_VLAN_PCP, NW_TOS) - max_entries 5632, active_count 3, lookup_count 18446744073709551615, matched_count 18446744073709551615 -IP (tos 0x0, ttl 64, id 16047, offset 0, flags [DF], proto TCP (6), length 52) - 172.16.1.51.6633 > 172.16.1.101.62221: Flags [.], cksum 0x5adf (incorrect -> 0x8d8f), seq 941, ack 3509, win 205, options [nop,nop,TS val 2256458241 ecr 1], length 0 -IP (tos 0xa0, ttl 64, id 10695, offset 0, flags [DF], proto TCP (6), length 832) - 172.16.1.101.62221 > 172.16.1.51.6633: Flags [P.], cksum 0x198c (correct), seq 3509:4289, ack 941, win 2920, options [nop,nop,TS val 1 ecr 2256458200], length 780: OpenFlow - version 1.0, type STATS_REPLY, length 76, xid 0x00000019 - type TABLE, flags 0x0001 (MORE) - table_id 1, name 'Expanded Flow Table' - wildcards 0x003820ff (IN_PORT, DL_VLAN, DL_SRC, DL_DST, DL_TYPE, NW_PROTO, TP_SRC, TP_DST, DL_VLAN_PCP, NW_TOS) - max_entries 163840, active_count 3, lookup_count 18446744073709551615, matched_count 18446744073709551615 - version 1.0, type STATS_REPLY, length 76, xid 0x00000019 - type TABLE, flags 0x0001 (MORE) - table_id 20, name 'Normal 2 Flow Table' - wildcards 0x003820ff (IN_PORT, DL_VLAN, DL_SRC, DL_DST, DL_TYPE, NW_PROTO, TP_SRC, TP_DST, DL_VLAN_PCP, NW_TOS) - max_entries 512, active_count 0, lookup_count 18446744073709551615, matched_count 18446744073709551615 - version 1.0, type STATS_REPLY, length 76, xid 0x00000019 - type TABLE, flags 0x0001 (MORE) - table_id 50, name 'Mpls 1 Flow Table' - wildcards 0x003820ef (IN_PORT, DL_VLAN, DL_SRC, DL_DST, NW_PROTO, TP_SRC, TP_DST, DL_VLAN_PCP, NW_TOS) - max_entries 512, active_count 0, lookup_count 18446744073709551615, matched_count 18446744073709551615 - version 1.0, type STATS_REPLY, length 76, xid 0x00000019 - type TABLE, flags 0x0001 (MORE) - table_id 51, name 'Mpls 2 Flow Table' - wildcards 0x003820ef (IN_PORT, DL_VLAN, DL_SRC, DL_DST, NW_PROTO, TP_SRC, TP_DST, DL_VLAN_PCP, NW_TOS) - max_entries 16384, active_count 0, lookup_count 18446744073709551615, matched_count 18446744073709551615 - version 1.0, type STATS_REPLY, length 76, xid 0x00000019 - type TABLE, flags 0x0001 (MORE) - table_id 99, name 'Software Flow Table' - wildcards 0x003820ff (IN_PORT, DL_VLAN, DL_SRC, DL_DST, DL_TYPE, NW_PROTO, TP_SRC, TP_DST, DL_VLAN_PCP, NW_TOS) - max_entries 2048, active_count 0, lookup_count 18446744073709551615, matched_count 18446744073709551615 - version 1.0, type STATS_REPLY, length 76, xid 0x00000019 - type TABLE, flags 0x0001 (MORE) - table_id 100, name 'V-Normal 1 Flow Table' - wildcards 0x003820ff (IN_PORT, DL_VLAN, DL_SRC, DL_DST, DL_TYPE, NW_PROTO, TP_SRC, TP_DST, DL_VLAN_PCP, NW_TOS) - max_entries 0, active_count 0, lookup_count 18446744073709551615, matched_count 18446744073709551615 - version 1.0, type STATS_REPLY, length 76, xid 0x00000019 - type TABLE, flags 0x0001 (MORE) - table_id 101, name 'V-Expanded Flow Table' - wildcards 0x003820ff (IN_PORT, DL_VLAN, DL_SRC, DL_DST, DL_TYPE, NW_PROTO, TP_SRC, TP_DST, DL_VLAN_PCP, NW_TOS) - max_entries 0, active_count 0, lookup_count 18446744073709551615, matched_count 18446744073709551615 - version 1.0, type STATS_REPLY, length 76, xid 0x00000019 - type TABLE, flags 0x0001 (MORE) - table_id 120, name 'V-Normal 2 Flow Table' - wildcards 0x003820ff (IN_PORT, DL_VLAN, DL_SRC, DL_DST, DL_TYPE, NW_PROTO, TP_SRC, TP_DST, DL_VLAN_PCP, NW_TOS) - max_entries 0, active_count 0, lookup_count 18446744073709551615, matched_count 18446744073709551615 - version 1.0, type STATS_REPLY, length 76, xid 0x00000019 - type TABLE, flags 0x0001 (MORE) - table_id 140, name 'Q-Normal 1 Flow Table' - wildcards 0x003820ff (IN_PORT, DL_VLAN, DL_SRC, DL_DST, DL_TYPE, NW_PROTO, TP_SRC, TP_DST, DL_VLAN_PCP, NW_TOS) - max_entries 0, active_count 0, lookup_count 18446744073709551615, matched_count 18446744073709551615 - version 1.0, type STATS_REPLY, length 76, xid 0x00000019 - type TABLE, flags 0x0001 (MORE) - table_id EMERG, name 'Emergency Flow Cache' - wildcards 0x003820ff (IN_PORT, DL_VLAN, DL_SRC, DL_DST, DL_TYPE, NW_PROTO, TP_SRC, TP_DST, DL_VLAN_PCP, NW_TOS) - max_entries 5632, active_count 2, lookup_count 18446744073709551615, matched_count 18446744073709551615 - version 1.0, type STATS_REPLY, length 12, xid 0x00000019 - type TABLE, flags 0x0000 - version 1.0, type BARRIER_REPLY, length 8, xid 0x0000001a -IP (tos 0x0, ttl 64, id 16048, offset 0, flags [DF], proto TCP (6), length 52) - 172.16.1.51.6633 > 172.16.1.101.62221: Flags [.], cksum 0x5adf (incorrect -> 0x8a72), seq 941, ack 4289, win 222, options [nop,nop,TS val 2256458241 ecr 1], length 0 -IP (tos 0x0, ttl 64, id 16049, offset 0, flags [DF], proto TCP (6), length 52) - 172.16.1.51.6633 > 172.16.1.101.62221: Flags [F.], cksum 0x5adf (incorrect -> 0x895d), seq 941, ack 4289, win 222, options [nop,nop,TS val 2256458517 ecr 1], length 0 -IP (tos 0xa0, ttl 64, id 10696, offset 0, flags [DF], proto TCP (6), length 52) - 172.16.1.101.62221 > 172.16.1.51.6633: Flags [.], cksum 0x7ed2 (correct), seq 4289, ack 942, win 2920, options [nop,nop,TS val 2 ecr 2256458517], length 0 -IP (tos 0xa0, ttl 64, id 10697, offset 0, flags [DF], proto TCP (6), length 52) - 172.16.1.101.62221 > 172.16.1.51.6633: Flags [F.], cksum 0x7ed1 (correct), seq 4289, ack 942, win 2920, options [nop,nop,TS val 2 ecr 2256458517], length 0 -IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto TCP (6), length 52) - 172.16.1.51.6633 > 172.16.1.101.62221: Flags [.], cksum 0x8958 (correct), seq 942, ack 4290, win 222, options [nop,nop,TS val 2256458520 ecr 2], length 0 -IP (tos 0xa0, ttl 64, id 10710, offset 0, flags [DF], proto TCP (6), length 60) - 172.16.1.101.62216 > 172.16.1.51.6633: Flags [S], cksum 0xf0a4 (correct), seq 2928426028, win 2048, options [mss 1460,nop,wscale 0,nop,nop,TS val 0 ecr 0], length 0 -IP (tos 0xa0, ttl 64, id 0, offset 0, flags [DF], proto TCP (6), length 40) - 172.16.1.51.6633 > 172.16.1.101.62216: Flags [R.], cksum 0x5d6c (correct), seq 0, ack 2928426029, win 0, length 0 diff --git a/tests/of10_pf5240.pcap b/tests/of10_pf5240.pcap deleted file mode 100644 index 9f5aed2..0000000 Binary files a/tests/of10_pf5240.pcap and /dev/null differ diff --git a/tests/of10_s4810-vvvv.out b/tests/of10_s4810-vvvv.out deleted file mode 100644 index 2fb45d6..0000000 --- a/tests/of10_s4810-vvvv.out +++ /dev/null @@ -1,1337 +0,0 @@ -IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto TCP (6), length 64) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [S], cksum 0xa75a (correct), seq 469952923, win 32768, options [mss 1380,nop,wscale 5,sackOK,nop,nop,nop,nop,TS val 1 ecr 0], length 0 -IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto TCP (6), length 60) - 10.0.0.20.6633 > 10.0.0.81.56068: Flags [S.], cksum 0x1493 (incorrect -> 0xa59a), seq 1198728146, ack 469952924, win 14480, options [mss 1460,sackOK,TS val 47836340 ecr 1,nop,wscale 7], length 0 -IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto TCP (6), length 52) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [.], cksum 0x08ec (correct), seq 1, ack 1, win 1035, options [nop,nop,TS val 1 ecr 47836340], length 0 -IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto TCP (6), length 60) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0x293c (correct), seq 1:9, ack 1, win 1035, options [nop,nop,TS val 1 ecr 47836340], length 8: OpenFlow - version 1.0, type HELLO, length 8, xid 0xf1c0ecd6 -IP (tos 0x0, ttl 64, id 53094, offset 0, flags [DF], proto TCP (6), length 52) - 10.0.0.20.6633 > 10.0.0.81.56068: Flags [.], cksum 0x148b (incorrect -> 0x0c7c), seq 1, ack 9, win 114, options [nop,nop,TS val 47836341 ecr 1], length 0 -IP (tos 0x0, ttl 64, id 53095, offset 0, flags [DF], proto TCP (6), length 60) - 10.0.0.20.6633 > 10.0.0.81.56068: Flags [P.], cksum 0x1493 (incorrect -> 0x0b5d), seq 1:9, ack 9, win 114, options [nop,nop,TS val 47836347 ecr 1], length 8: OpenFlow - version 1.0, type HELLO, length 8, xid 0x00000001 -IP (tos 0x0, ttl 64, id 53096, offset 0, flags [DF], proto TCP (6), length 60) - 10.0.0.20.6633 > 10.0.0.81.56068: Flags [P.], cksum 0x1493 (incorrect -> 0x0b4e), seq 9:17, ack 9, win 114, options [nop,nop,TS val 47836348 ecr 1], length 8: OpenFlow - version 1.0, type FEATURES_REQUEST, length 8, xid 0x00000002 -IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto TCP (6), length 52) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [.], cksum 0x08ce (correct), seq 9, ack 17, win 1034, options [nop,nop,TS val 1 ecr 47836347], length 0 -IP (tos 0x0, ttl 64, id 53469, offset 0, flags [DF], proto TCP (6), length 180) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0x48dc (correct), seq 9:137, ack 17, win 1035, options [nop,nop,TS val 1 ecr 47836347], length 128: OpenFlow - version 1.0, type FEATURES_REPLY, length 128, xid 0x00000002 - dpid 0x00010001e88ae0e2, n_buffers 0, n_tables 6 - capabilities 0x00000007 (FLOW_STATS, TABLE_STATS, PORT_STATS) - actions 0x00000137 (OUTPUT, SET_VLAN_VID, SET_VLAN_PCP, SET_DL_SRC, SET_DL_DST, SET_NW_TOS) - port_no 1, hw_addr 00:01:e8:8a:e0:e4, name 'Te 0/0' - config 0x00000000 - state 0x00000000 - curr 0x00000340 (10GB_FD, FIBER, AUTONEG) - advertised 0x00000340 (10GB_FD, FIBER, AUTONEG) - supported 0x00000340 (10GB_FD, FIBER, AUTONEG) - peer 0x00000000 - port_no 2, hw_addr 00:01:e8:8a:e0:e4, name 'Te 0/1' - config 0x00000001 (PORT_DOWN) - state 0x00000001 (LINK_DOWN) - curr 0x00000300 (FIBER, AUTONEG) - advertised 0x00000300 (FIBER, AUTONEG) - supported 0x00000300 (FIBER, AUTONEG) - peer 0x00000000 -IP (tos 0x0, ttl 64, id 53097, offset 0, flags [DF], proto TCP (6), length 136) - 10.0.0.20.6633 > 10.0.0.81.56068: Flags [P.], cksum 0x14df (incorrect -> 0x08c9), seq 17:101, ack 137, win 122, options [nop,nop,TS val 47836352 ecr 1], length 84: OpenFlow - version 1.0, type SET_CONFIG, length 12, xid 0x00000003 - flags FRAG_NORMAL, miss_send_len 65535 - version 1.0, type FLOW_MOD, length 72, xid 0x00000004 - cookie 0x0000000000000000, command DELETE, out_port NONE, flags 0x0000 -IP (tos 0x0, ttl 64, id 53098, offset 0, flags [DF], proto TCP (6), length 60) - 10.0.0.20.6633 > 10.0.0.81.56068: Flags [P.], cksum 0x1493 (incorrect -> 0x0a54), seq 101:109, ack 137, win 122, options [nop,nop,TS val 47836354 ecr 1], length 8: OpenFlow - version 1.0, type BARRIER_REQUEST, length 8, xid 0x00000005 -IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto TCP (6), length 52) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [.], cksum 0x07ed (correct), seq 137, ack 109, win 1034, options [nop,nop,TS val 1 ecr 47836352], length 0 -IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto TCP (6), length 60) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0x06bc (correct), seq 137:145, ack 109, win 1035, options [nop,nop,TS val 1 ecr 47836352], length 8: OpenFlow - version 1.0, type BARRIER_REPLY, length 8, xid 0x00000005 -IP (tos 0x0, ttl 64, id 53099, offset 0, flags [DF], proto TCP (6), length 80) - 10.0.0.20.6633 > 10.0.0.81.56068: Flags [P.], cksum 0x14a7 (incorrect -> 0x07f3), seq 109:137, ack 145, win 122, options [nop,nop,TS val 47836355 ecr 1], length 28: OpenFlow - version 1.0, type FEATURES_REQUEST, length 8, xid 0x00000006 - version 1.0, type STATS_REQUEST, length 12, xid 0x00000007 - type TABLE, flags 0x0000 - version 1.0, type BARRIER_REQUEST, length 8, xid 0x00000008 -IP (tos 0x0, ttl 64, id 53475, offset 0, flags [DF], proto TCP (6), length 180) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0x47d0 (correct), seq 145:273, ack 137, win 1035, options [nop,nop,TS val 1 ecr 47836355], length 128: OpenFlow - version 1.0, type FEATURES_REPLY, length 128, xid 0x00000006 - dpid 0x00010001e88ae0e2, n_buffers 0, n_tables 6 - capabilities 0x00000007 (FLOW_STATS, TABLE_STATS, PORT_STATS) - actions 0x00000137 (OUTPUT, SET_VLAN_VID, SET_VLAN_PCP, SET_DL_SRC, SET_DL_DST, SET_NW_TOS) - port_no 1, hw_addr 00:01:e8:8a:e0:e4, name 'Te 0/0' - config 0x00000000 - state 0x00000000 - curr 0x00000340 (10GB_FD, FIBER, AUTONEG) - advertised 0x00000340 (10GB_FD, FIBER, AUTONEG) - supported 0x00000340 (10GB_FD, FIBER, AUTONEG) - peer 0x00000000 - port_no 2, hw_addr 00:01:e8:8a:e0:e4, name 'Te 0/1' - config 0x00000001 (PORT_DOWN) - state 0x00000001 (LINK_DOWN) - curr 0x00000300 (FIBER, AUTONEG) - advertised 0x00000300 (FIBER, AUTONEG) - supported 0x00000300 (FIBER, AUTONEG) - peer 0x00000000 -IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto TCP (6), length 60) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0x0612 (correct), seq 273:281, ack 137, win 1035, options [nop,nop,TS val 1 ecr 47836355], length 8: OpenFlow - version 1.0, type BARRIER_REPLY, length 8, xid 0x00000008 -IP (tos 0x0, ttl 64, id 53476, offset 0, flags [DF], proto TCP (6), length 448) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0x2be8 (correct), seq 281:677, ack 137, win 1035, options [nop,nop,TS val 1 ecr 47836355], length 396: OpenFlow - version 1.0, type STATS_REPLY, length 396, xid 0x00000007 - type TABLE, flags 0x0000 - table_id 0, name 'VLAN Table' - wildcards 0x003ffffd (IN_PORT, DL_SRC, DL_DST, DL_TYPE, NW_PROTO, TP_SRC, TP_DST, DL_VLAN_PCP, NW_TOS) - max_entries 1024, active_count 0, lookup_count 0, matched_count 0 - table_id 0, name 'MAC Table' - wildcards 0x003ffff5 (IN_PORT, DL_SRC, DL_TYPE, NW_PROTO, TP_SRC, TP_DST, DL_VLAN_PCP, NW_TOS) - max_entries 49152, active_count 0, lookup_count 0, matched_count 0 - table_id 0, name 'Route Table' - wildcards 0x003fffff (IN_PORT, DL_VLAN, DL_SRC, DL_DST, DL_TYPE, NW_PROTO, TP_SRC, TP_DST, DL_VLAN_PCP, NW_TOS) - max_entries 6144, active_count 0, lookup_count 0, matched_count 0 - table_id 0, name 'ACL Table' - wildcards 0x003fffff (IN_PORT, DL_VLAN, DL_SRC, DL_DST, DL_TYPE, NW_PROTO, TP_SRC, TP_DST, DL_VLAN_PCP, NW_TOS) - max_entries 498, active_count 0, lookup_count 127028, matched_count 0 - table_id 0, name 'Learning Switch Table' - wildcards 0x003fffff (IN_PORT, DL_VLAN, DL_SRC, DL_DST, DL_TYPE, NW_PROTO, TP_SRC, TP_DST, DL_VLAN_PCP, NW_TOS) - max_entries 24576, active_count 0, lookup_count 0, matched_count 0 - table_id 0, name 'Egress Port Block Table' - wildcards 0x003fffff (IN_PORT, DL_VLAN, DL_SRC, DL_DST, DL_TYPE, NW_PROTO, TP_SRC, TP_DST, DL_VLAN_PCP, NW_TOS) - max_entries 256, active_count 0, lookup_count 0, matched_count 0 -IP (tos 0x0, ttl 64, id 53100, offset 0, flags [DF], proto TCP (6), length 52) - 10.0.0.20.6633 > 10.0.0.81.56068: Flags [.], cksum 0x148b (incorrect -> 0x088c), seq 137, ack 677, win 139, options [nop,nop,TS val 47836520 ecr 1], length 0 -IP (tos 0x0, ttl 64, id 53101, offset 0, flags [DF], proto TCP (6), length 4156) - 10.0.0.20.6633 > 10.0.0.81.56068: Flags [.], cksum 0x2493 (incorrect -> 0xa671), seq 137:4241, ack 677, win 139, options [nop,nop,TS val 47836527 ecr 1], length 4104: OpenFlow - version 1.0, type FLOW_MOD, length 80, xid 0x00000009 - match in_port 1 - cookie 0x0000000000000001, command ADD, priority 35000, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type OUTPUT, len 8, port CONTROLLER, max_len 65535 - version 1.0, type FLOW_MOD, length 80, xid 0x0000000a - match in_port 1 - cookie 0x0000000000000002, command ADD, priority 34999, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type SET_VLAN_VID, len 8, vlan_vid 2 - version 1.0, type FLOW_MOD, length 80, xid 0x0000000b - match in_port 1 - cookie 0x0000000000000003, command ADD, priority 34998, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type SET_VLAN_PCP, len 8, vlan_pcp 5 - version 1.0, type FLOW_MOD, length 88, xid 0x0000000c - match in_port 1 - cookie 0x0000000000000004, command ADD, priority 34997, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type SET_VLAN_VID, len 8, vlan_vid 2 - action type SET_VLAN_PCP, len 8, vlan_pcp 5 - version 1.0, type FLOW_MOD, length 88, xid 0x0000000d - match in_port 1 - cookie 0x0000000000000005, command ADD, priority 34996, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type SET_DL_SRC, len 16, dl_addr 11:22:33:44:55:66 - version 1.0, type FLOW_MOD, length 88, xid 0x0000000e - match in_port 1 - cookie 0x0000000000000006, command ADD, priority 34995, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type SET_DL_DST, len 16, dl_addr 77:88:99:aa:bb:cc - version 1.0, type FLOW_MOD, length 104, xid 0x0000000f - match in_port 1 - cookie 0x0000000000000007, command ADD, priority 34994, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type SET_DL_SRC, len 16, dl_addr 11:22:33:44:55:66 - action type SET_DL_DST, len 16, dl_addr 77:88:99:aa:bb:cc - version 1.0, type FLOW_MOD, length 80, xid 0x00000010 - match in_port 1 - match dl_src 00:00:00:00:00:01 - cookie 0x0000000000000008, command ADD, priority 34000, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type OUTPUT, len 8, port 2 - version 1.0, type FLOW_MOD, length 80, xid 0x00000011 - match in_port 1 - cookie 0x0000000000000009, command ADD, priority 33000, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type SET_NW_TOS, len 8, nw_tos 0x28 - version 1.0, type FLOW_MOD, length 80, xid 0x00000012 - match dl_vlan 100 - match dl_vlan_pcp 4 - match dl_type 0x0800 - cookie 0x000000000000000a, command ADD, priority 32000, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type OUTPUT, len 8, port 2 - version 1.0, type FLOW_MOD, length 80, xid 0x00000013 - match dl_type 0x0800 - match nw_src 10.11.12.0/24 - match nw_dst 10.13.14.0/24 - cookie 0x000000000000000b, command ADD, priority 31999, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type OUTPUT, len 8, port 2 - version 1.0, type FLOW_MOD, length 80, xid 0x00000014 - match dl_type 0x0800 - match nw_proto 17 - match tp_src 68 - match tp_dst 67 - cookie 0x000000000000000c, command ADD, priority 31998, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type OUTPUT, len 8, port 2 - version 1.0, type FLOW_MOD, length 80, xid 0x00000015 - match dl_type 0x0800 - match nw_proto 1 - match icmp_type 8 - cookie 0x000000000000000d, command ADD, priority 31997, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type OUTPUT, len 8, port 2 - version 1.0, type FLOW_MOD, length 80, xid 0x00000016 - match dl_type 0x0800 - match nw_proto 1 - match icmp_type 3 - match icmp_code 13 - cookie 0x000000000000000e, command ADD, priority 31996, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type OUTPUT, len 8, port 2 - version 1.0, type FLOW_MOD, length 80, xid 0x00000017 - match dl_src aa:00:00:00:00:11 - match dl_dst bb:00:00:00:00:22 - cookie 0x000000000000000f, command ADD, priority 31995, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type OUTPUT, len 8, port 2 - version 1.0, type FLOW_MOD, length 80, xid 0x00000018 - match dl_type 0x0800 - match nw_tos 0x24 - cookie 0x0000000000000010, command ADD, priority 31994, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type OUTPUT, len 8, port 2 - version 1.0, type FLOW_MOD, length 80, xid 0x00000019 - match dl_type 0x0800 - match nw_proto 6 - match tp_src 80 - match tp_dst 80 - cookie 0x0000000000000011, command ADD, priority 31993, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type OUTPUT, len 8, port 2 - version 1.0, type FLOW_MOD, length 112, xid 0x0000001a - match dl_dst 00:01:e8:8a:e0:e4 - match dl_type 0x0800 - match nw_dst 10.21.0.0/16 - cookie 0x0000000000000012, command ADD, priority 65535, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type SET_DL_SRC, len 16, dl_addr 00:01:e8:8a:e0:e4 - action type SET_DL_DST, len 16, dl_addr 11:00:00:00:00:00 - action type OUTPUT, len 8, port 2 - version 1.0, type FLOW_MOD, length 112, xid 0x0000001b - match dl_dst 00:01:e8:8a:e0:e4 - match dl_type 0x0800 - match nw_dst 10.22.0.0/16 - cookie 0x0000000000000013, command ADD, priority 65535, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type SET_DL_SRC, len 16, dl_addr 00:01:e8:8a:e0:e4 - action type SET_DL_DST, len 16, dl_addr 11:00:00:00:00:00 - action type OUTPUT, len 8, port 2 - version 1.0, type FLOW_MOD, length 112, xid 0x0000001c - match dl_dst 00:01:e8:8a:e0:e4 - match dl_type 0x0800 - match nw_dst 10.23.0.0/16 - cookie 0x0000000000000014, command ADD, priority 65535, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type SET_DL_SRC, len 16, dl_addr 00:01:e8:8a:e0:e4 - action type SET_DL_DST, len 16, dl_addr 11:00:00:00:00:00 - action type OUTPUT, len 8, port 2 - version 1.0, type FLOW_MOD, length 112, xid 0x0000001d - match dl_dst 00:01:e8:8a:e0:e4 - match dl_type 0x0800 - match nw_dst 10.24.0.0/16 - cookie 0x0000000000000015, command ADD, priority 65535, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type SET_DL_SRC, len 16, dl_addr 00:01:e8:8a:e0:e4 - action type SET_DL_DST, len 16, dl_addr 11:00:00:00:00:00 - action type OUTPUT, len 8, port 2 - version 1.0, type FLOW_MOD, length 112, xid 0x0000001e - match dl_dst 00:01:e8:8a:e0:e4 - match dl_type 0x0800 - match nw_dst 10.20.0.0/24 - cookie 0x0000000000000016, command ADD, priority 65535, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type SET_DL_SRC, len 16, dl_addr 00:01:e8:8a:e0:e4 - action type SET_DL_DST, len 16, dl_addr 11:00:00:00:00:00 - action type OUTPUT, len 8, port 2 - version 1.0, type FLOW_MOD, length 112, xid 0x0000001f - match dl_dst 00:01:e8:8a:e0:e4 - match dl_type 0x0800 - match nw_dst 10.20.1.0/24 - cookie 0x0000000000000017, command ADD, priority 65535, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type SET_DL_SRC, len 16, dl_addr 00:01:e8:8a:e0:e4 - action type SET_DL_DST, len 16, dl_addr 11:00:00:00:00:00 - action type OUTPUT, len 8, port 2 - version 1.0, type FLOW_MOD, length 112, xid 0x00000020 - match dl_dst 00:01:e8:8a:e0:e4 - match dl_type 0x0800 - match nw_dst 10.20.2.0/24 - cookie 0x0000000000000018, command ADD, priority 65535, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type SET_DL_SRC, len 16, dl_addr 00:01:e8:8a:e0:e4 - action type SET_DL_DST, len 16, dl_addr 11:00:00:00:00:00 - action type OUTPUT, len 8, port 2 - version 1.0, type FLOW_MOD, length 112, xid 0x00000021 - match dl_dst 00:01:e8:8a:e0:e4 - match dl_type 0x0800 - match nw_dst 10.20.3.0/24 - cookie 0x0000000000000019, command ADD, priority 65535, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type SET_DL_SRC, len 16, dl_addr 00:01:e8:8a:e0:e4 - action type SET_DL_DST, len 16, dl_addr 11:00:00:00:00:00 - action type OUTPUT, len 8, port 2 - version 1.0, type FLOW_MOD, length 112, xid 0x00000022 - match dl_dst 00:01:e8:8a:e0:e4 - match dl_type 0x0800 - match nw_dst 10.20.4.0/24 - cookie 0x000000000000001a, command ADD, priority 65535, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type SET_DL_SRC, len 16, dl_addr 00:01:e8:8a:e0:e4 - action type SET_DL_DST, len 16, dl_addr 11:00:00:00:00:00 - action type OUTPUT, len 8, port 2 - version 1.0, type FLOW_MOD, length 112, xid 0x00000023 - match dl_dst 00:01:e8:8a:e0:e4 - match dl_type 0x0800 - match nw_dst 10.20.5.0/24 - cookie 0x000000000000001b, command ADD, priority 65535, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type SET_DL_SRC, len 16, dl_addr 00:01:e8:8a:e0:e4 - action type SET_DL_DST, len 16, dl_addr 11:00:00:00:00:00 - action type OUTPUT, len 8, port 2 - version 1.0, type FLOW_MOD, length 112, xid 0x00000024 - match dl_dst 00:01:e8:8a:e0:e4 - match dl_type 0x0800 - match nw_dst 10.20.6.0/24 - cookie 0x000000000000001c, command ADD, priority 65535, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type SET_DL_SRC, len 16, dl_addr 00:01:e8:8a:e0:e4 - action type SET_DL_DST, len 16, dl_addr 11:00:00:00:00:00 - action type OUTPUT, len 8, port 2 - version 1.0, type FLOW_MOD, length 112, xid 0x00000025 - match dl_dst 00:01:e8:8a:e0:e4 - match dl_type 0x0800 - match nw_dst 10.20.7.0/24 - cookie 0x000000000000001d, command ADD, priority 65535, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type SET_DL_SRC, len 16, dl_addr 00:01:e8:8a:e0:e4 - action type SET_DL_DST, len 16, dl_addr 11:00:00:00:00:00 - action type OUTPUT, len 8, port 2 - version 1.0, type FLOW_MOD, length 112, xid 0x00000026 - match dl_dst 00:01:e8:8a:e0:e4 - match dl_type 0x0800 - cookie 0x000000000000001e, command ADD, priority 65535, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type SET_DL_SRC, len 16, dl_addr 00:01:e8:8a:e0:e4 - action type SET_DL_DST, len 16, dl_addr 11:00:00:00:00:00 - action type OUTPUT, len 8, port 2 - version 1.0, type FLOW_MOD, length 80, xid 0x00000027 - match dl_dst 00:11:22:33:00:32 - match dl_vlan 50 - cookie 0x000000000000001f, command ADD, priority 65535, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type OUTPUT, len 8, port 1 - version 1.0, type FLOW_MOD, length 80, xid 0x00000028 - match dl_dst 00:11:22:33:00:33 - match dl_vlan 51 - cookie 0x0000000000000020, command ADD, priority 65535, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type OUTPUT, len 8, port 1 - version 1.0, type FLOW_MOD, length 80, xid 0x00000029 - match dl_dst 00:11:22:33:00:34 - match dl_vlan 52 - cookie 0x0000000000000021, command ADD, priority 65535, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type OUTPUT, len 8, port 1 - version 1.0, type FLOW_MOD, length 80, xid 0x0000002a - match dl_dst 00:11:22:33:00:35 - match dl_vlan 53 - cookie 0x0000000000000022, command ADD, priority 65535, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type OUTPUT, len 8, port 1 - version 1.0, type FLOW_MOD, length 80, xid 0x0000002b - match dl_dst 00:11:22:33:00:36 - match dl_vlan 54 - cookie 0x0000000000000023, command ADD, priority 65535, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type OUTPUT, len 8, port 1 - version 1.0, type FLOW_MOD, length 80, xid 0x0000002c - match dl_dst 00:11:22:33:00:37 - match dl_vlan 55 - cookie 0x0000000000000024, command ADD, priority 65535, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type OUTPUT, len 8, port 1 - version 1.0, type FLOW_MOD, length 80, xid 0x0000002d - match dl_dst 00:11:22:33:00:38 - match dl_vlan 56 - cookie 0x0000000000000025, command ADD, priority 65535, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type OUTPUT, len 8, port 1 - version 1.0, type FLOW_MOD, length 80, xid 0x0000002e - match dl_dst 00:11:22:33:00:39 - match dl_vlan 57 - cookie 0x0000000000000026, command ADD, priority 65535, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type OUTPUT, len 8, port 1 - version 1.0, type FLOW_MOD, length 80, xid 0x0000002f - match dl_src 00:11:22:33:00:0a - match dl_dst 00:11:22:33:00:14 - cookie 0x0000000000000027, command ADD, priority 65535, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type OUTPUT, len 8, port 1 - version 1.0, type FLOW_MOD, length 80, xid 0x00000030 - match dl_src 00:11:22:33:00:0a - match dl_dst 00:11:22:33:00:15 - cookie 0x0000000000000028, command ADD, priority 65535, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type OUTPUT, len 8, port 1 - version 1.0, type FLOW_MOD, length 80, xid 0x00000031 - match dl_src 00:11:22:33:00:0a - match dl_dst 00:11:22:33:00:16 - cookie 0x0000000000000029, command ADD, priority 65535, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type OUTPUT, len 8, port 1 - version 1.0, type FLOW_MOD, length 80, xid 0x00000032 - match dl_src 00:11:22:33:00:0b - match dl_dst 00:11:22:33:00:14 - cookie 0x000000000000002a, command ADD, priority 65535, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type OUTPUT, len 8, port 1 - version 1.0, type FLOW_MOD, length 80, xid 0x00000033 - match dl_src 00:11:22:33:00:0b - match dl_dst 00:11:22:33:00:15 - cookie 0x000000000000002b, command ADD, priority 65535, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type OUTPUT, len 8, port 1 - version 1.0, type FLOW_MOD, length 80, xid 0x00000034 - match dl_src 00:11:22:33:00:0b - match dl_dst 00:11:22:33:00:16 - cookie 0x000000000000002c, command ADD, priority 65535, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type OUTPUT, len 8, port 1 - version 1.0, type FLOW_MOD, length 80, xid 0x00000035 - match dl_src 00:11:22:33:00:0c - match dl_dst 00:11:22:33:00:14 - cookie 0x000000000000002d, command ADD, priority 65535, buffer_id NONE, flags 0x0001 (SEND_FLOW_REM) - action type OUTPUT, len 8, port 1 - version 1.0, type FLOW_MOD, length 80, xid 0x00000036 - match dl_src 00:11:22:33:00:0c - match dl_dst 00:11:22:33:00:15 [|openflow] -IP (tos 0x0, ttl 64, id 53104, offset 0, flags [DF], proto TCP (6), length 180) - 10.0.0.20.6633 > 10.0.0.81.56068: Flags [P.], cksum 0x150b (incorrect -> 0x8ec7), seq 4241:4369, ack 677, win 139, options [nop,nop,TS val 47836527 ecr 1], length 128: OpenFlow - version unknown (0x00), type 0x00, length 0, xid 0x00000000 (invalid) -IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto TCP (6), length 52) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [.], cksum 0xfaa7 (correct), seq 677, ack 2873, win 952, options [nop,nop,TS val 1 ecr 47836527], length 0 -IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto TCP (6), length 52) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [.], cksum 0xf4fe (correct), seq 677, ack 4369, win 905, options [nop,nop,TS val 1 ecr 47836527], length 0 -IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto TCP (6), length 52) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [.], cksum 0xf4a7 (correct), seq 677, ack 4369, win 992, options [nop,nop,TS val 1 ecr 47836527], length 0 -IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto TCP (6), length 60) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0xf318 (correct), seq 677:685, ack 4369, win 1035, options [nop,nop,TS val 2 ecr 47836527], length 8: OpenFlow - version 1.0, type BARRIER_REPLY, length 8, xid 0x00000038 -IP (tos 0x0, ttl 64, id 53105, offset 0, flags [DF], proto TCP (6), length 228) - 10.0.0.20.6633 > 10.0.0.81.56068: Flags [P.], cksum 0x153b (incorrect -> 0x165f), seq 4369:4545, ack 685, win 139, options [nop,nop,TS val 47836757 ecr 2], length 176: OpenFlow - version 1.0, type STATS_REQUEST, length 56, xid 0x00000039 - type FLOW, flags 0x0000 - table_id ALL, out_port NONE - version 1.0, type STATS_REQUEST, length 56, xid 0x0000003a - type FLOW, flags 0x0000 - table_id 0, out_port NONE - version 1.0, type STATS_REQUEST, length 56, xid 0x0000003b - type FLOW, flags 0x0000 - match dl_src 00:00:00:00:77:77 - table_id 0, out_port CONTROLLER - version 1.0, type BARRIER_REQUEST, length 8, xid 0x0000003c -IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto TCP (6), length 52) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [.], cksum 0xf2dd (correct), seq 685, ack 4545, win 1035, options [nop,nop,TS val 2 ecr 47836757], length 0 -IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto TCP (6), length 64) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0xf170 (correct), seq 685:697, ack 4545, win 1035, options [nop,nop,TS val 2 ecr 47836757], length 12: OpenFlow - version 1.0, type STATS_REPLY, length 12, xid 0x0000003b - type FLOW, flags 0x0000 -IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto TCP (6), length 60) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0xf16a (correct), seq 697:705, ack 4545, win 1035, options [nop,nop,TS val 2 ecr 47836757], length 8: OpenFlow - version 1.0, type BARRIER_REPLY, length 8, xid 0x0000003c -IP (tos 0x0, ttl 64, id 53106, offset 0, flags [DF], proto TCP (6), length 52) - 10.0.0.20.6633 > 10.0.0.81.56068: Flags [.], cksum 0x148b (incorrect -> 0xf556), seq 4545, ack 705, win 139, options [nop,nop,TS val 47837000 ecr 2], length 0 -IP (tos 0x0, ttl 64, id 53575, offset 0, flags [DF], proto TCP (6), length 1216) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0x39b4 (correct), seq 705:1869, ack 4545, win 1035, options [nop,nop,TS val 2 ecr 47836757], length 1164: OpenFlow - version 1.0, type STATS_REPLY, length 1164, xid 0x00000039 - type FLOW, flags 0x0001 (MORE) - length 128, table_id 30 - match dl_dst 00:01:e8:8a:e0:e4 - match dl_type 0x0800 - match nw_dst 10.21.0.0/16 - duration_sec 0, duration_nsec 0, priority 65535, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000012, packet_count 0, byte_count 0 - action type SET_DL_SRC, len 16, dl_addr 00:01:e8:8a:e0:e4 - action type SET_DL_DST, len 16, dl_addr 11:00:00:00:00:00 - action type OUTPUT, len 8, port 2 - length 128, table_id 30 - match dl_dst 00:01:e8:8a:e0:e4 - match dl_type 0x0800 - match nw_dst 10.22.0.0/16 - duration_sec 0, duration_nsec 0, priority 65535, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000013, packet_count 0, byte_count 0 - action type SET_DL_SRC, len 16, dl_addr 00:01:e8:8a:e0:e4 - action type SET_DL_DST, len 16, dl_addr 11:00:00:00:00:00 - action type OUTPUT, len 8, port 2 - length 128, table_id 30 - match dl_dst 00:01:e8:8a:e0:e4 - match dl_type 0x0800 - match nw_dst 10.23.0.0/16 - duration_sec 0, duration_nsec 0, priority 65535, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000014, packet_count 0, byte_count 0 - action type SET_DL_SRC, len 16, dl_addr 00:01:e8:8a:e0:e4 - action type SET_DL_DST, len 16, dl_addr 11:00:00:00:00:00 - action type OUTPUT, len 8, port 2 - length 128, table_id 30 - match dl_dst 00:01:e8:8a:e0:e4 - match dl_type 0x0800 - match nw_dst 10.24.0.0/16 - duration_sec 0, duration_nsec 0, priority 65535, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000015, packet_count 0, byte_count 0 - action type SET_DL_SRC, len 16, dl_addr 00:01:e8:8a:e0:e4 - action type SET_DL_DST, len 16, dl_addr 11:00:00:00:00:00 - action type OUTPUT, len 8, port 2 - length 128, table_id 30 - match dl_dst 00:01:e8:8a:e0:e4 - match dl_type 0x0800 - match nw_dst 10.20.0.0/24 - duration_sec 0, duration_nsec 0, priority 65535, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000016, packet_count 0, byte_count 0 - action type SET_DL_SRC, len 16, dl_addr 00:01:e8:8a:e0:e4 - action type SET_DL_DST, len 16, dl_addr 11:00:00:00:00:00 - action type OUTPUT, len 8, port 2 - length 128, table_id 30 - match dl_dst 00:01:e8:8a:e0:e4 - match dl_type 0x0800 - match nw_dst 10.20.1.0/24 - duration_sec 0, duration_nsec 0, priority 65535, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000017, packet_count 0, byte_count 0 - action type SET_DL_SRC, len 16, dl_addr 00:01:e8:8a:e0:e4 - action type SET_DL_DST, len 16, dl_addr 11:00:00:00:00:00 - action type OUTPUT, len 8, port 2 - length 128, table_id 30 - match dl_dst 00:01:e8:8a:e0:e4 - match dl_type 0x0800 - match nw_dst 10.20.2.0/24 - duration_sec 0, duration_nsec 0, priority 65535, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000018, packet_count 0, byte_count 0 - action type SET_DL_SRC, len 16, dl_addr 00:01:e8:8a:e0:e4 - action type SET_DL_DST, len 16, dl_addr 11:00:00:00:00:00 - action type OUTPUT, len 8, port 2 - length 128, table_id 30 - match dl_dst 00:01:e8:8a:e0:e4 - match dl_type 0x0800 - match nw_dst 10.20.3.0/24 - duration_sec 0, duration_nsec 0, priority 65535, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000019, packet_count 0, byte_count 0 - action type SET_DL_SRC, len 16, dl_addr 00:01:e8:8a:e0:e4 - action type SET_DL_DST, len 16, dl_addr 11:00:00:00:00:00 - action type OUTPUT, len 8, port 2 - length 128, table_id 30 - match dl_dst 00:01:e8:8a:e0:e4 - match dl_type 0x0800 - match nw_dst 10.20.4.0/24 - duration_sec 0, duration_nsec 0, priority 65535, idle_timeout 0, hard_timeout 0, cookie 0x000000000000001a, packet_count 0, byte_count 0 - action type SET_DL_SRC, len 16, dl_addr 00:01:e8:8a:e0:e4 - action type SET_DL_DST, len 16, dl_addr 11:00:00:00:00:00 - action type OUTPUT, len 8, port 2 -IP (tos 0x0, ttl 64, id 53576, offset 0, flags [DF], proto TCP (6), length 1176) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0x6b64 (correct), seq 1869:2993, ack 4545, win 1035, options [nop,nop,TS val 2 ecr 47836757], length 1124: OpenFlow - version 1.0, type STATS_REPLY, length 1124, xid 0x00000039 - type FLOW, flags 0x0001 (MORE) - length 128, table_id 30 - match dl_dst 00:01:e8:8a:e0:e4 - match dl_type 0x0800 - match nw_dst 10.20.5.0/24 - duration_sec 0, duration_nsec 0, priority 65535, idle_timeout 0, hard_timeout 0, cookie 0x000000000000001b, packet_count 0, byte_count 0 - action type SET_DL_SRC, len 16, dl_addr 00:01:e8:8a:e0:e4 - action type SET_DL_DST, len 16, dl_addr 11:00:00:00:00:00 - action type OUTPUT, len 8, port 2 - length 128, table_id 30 - match dl_dst 00:01:e8:8a:e0:e4 - match dl_type 0x0800 - match nw_dst 10.20.6.0/24 - duration_sec 0, duration_nsec 0, priority 65535, idle_timeout 0, hard_timeout 0, cookie 0x000000000000001c, packet_count 0, byte_count 0 - action type SET_DL_SRC, len 16, dl_addr 00:01:e8:8a:e0:e4 - action type SET_DL_DST, len 16, dl_addr 11:00:00:00:00:00 - action type OUTPUT, len 8, port 2 - length 128, table_id 30 - match dl_dst 00:01:e8:8a:e0:e4 - match dl_type 0x0800 - match nw_dst 10.20.7.0/24 - duration_sec 0, duration_nsec 0, priority 65535, idle_timeout 0, hard_timeout 0, cookie 0x000000000000001d, packet_count 0, byte_count 0 - action type SET_DL_SRC, len 16, dl_addr 00:01:e8:8a:e0:e4 - action type SET_DL_DST, len 16, dl_addr 11:00:00:00:00:00 - action type OUTPUT, len 8, port 2 - length 128, table_id 30 - match dl_dst 00:01:e8:8a:e0:e4 - match dl_type 0x0800 - duration_sec 0, duration_nsec 0, priority 65535, idle_timeout 0, hard_timeout 0, cookie 0x000000000000001e, packet_count 0, byte_count 0 - action type SET_DL_SRC, len 16, dl_addr 00:01:e8:8a:e0:e4 - action type SET_DL_DST, len 16, dl_addr 11:00:00:00:00:00 - action type OUTPUT, len 8, port 2 - length 96, table_id 40 - match in_port 1 - duration_sec 0, duration_nsec 0, priority 35000, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000001, packet_count 0, byte_count 0 - action type OUTPUT, len 8, port CONTROLLER, max_len 65535 - length 96, table_id 40 - match in_port 1 - duration_sec 0, duration_nsec 0, priority 34999, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000002, packet_count 0, byte_count 0 - action type SET_VLAN_VID, len 8, vlan_vid 2 - length 96, table_id 40 - match in_port 1 - duration_sec 0, duration_nsec 0, priority 34998, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000003, packet_count 0, byte_count 0 - action type SET_VLAN_PCP, len 8, vlan_pcp 5 - length 104, table_id 40 - match in_port 1 - duration_sec 0, duration_nsec 0, priority 34997, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000004, packet_count 0, byte_count 0 - action type SET_VLAN_VID, len 8, vlan_vid 2 - action type SET_VLAN_PCP, len 8, vlan_pcp 5 - length 104, table_id 40 - match in_port 1 - duration_sec 0, duration_nsec 0, priority 34996, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000005, packet_count 0, byte_count 0 - action type SET_DL_SRC, len 16, dl_addr 11:22:33:44:55:66 - length 104, table_id 40 - match in_port 1 - duration_sec 0, duration_nsec 0, priority 34995, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000006, packet_count 0, byte_count 0 - action type SET_DL_DST, len 16, dl_addr 77:88:99:aa:bb:cc -IP (tos 0x0, ttl 64, id 53107, offset 0, flags [DF], proto TCP (6), length 52) - 10.0.0.20.6633 > 10.0.0.81.56068: Flags [.], cksum 0x148b (incorrect -> 0xec39), seq 4545, ack 2993, win 184, options [nop,nop,TS val 47837000 ecr 2], length 0 -IP (tos 0x0, ttl 64, id 53108, offset 0, flags [DF], proto TCP (6), length 148) - 10.0.0.20.6633 > 10.0.0.81.56068: Flags [P.], cksum 0x14eb (incorrect -> 0xc5f7), seq 4545:4641, ack 2993, win 184, options [nop,nop,TS val 47837000 ecr 2], length 96: OpenFlow - version 1.0, type STATS_REQUEST, length 12, xid 0x0000003d - type DESC, flags 0x0000 - version 1.0, type STATS_REQUEST, length 56, xid 0x0000003e - type AGGREGATE, flags 0x0000 - table_id ALL, out_port NONE - version 1.0, type STATS_REQUEST, length 20, xid 0x0000003f - type PORT, flags 0x0000 - port_no NONE - version 1.0, type BARRIER_REQUEST, length 8, xid 0x00000040 -IP (tos 0x0, ttl 64, id 53577, offset 0, flags [DF], proto TCP (6), length 1048) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0x29df (correct), seq 2993:3989, ack 4545, win 1035, options [nop,nop,TS val 2 ecr 47836757], length 996: OpenFlow - version 1.0, type STATS_REPLY, length 996, xid 0x00000039 - type FLOW, flags 0x0001 (MORE) - length 120, table_id 40 - match in_port 1 - duration_sec 0, duration_nsec 0, priority 34994, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000007, packet_count 0, byte_count 0 - action type SET_DL_SRC, len 16, dl_addr 11:22:33:44:55:66 - action type SET_DL_DST, len 16, dl_addr 77:88:99:aa:bb:cc - length 96, table_id 40 - match in_port 1 - match dl_src 00:00:00:00:00:01 - duration_sec 0, duration_nsec 0, priority 34000, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000008, packet_count 0, byte_count 0 - action type OUTPUT, len 8, port 2 - length 96, table_id 40 - match in_port 1 - duration_sec 0, duration_nsec 0, priority 33000, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000009, packet_count 0, byte_count 0 - action type SET_NW_TOS, len 8, nw_tos 0x28 - length 96, table_id 40 - match dl_vlan 100 - match dl_vlan_pcp 4 - match dl_type 0x0800 - duration_sec 0, duration_nsec 0, priority 32000, idle_timeout 0, hard_timeout 0, cookie 0x000000000000000a, packet_count 0, byte_count 0 - action type OUTPUT, len 8, port 2 - length 96, table_id 40 - match dl_type 0x0800 - match nw_src 10.11.12.0/24 - match nw_dst 10.13.14.0/24 - duration_sec 0, duration_nsec 0, priority 31999, idle_timeout 0, hard_timeout 0, cookie 0x000000000000000b, packet_count 0, byte_count 0 - action type OUTPUT, len 8, port 2 - length 96, table_id 40 - match dl_type 0x0800 - match nw_proto 17 - match tp_src 68 - match tp_dst 67 - duration_sec 0, duration_nsec 0, priority 31998, idle_timeout 0, hard_timeout 0, cookie 0x000000000000000c, packet_count 0, byte_count 0 - action type OUTPUT, len 8, port 2 - length 96, table_id 40 - match dl_type 0x0800 - match nw_proto 1 - match icmp_type 8 - duration_sec 0, duration_nsec 0, priority 31997, idle_timeout 0, hard_timeout 0, cookie 0x000000000000000d, packet_count 0, byte_count 0 - action type OUTPUT, len 8, port 2 - length 96, table_id 40 - match dl_type 0x0800 - match nw_proto 1 - match icmp_type 3 - match icmp_code 13 - duration_sec 0, duration_nsec 0, priority 31996, idle_timeout 0, hard_timeout 0, cookie 0x000000000000000e, packet_count 0, byte_count 0 - action type OUTPUT, len 8, port 2 - length 96, table_id 40 - match dl_src aa:00:00:00:00:11 - match dl_dst bb:00:00:00:00:22 - duration_sec 0, duration_nsec 0, priority 31995, idle_timeout 0, hard_timeout 0, cookie 0x000000000000000f, packet_count 0, byte_count 0 - action type OUTPUT, len 8, port 2 - length 96, table_id 40 - match dl_type 0x0800 - match nw_tos 0x24 - duration_sec 0, duration_nsec 0, priority 31994, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000010, packet_count 0, byte_count 0 - action type OUTPUT, len 8, port 2 -IP (tos 0x0, ttl 64, id 53578, offset 0, flags [DF], proto TCP (6), length 1024) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0x45c0 (correct), seq 3989:4961, ack 4545, win 1035, options [nop,nop,TS val 2 ecr 47836757], length 972: OpenFlow - version 1.0, type STATS_REPLY, length 972, xid 0x00000039 - type FLOW, flags 0x0001 (MORE) - length 96, table_id 40 - match dl_type 0x0800 - match nw_proto 6 - match tp_src 80 - match tp_dst 80 - duration_sec 0, duration_nsec 0, priority 31993, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000011, packet_count 0, byte_count 0 - action type OUTPUT, len 8, port 2 - length 96, table_id 40 - match dl_dst 00:11:22:33:00:32 - match dl_vlan 50 - duration_sec 0, duration_nsec 0, priority 65535, idle_timeout 0, hard_timeout 0, cookie 0x000000000000001f, packet_count 0, byte_count 0 - action type OUTPUT, len 8, port 1 - length 96, table_id 40 - match dl_dst 00:11:22:33:00:33 - match dl_vlan 51 - duration_sec 0, duration_nsec 0, priority 65535, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000020, packet_count 0, byte_count 0 - action type OUTPUT, len 8, port 1 - length 96, table_id 40 - match dl_dst 00:11:22:33:00:34 - match dl_vlan 52 - duration_sec 0, duration_nsec 0, priority 65535, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000021, packet_count 0, byte_count 0 - action type OUTPUT, len 8, port 1 - length 96, table_id 40 - match dl_dst 00:11:22:33:00:35 - match dl_vlan 53 - duration_sec 0, duration_nsec 0, priority 65535, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000022, packet_count 0, byte_count 0 - action type OUTPUT, len 8, port 1 - length 96, table_id 40 - match dl_dst 00:11:22:33:00:36 - match dl_vlan 54 - duration_sec 0, duration_nsec 0, priority 65535, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000023, packet_count 0, byte_count 0 - action type OUTPUT, len 8, port 1 - length 96, table_id 40 - match dl_dst 00:11:22:33:00:37 - match dl_vlan 55 - duration_sec 0, duration_nsec 0, priority 65535, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000024, packet_count 0, byte_count 0 - action type OUTPUT, len 8, port 1 - length 96, table_id 40 - match dl_dst 00:11:22:33:00:38 - match dl_vlan 56 - duration_sec 0, duration_nsec 0, priority 65535, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000025, packet_count 0, byte_count 0 - action type OUTPUT, len 8, port 1 - length 96, table_id 40 - match dl_dst 00:11:22:33:00:39 - match dl_vlan 57 - duration_sec 0, duration_nsec 0, priority 65535, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000026, packet_count 0, byte_count 0 - action type OUTPUT, len 8, port 1 - length 96, table_id 40 - match dl_src 00:11:22:33:00:0a - match dl_dst 00:11:22:33:00:14 - duration_sec 0, duration_nsec 0, priority 65535, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000027, packet_count 0, byte_count 0 - action type OUTPUT, len 8, port 1 -IP (tos 0x0, ttl 64, id 53109, offset 0, flags [DF], proto TCP (6), length 52) - 10.0.0.20.6633 > 10.0.0.81.56068: Flags [.], cksum 0x148b (incorrect -> 0xe405), seq 4641, ack 4961, win 220, options [nop,nop,TS val 47837000 ecr 2], length 0 -IP (tos 0x0, ttl 64, id 53579, offset 0, flags [DF], proto TCP (6), length 832) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0x6f3d (correct), seq 4961:5741, ack 4545, win 1035, options [nop,nop,TS val 2 ecr 47836757], length 780: OpenFlow - version 1.0, type STATS_REPLY, length 780, xid 0x00000039 - type FLOW, flags 0x0000 - length 96, table_id 40 - match dl_src 00:11:22:33:00:0a - match dl_dst 00:11:22:33:00:15 - duration_sec 0, duration_nsec 0, priority 65535, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000028, packet_count 0, byte_count 0 - action type OUTPUT, len 8, port 1 - length 96, table_id 40 - match dl_src 00:11:22:33:00:0a - match dl_dst 00:11:22:33:00:16 - duration_sec 0, duration_nsec 0, priority 65535, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000029, packet_count 0, byte_count 0 - action type OUTPUT, len 8, port 1 - length 96, table_id 40 - match dl_src 00:11:22:33:00:0b - match dl_dst 00:11:22:33:00:14 - duration_sec 0, duration_nsec 0, priority 65535, idle_timeout 0, hard_timeout 0, cookie 0x000000000000002a, packet_count 0, byte_count 0 - action type OUTPUT, len 8, port 1 - length 96, table_id 40 - match dl_src 00:11:22:33:00:0b - match dl_dst 00:11:22:33:00:15 - duration_sec 0, duration_nsec 0, priority 65535, idle_timeout 0, hard_timeout 0, cookie 0x000000000000002b, packet_count 0, byte_count 0 - action type OUTPUT, len 8, port 1 - length 96, table_id 40 - match dl_src 00:11:22:33:00:0b - match dl_dst 00:11:22:33:00:16 - duration_sec 0, duration_nsec 0, priority 65535, idle_timeout 0, hard_timeout 0, cookie 0x000000000000002c, packet_count 0, byte_count 0 - action type OUTPUT, len 8, port 1 - length 96, table_id 40 - match dl_src 00:11:22:33:00:0c - match dl_dst 00:11:22:33:00:14 - duration_sec 0, duration_nsec 0, priority 65535, idle_timeout 0, hard_timeout 0, cookie 0x000000000000002d, packet_count 0, byte_count 0 - action type OUTPUT, len 8, port 1 - length 96, table_id 40 - match dl_src 00:11:22:33:00:0c - match dl_dst 00:11:22:33:00:15 - duration_sec 0, duration_nsec 0, priority 65535, idle_timeout 0, hard_timeout 0, cookie 0x000000000000002e, packet_count 0, byte_count 0 - action type OUTPUT, len 8, port 1 - length 96, table_id 40 - match dl_src 00:11:22:33:00:0c - match dl_dst 00:11:22:33:00:16 - duration_sec 0, duration_nsec 0, priority 65535, idle_timeout 0, hard_timeout 0, cookie 0x000000000000002f, packet_count 0, byte_count 0 - action type OUTPUT, len 8, port 1 -IP (tos 0x0, ttl 64, id 53580, offset 0, flags [DF], proto TCP (6), length 976) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0x0dbb (correct), seq 5741:6665, ack 4545, win 1035, options [nop,nop,TS val 2 ecr 47836757], length 924: OpenFlow - version 1.0, type STATS_REPLY, length 924, xid 0x0000003a - type FLOW, flags 0x0001 (MORE) - length 96, table_id 0 - match in_port 1 - duration_sec 0, duration_nsec 0, priority 35000, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000001, packet_count 0, byte_count 0 - action type OUTPUT, len 8, port CONTROLLER, max_len 65535 - length 96, table_id 0 - match in_port 1 - duration_sec 0, duration_nsec 0, priority 34999, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000002, packet_count 0, byte_count 0 - action type SET_VLAN_VID, len 8, vlan_vid 2 - length 96, table_id 0 - match in_port 1 - duration_sec 0, duration_nsec 0, priority 34998, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000003, packet_count 0, byte_count 0 - action type SET_VLAN_PCP, len 8, vlan_pcp 5 - length 104, table_id 0 - match in_port 1 - duration_sec 0, duration_nsec 0, priority 34997, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000004, packet_count 0, byte_count 0 - action type SET_VLAN_VID, len 8, vlan_vid 2 - action type SET_VLAN_PCP, len 8, vlan_pcp 5 - length 104, table_id 0 - match in_port 1 - duration_sec 0, duration_nsec 0, priority 34996, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000005, packet_count 0, byte_count 0 - action type SET_DL_SRC, len 16, dl_addr 11:22:33:44:55:66 - length 104, table_id 0 - match in_port 1 - duration_sec 0, duration_nsec 0, priority 34995, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000006, packet_count 0, byte_count 0 - action type SET_DL_DST, len 16, dl_addr 77:88:99:aa:bb:cc - length 120, table_id 0 - match in_port 1 - duration_sec 0, duration_nsec 0, priority 34994, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000007, packet_count 0, byte_count 0 - action type SET_DL_SRC, len 16, dl_addr 11:22:33:44:55:66 - action type SET_DL_DST, len 16, dl_addr 77:88:99:aa:bb:cc - length 96, table_id 0 - match in_port 1 - match dl_src 00:00:00:00:00:01 - duration_sec 0, duration_nsec 0, priority 34000, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000008, packet_count 0, byte_count 0 - action type OUTPUT, len 8, port 2 - length 96, table_id 0 - match in_port 1 - duration_sec 0, duration_nsec 0, priority 33000, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000009, packet_count 0, byte_count 0 - action type SET_NW_TOS, len 8, nw_tos 0x28 -IP (tos 0x0, ttl 64, id 53110, offset 0, flags [DF], proto TCP (6), length 52) - 10.0.0.20.6633 > 10.0.0.81.56068: Flags [.], cksum 0x148b (incorrect -> 0xdd38), seq 4641, ack 6665, win 257, options [nop,nop,TS val 47837000 ecr 2], length 0 -IP (tos 0x0, ttl 64, id 53581, offset 0, flags [DF], proto TCP (6), length 1500) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [.], cksum 0x2501 (correct), seq 6665:8113, ack 4545, win 1035, options [nop,nop,TS val 2 ecr 47837000], length 1448: OpenFlow - version 1.0, type STATS_REPLY, length 972, xid 0x0000003a - type FLOW, flags 0x0001 (MORE) - length 96, table_id 0 - match dl_vlan 100 - match dl_vlan_pcp 4 - match dl_type 0x0800 - duration_sec 0, duration_nsec 0, priority 32000, idle_timeout 0, hard_timeout 0, cookie 0x000000000000000a, packet_count 0, byte_count 0 - action type OUTPUT, len 8, port 2 - length 96, table_id 0 - match dl_type 0x0800 - match nw_src 10.11.12.0/24 - match nw_dst 10.13.14.0/24 - duration_sec 0, duration_nsec 0, priority 31999, idle_timeout 0, hard_timeout 0, cookie 0x000000000000000b, packet_count 0, byte_count 0 - action type OUTPUT, len 8, port 2 - length 96, table_id 0 - match dl_type 0x0800 - match nw_proto 17 - match tp_src 68 - match tp_dst 67 - duration_sec 0, duration_nsec 0, priority 31998, idle_timeout 0, hard_timeout 0, cookie 0x000000000000000c, packet_count 0, byte_count 0 - action type OUTPUT, len 8, port 2 - length 96, table_id 0 - match dl_type 0x0800 - match nw_proto 1 - match icmp_type 8 - duration_sec 0, duration_nsec 0, priority 31997, idle_timeout 0, hard_timeout 0, cookie 0x000000000000000d, packet_count 0, byte_count 0 - action type OUTPUT, len 8, port 2 - length 96, table_id 0 - match dl_type 0x0800 - match nw_proto 1 - match icmp_type 3 - match icmp_code 13 - duration_sec 0, duration_nsec 0, priority 31996, idle_timeout 0, hard_timeout 0, cookie 0x000000000000000e, packet_count 0, byte_count 0 - action type OUTPUT, len 8, port 2 - length 96, table_id 0 - match dl_src aa:00:00:00:00:11 - match dl_dst bb:00:00:00:00:22 - duration_sec 0, duration_nsec 0, priority 31995, idle_timeout 0, hard_timeout 0, cookie 0x000000000000000f, packet_count 0, byte_count 0 - action type OUTPUT, len 8, port 2 - length 96, table_id 0 - match dl_type 0x0800 - match nw_tos 0x24 - duration_sec 0, duration_nsec 0, priority 31994, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000010, packet_count 0, byte_count 0 - action type OUTPUT, len 8, port 2 - length 96, table_id 0 - match dl_type 0x0800 - match nw_proto 6 - match tp_src 80 - match tp_dst 80 - duration_sec 0, duration_nsec 0, priority 31993, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000011, packet_count 0, byte_count 0 - action type OUTPUT, len 8, port 2 - length 96, table_id 0 - match dl_dst 00:11:22:33:00:32 - match dl_vlan 50 - duration_sec 0, duration_nsec 0, priority 65535, idle_timeout 0, hard_timeout 0, cookie 0x000000000000001f, packet_count 0, byte_count 0 - action type OUTPUT, len 8, port 1 - length 96, table_id 0 - match dl_dst 00:11:22:33:00:33 - match dl_vlan 51 - duration_sec 0, duration_nsec 0, priority 65535, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000020, packet_count 0, byte_count 0 - action type OUTPUT, len 8, port 1 - version 1.0, type STATS_REPLY, length 972, xid 0x0000003a - type FLOW, flags 0x0001 (MORE) - length 96, table_id 0 - match dl_dst 00:11:22:33:00:34 - match dl_vlan 52 - duration_sec 0, duration_nsec 0, priority 65535, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000021, packet_count 0, byte_count 0 - action type OUTPUT, len 8, port 1 - length 96, table_id 0 - match dl_dst 00:11:22:33:00:35 - match dl_vlan 53 - duration_sec 0, duration_nsec 0, priority 65535, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000022, packet_count 0, byte_count 0 - action type OUTPUT, len 8, port 1 - length 96, table_id 0 - match dl_dst 00:11:22:33:00:36 - match dl_vlan 54 - duration_sec 0, duration_nsec 0, priority 65535, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000023, packet_count 0, byte_count 0 - action type OUTPUT, len 8, port 1 - length 96, table_id 0 - match dl_dst 00:11:22:33:00:37 - match dl_vlan 55 - duration_sec 0, duration_nsec 0, priority 65535, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000024, packet_count 0, byte_count 0 - action type OUTPUT, len 8, port 1 - length 96, table_id 0 - match dl_dst 00:11:22:33:00:38 - match dl_vlan 56 - duration_sec 0, duration_nsec 0, priority 65535, idle_timeout 0, hard_timeout 0, cookie 0x0000000000000025, packet_count 0 [|openflow] -IP (tos 0x0, ttl 64, id 53582, offset 0, flags [DF], proto TCP (6), length 1040) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0x395e (correct), seq 8113:9101, ack 4545, win 1035, options [nop,nop,TS val 2 ecr 47837000], length 988: OpenFlow - version unknown (0x00), type 0x00, length 0, xid 0x00000000 (invalid) -IP (tos 0x0, ttl 64, id 53111, offset 0, flags [DF], proto TCP (6), length 52) - 10.0.0.20.6633 > 10.0.0.81.56068: Flags [.], cksum 0x148b (incorrect -> 0xd387), seq 4641, ack 9101, win 302, options [nop,nop,TS val 47837000 ecr 2], length 0 -IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto TCP (6), length 52) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [.], cksum 0xd0aa (correct), seq 9101, ack 4641, win 1035, options [nop,nop,TS val 2 ecr 47837000], length 0 -IP (tos 0x0, ttl 64, id 53602, offset 0, flags [DF], proto TCP (6), length 1120) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0x141f (correct), seq 9101:10169, ack 4641, win 1035, options [nop,nop,TS val 3 ecr 47837000], length 1068: OpenFlow - version 1.0, type STATS_REPLY, length 1068, xid 0x0000003d - type DESC, flags 0x0000 - mfr_desc 'Dell Force 10' - hw_desc 'OpenFlow switch HW ver. 1.0' - sw_desc 'OpenFlow switch SW ver. 1.0' - serial_num '02132012' - dp_desc 'Dell-Switch: 00:01:e8:8a:e0:e2; instance: 1' -IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto TCP (6), length 60) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0xcb12 (correct), seq 10169:10177, ack 4641, win 1035, options [nop,nop,TS val 3 ecr 47837000], length 8: OpenFlow - version 1.0, type BARRIER_REPLY, length 8, xid 0x00000040 -IP (tos 0x0, ttl 64, id 53603, offset 0, flags [DF], proto TCP (6), length 88) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0xcaa5 (correct), seq 10177:10213, ack 4641, win 1035, options [nop,nop,TS val 3 ecr 47837000], length 36: OpenFlow - version 1.0, type STATS_REPLY, length 36, xid 0x0000003e - type AGGREGATE, flags 0x0000 - packet_count 0, byte_count 0, flow_count 47 -IP (tos 0x0, ttl 64, id 53604, offset 0, flags [DF], proto TCP (6), length 189) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0x03e7 (correct), seq 10213:10350, ack 4641, win 1035, options [nop,nop,TS val 3 ecr 47837000], length 137: OpenFlow - version 1.0, type PACKET_IN, length 137, xid 0x00000000 - buffer_id NONE, total_len 119, in_port 1, reason ACTION - data (119 octets), frame decoding below -STP 802.1s, Rapid STP, CIST Flags [Proposal, Learn, Forward, Agreement], length 102 - port-role Designated, CIST root-id 8000.08:9e:01:62:d5:f4, CIST ext-pathcost 0 - CIST regional-root-id 8000.08:9e:01:62:d5:f4, CIST port-id 8034, - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - v3len 64, MCID Name pica8, rev 0, - digest ac36177f50283cd4b83821d8ab26de62, CIST int-root-pathcost 0, - CIST bridge-id 8000.08:9e:01:62:d5:f4, CIST remaining-hops 20 -IP (tos 0x0, ttl 64, id 53605, offset 0, flags [DF], proto TCP (6), length 168) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0x4a03 (correct), seq 10350:10466, ack 4641, win 1035, options [nop,nop,TS val 3 ecr 47837000], length 116: OpenFlow - version 1.0, type STATS_REPLY, length 116, xid 0x0000003f - type PORT, flags 0x0001 (MORE) - port_no 1, rx_packets 129437, tx_packets 8061, rx_bytes 16090662, tx_bytes 515904, rx_dropped 0, tx_dropped 0, rx_errors 18446744073709551615, tx_errors 18446744073709551615, rx_frame_err 18446744073709551615, rx_over_err 18446744073709551615, rx_crc_err 0, collisions 0 -IP (tos 0x0, ttl 64, id 53606, offset 0, flags [DF], proto TCP (6), length 168) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0xc90e (correct), seq 10466:10582, ack 4641, win 1035, options [nop,nop,TS val 3 ecr 47837000], length 116: OpenFlow - version 1.0, type STATS_REPLY, length 116, xid 0x0000003f - type PORT, flags 0x0000 - port_no 2, rx_packets 0, tx_packets 0, rx_bytes 0, tx_bytes 0, rx_dropped 0, tx_dropped 0, rx_errors 18446744073709551615, tx_errors 18446744073709551615, rx_frame_err 18446744073709551615, rx_over_err 18446744073709551615, rx_crc_err 0, collisions 0 -IP (tos 0x0, ttl 64, id 53112, offset 0, flags [DF], proto TCP (6), length 52) - 10.0.0.20.6633 > 10.0.0.81.56068: Flags [.], cksum 0x148b (incorrect -> 0xcccd), seq 4641, ack 10582, win 331, options [nop,nop,TS val 47837211 ecr 3], length 0 -IP (tos 0x0, ttl 64, id 53113, offset 0, flags [DF], proto TCP (6), length 132) - 10.0.0.20.6633 > 10.0.0.81.56068: Flags [P.], cksum 0x14db (incorrect -> 0xc93e), seq 4641:4721, ack 10582, win 331, options [nop,nop,TS val 47837212 ecr 3], length 80: OpenFlow - version 1.0, type FLOW_MOD, length 72, xid 0x00000041 - cookie 0x0000000000000000, command DELETE, priority 65535, out_port NONE, flags 0x0001 (SEND_FLOW_REM) - version 1.0, type BARRIER_REQUEST, length 8, xid 0x00000042 -IP (tos 0x0, ttl 64, id 53707, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0xc92c (correct), seq 10582:10670, ack 4721, win 1035, options [nop,nop,TS val 3 ecr 47837212], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x0000001a - match dl_dst 00:01:e8:8a:e0:e4 - match dl_type 0x0800 - match nw_dst 10.21.0.0/16 - cookie 0x0000000000000012, priority 65535, reason DELETE, duration_sec 0, duration_nsec 0, packet_count 0, byte_count 0 -IP (tos 0x0, ttl 64, id 53708, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0xc8d1 (correct), seq 10670:10758, ack 4721, win 1035, options [nop,nop,TS val 3 ecr 47837212], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x0000001b - match dl_dst 00:01:e8:8a:e0:e4 - match dl_type 0x0800 - match nw_dst 10.22.0.0/16 - cookie 0x0000000000000013, priority 65535, reason DELETE, duration_sec 0, duration_nsec 0, packet_count 0, byte_count 0 -IP (tos 0x0, ttl 64, id 53709, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0xc876 (correct), seq 10758:10846, ack 4721, win 1035, options [nop,nop,TS val 3 ecr 47837212], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x0000001c - match dl_dst 00:01:e8:8a:e0:e4 - match dl_type 0x0800 - match nw_dst 10.23.0.0/16 - cookie 0x0000000000000014, priority 65535, reason DELETE, duration_sec 0, duration_nsec 0, packet_count 0, byte_count 0 -IP (tos 0x0, ttl 64, id 53710, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0xc81b (correct), seq 10846:10934, ack 4721, win 1035, options [nop,nop,TS val 3 ecr 47837212], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x0000001d - match dl_dst 00:01:e8:8a:e0:e4 - match dl_type 0x0800 - match nw_dst 10.24.0.0/16 - cookie 0x0000000000000015, priority 65535, reason DELETE, duration_sec 0, duration_nsec 0, packet_count 0, byte_count 0 -IP (tos 0x0, ttl 64, id 53711, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0xc7c7 (correct), seq 10934:11022, ack 4721, win 1035, options [nop,nop,TS val 3 ecr 47837212], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x0000001e - match dl_dst 00:01:e8:8a:e0:e4 - match dl_type 0x0800 - match nw_dst 10.20.0.0/24 - cookie 0x0000000000000016, priority 65535, reason DELETE, duration_sec 0, duration_nsec 0, packet_count 0, byte_count 0 -IP (tos 0x0, ttl 64, id 53712, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0xc66d (correct), seq 11022:11110, ack 4721, win 1035, options [nop,nop,TS val 3 ecr 47837212], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x0000001f - match dl_dst 00:01:e8:8a:e0:e4 - match dl_type 0x0800 - match nw_dst 10.20.1.0/24 - cookie 0x0000000000000017, priority 65535, reason DELETE, duration_sec 0, duration_nsec 0, packet_count 0, byte_count 0 -IP (tos 0x0, ttl 64, id 53713, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0xc513 (correct), seq 11110:11198, ack 4721, win 1035, options [nop,nop,TS val 3 ecr 47837212], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x00000020 - match dl_dst 00:01:e8:8a:e0:e4 - match dl_type 0x0800 - match nw_dst 10.20.2.0/24 - cookie 0x0000000000000018, priority 65535, reason DELETE, duration_sec 0, duration_nsec 0, packet_count 0, byte_count 0 -IP (tos 0x0, ttl 64, id 53714, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0xc3b9 (correct), seq 11198:11286, ack 4721, win 1035, options [nop,nop,TS val 3 ecr 47837212], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x00000021 - match dl_dst 00:01:e8:8a:e0:e4 - match dl_type 0x0800 - match nw_dst 10.20.3.0/24 - cookie 0x0000000000000019, priority 65535, reason DELETE, duration_sec 0, duration_nsec 0, packet_count 0, byte_count 0 -IP (tos 0x0, ttl 64, id 53114, offset 0, flags [DF], proto TCP (6), length 52) - 10.0.0.20.6633 > 10.0.0.81.56068: Flags [.], cksum 0x148b (incorrect -> 0xc900), seq 4721, ack 11286, win 331, options [nop,nop,TS val 47837400 ecr 3], length 0 -IP (tos 0x0, ttl 64, id 53715, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0xc25f (correct), seq 11286:11374, ack 4721, win 1035, options [nop,nop,TS val 3 ecr 47837212], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x00000022 - match dl_dst 00:01:e8:8a:e0:e4 - match dl_type 0x0800 - match nw_dst 10.20.4.0/24 - cookie 0x000000000000001a, priority 65535, reason DELETE, duration_sec 0, duration_nsec 0, packet_count 0, byte_count 0 -IP (tos 0x0, ttl 64, id 53716, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0xc105 (correct), seq 11374:11462, ack 4721, win 1035, options [nop,nop,TS val 3 ecr 47837212], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x00000023 - match dl_dst 00:01:e8:8a:e0:e4 - match dl_type 0x0800 - match nw_dst 10.20.5.0/24 - cookie 0x000000000000001b, priority 65535, reason DELETE, duration_sec 0, duration_nsec 0, packet_count 0, byte_count 0 -IP (tos 0x0, ttl 64, id 53717, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0xbfab (correct), seq 11462:11550, ack 4721, win 1035, options [nop,nop,TS val 3 ecr 47837212], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x00000024 - match dl_dst 00:01:e8:8a:e0:e4 - match dl_type 0x0800 - match nw_dst 10.20.6.0/24 - cookie 0x000000000000001c, priority 65535, reason DELETE, duration_sec 0, duration_nsec 0, packet_count 0, byte_count 0 -IP (tos 0x0, ttl 64, id 53718, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0xbe51 (correct), seq 11550:11638, ack 4721, win 1035, options [nop,nop,TS val 3 ecr 47837212], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x00000025 - match dl_dst 00:01:e8:8a:e0:e4 - match dl_type 0x0800 - match nw_dst 10.20.7.0/24 - cookie 0x000000000000001d, priority 65535, reason DELETE, duration_sec 0, duration_nsec 0, packet_count 0, byte_count 0 -IP (tos 0x0, ttl 64, id 53719, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0xcf05 (correct), seq 11638:11726, ack 4721, win 1035, options [nop,nop,TS val 3 ecr 47837212], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x00000026 - match dl_dst 00:01:e8:8a:e0:e4 - match dl_type 0x0800 - cookie 0x000000000000001e, priority 65535, reason DELETE, duration_sec 0, duration_nsec 0, packet_count 0, byte_count 0 -IP (tos 0x0, ttl 64, id 53720, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0x37c4 (correct), seq 11726:11814, ack 4721, win 1035, options [nop,nop,TS val 3 ecr 47837400], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x00000009 - match in_port 1 - cookie 0x0000000000000001, priority 35000, reason DELETE, duration_sec 0, duration_nsec 0, packet_count 0, byte_count 0 -IP (tos 0x0, ttl 64, id 53721, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0x376b (correct), seq 11814:11902, ack 4721, win 1035, options [nop,nop,TS val 3 ecr 47837400], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x0000000a - match in_port 1 - cookie 0x0000000000000002, priority 34999, reason DELETE, duration_sec 0, duration_nsec 0, packet_count 0, byte_count 0 -IP (tos 0x0, ttl 64, id 53115, offset 0, flags [DF], proto TCP (6), length 52) - 10.0.0.20.6633 > 10.0.0.81.56068: Flags [.], cksum 0x148b (incorrect -> 0xc697), seq 4721, ack 11902, win 331, options [nop,nop,TS val 47837401 ecr 3], length 0 -IP (tos 0x0, ttl 64, id 53722, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0x3712 (correct), seq 11902:11990, ack 4721, win 1035, options [nop,nop,TS val 3 ecr 47837400], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x0000000b - match in_port 1 - cookie 0x0000000000000003, priority 34998, reason DELETE, duration_sec 0, duration_nsec 0, packet_count 0, byte_count 0 -IP (tos 0x0, ttl 64, id 53723, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0x36b9 (correct), seq 11990:12078, ack 4721, win 1035, options [nop,nop,TS val 3 ecr 47837400], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x0000000c - match in_port 1 - cookie 0x0000000000000004, priority 34997, reason DELETE, duration_sec 0, duration_nsec 0, packet_count 0, byte_count 0 -IP (tos 0x0, ttl 64, id 53724, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0x3660 (correct), seq 12078:12166, ack 4721, win 1035, options [nop,nop,TS val 3 ecr 47837400], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x0000000d - match in_port 1 - cookie 0x0000000000000005, priority 34996, reason DELETE, duration_sec 0, duration_nsec 0, packet_count 0, byte_count 0 -IP (tos 0x0, ttl 64, id 53725, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0x3607 (correct), seq 12166:12254, ack 4721, win 1035, options [nop,nop,TS val 3 ecr 47837400], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x0000000e - match in_port 1 - cookie 0x0000000000000006, priority 34995, reason DELETE, duration_sec 0, duration_nsec 0, packet_count 0, byte_count 0 -IP (tos 0x0, ttl 64, id 53726, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0x35ae (correct), seq 12254:12342, ack 4721, win 1035, options [nop,nop,TS val 3 ecr 47837400], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x0000000f - match in_port 1 - cookie 0x0000000000000007, priority 34994, reason DELETE, duration_sec 0, duration_nsec 0, packet_count 0, byte_count 0 -IP (tos 0x0, ttl 64, id 53727, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0x3938 (correct), seq 12342:12430, ack 4721, win 1035, options [nop,nop,TS val 3 ecr 47837401], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x00000010 - match in_port 1 - match dl_src 00:00:00:00:00:01 - cookie 0x0000000000000008, priority 34000, reason DELETE, duration_sec 0, duration_nsec 0, packet_count 0, byte_count 0 -IP (tos 0x0, ttl 64, id 53728, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0x3cc3 (correct), seq 12430:12518, ack 4721, win 1035, options [nop,nop,TS val 3 ecr 47837401], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x00000011 - match in_port 1 - cookie 0x0000000000000009, priority 33000, reason DELETE, duration_sec 0, duration_nsec 0, packet_count 0, byte_count 0 -IP (tos 0x0, ttl 64, id 53116, offset 0, flags [DF], proto TCP (6), length 52) - 10.0.0.20.6633 > 10.0.0.81.56068: Flags [.], cksum 0x148b (incorrect -> 0xc42f), seq 4721, ack 12518, win 331, options [nop,nop,TS val 47837401 ecr 3], length 0 -IP (tos 0x0, ttl 64, id 53729, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0x1317 (correct), seq 12518:12606, ack 4721, win 1035, options [nop,nop,TS val 3 ecr 47837401], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x00000012 - match dl_vlan 100 - match dl_vlan_pcp 4 - match dl_type 0x0800 - cookie 0x000000000000000a, priority 32000, reason DELETE, duration_sec 0, duration_nsec 0, packet_count 0, byte_count 0 -IP (tos 0x0, ttl 64, id 53730, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0x00fe (correct), seq 12606:12694, ack 4721, win 1035, options [nop,nop,TS val 3 ecr 47837401], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x00000013 - match dl_type 0x0800 - match nw_src 10.11.12.0/24 - match nw_dst 10.13.14.0/24 - cookie 0x000000000000000b, priority 31999, reason DELETE, duration_sec 0, duration_nsec 0, packet_count 0, byte_count 0 -IP (tos 0x0, ttl 64, id 53731, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0x16ff (correct), seq 12694:12782, ack 4721, win 1035, options [nop,nop,TS val 3 ecr 47837401], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x00000014 - match dl_type 0x0800 - match nw_proto 17 - match tp_src 68 - match tp_dst 67 - cookie 0x000000000000000c, priority 31998, reason DELETE, duration_sec 0, duration_nsec 0, packet_count 0, byte_count 0 -IP (tos 0x0, ttl 64, id 53732, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0x16b5 (correct), seq 12782:12870, ack 4721, win 1035, options [nop,nop,TS val 3 ecr 47837401], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x00000015 - match dl_type 0x0800 - match nw_proto 1 - match icmp_type 8 - cookie 0x000000000000000d, priority 31997, reason DELETE, duration_sec 0, duration_nsec 0, packet_count 0, byte_count 0 -IP (tos 0x0, ttl 64, id 53733, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0x16d4 (correct), seq 12870:12958, ack 4721, win 1035, options [nop,nop,TS val 3 ecr 47837401], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x00000016 - match dl_type 0x0800 - match nw_proto 1 - match icmp_type 3 - match icmp_code 13 - cookie 0x000000000000000e, priority 31996, reason DELETE, duration_sec 0, duration_nsec 0, packet_count 0, byte_count 0 -IP (tos 0x0, ttl 64, id 53117, offset 0, flags [DF], proto TCP (6), length 52) - 10.0.0.20.6633 > 10.0.0.81.56068: Flags [.], cksum 0x148b (incorrect -> 0xc37f), seq 4721, ack 12694, win 331, options [nop,nop,TS val 47837401 ecr 3], length 0 -IP (tos 0x0, ttl 64, id 53734, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0xd96b (correct), seq 12958:13046, ack 4721, win 1035, options [nop,nop,TS val 3 ecr 47837401], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x00000017 - match dl_src aa:00:00:00:00:11 - match dl_dst bb:00:00:00:00:22 - cookie 0x000000000000000f, priority 31995, reason DELETE, duration_sec 0, duration_nsec 0, packet_count 0, byte_count 0 -IP (tos 0x0, ttl 64, id 53735, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0xf172 (correct), seq 13046:13134, ack 4721, win 1035, options [nop,nop,TS val 3 ecr 47837401], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x00000018 - match dl_type 0x0800 - match nw_tos 0x24 - cookie 0x0000000000000010, priority 31994, reason DELETE, duration_sec 0, duration_nsec 0, packet_count 0, byte_count 0 -IP (tos 0x0, ttl 64, id 53736, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0x1534 (correct), seq 13134:13222, ack 4721, win 1035, options [nop,nop,TS val 3 ecr 47837401], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x00000019 - match dl_type 0x0800 - match nw_proto 6 - match tp_src 80 - match tp_dst 80 - cookie 0x0000000000000011, priority 31993, reason DELETE, duration_sec 0, duration_nsec 0, packet_count 0, byte_count 0 -IP (tos 0x0, ttl 64, id 53118, offset 0, flags [DF], proto TCP (6), length 52) - 10.0.0.20.6633 > 10.0.0.81.56068: Flags [.], cksum 0x148b (incorrect -> 0xc16f), seq 4721, ack 13222, win 331, options [nop,nop,TS val 47837401 ecr 3], length 0 -IP (tos 0x0, ttl 64, id 53737, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0x97c9 (correct), seq 13222:13310, ack 4721, win 1035, options [nop,nop,TS val 3 ecr 47837401], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x00000027 - match dl_dst 00:11:22:33:00:32 - match dl_vlan 50 - cookie 0x000000000000001f, priority 65535, reason DELETE, duration_sec 0, duration_nsec 0, packet_count 0, byte_count 0 -IP (tos 0x0, ttl 64, id 53738, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0x976d (correct), seq 13310:13398, ack 4721, win 1035, options [nop,nop,TS val 3 ecr 47837401], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x00000028 - match dl_dst 00:11:22:33:00:33 - match dl_vlan 51 - cookie 0x0000000000000020, priority 65535, reason DELETE, duration_sec 0, duration_nsec 0, packet_count 0, byte_count 0 -IP (tos 0x0, ttl 64, id 53739, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0x9711 (correct), seq 13398:13486, ack 4721, win 1035, options [nop,nop,TS val 3 ecr 47837401], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x00000029 - match dl_dst 00:11:22:33:00:34 - match dl_vlan 52 - cookie 0x0000000000000021, priority 65535, reason DELETE, duration_sec 0, duration_nsec 0, packet_count 0, byte_count 0 -IP (tos 0x0, ttl 64, id 53740, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0x96b5 (correct), seq 13486:13574, ack 4721, win 1035, options [nop,nop,TS val 3 ecr 47837401], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x0000002a - match dl_dst 00:11:22:33:00:35 - match dl_vlan 53 - cookie 0x0000000000000022, priority 65535, reason DELETE, duration_sec 0, duration_nsec 0, packet_count 0, byte_count 0 -IP (tos 0x0, ttl 64, id 53741, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0x9659 (correct), seq 13574:13662, ack 4721, win 1035, options [nop,nop,TS val 3 ecr 47837401], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x0000002b - match dl_dst 00:11:22:33:00:36 - match dl_vlan 54 - cookie 0x0000000000000023, priority 65535, reason DELETE, duration_sec 0, duration_nsec 0, packet_count 0, byte_count 0 -IP (tos 0x0, ttl 64, id 53742, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0x95fd (correct), seq 13662:13750, ack 4721, win 1035, options [nop,nop,TS val 3 ecr 47837401], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x0000002c - match dl_dst 00:11:22:33:00:37 - match dl_vlan 55 - cookie 0x0000000000000024, priority 65535, reason DELETE, duration_sec 0, duration_nsec 0, packet_count 0, byte_count 0 -IP (tos 0x0, ttl 64, id 53743, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0x95a1 (correct), seq 13750:13838, ack 4721, win 1035, options [nop,nop,TS val 3 ecr 47837401], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x0000002d - match dl_dst 00:11:22:33:00:38 - match dl_vlan 56 - cookie 0x0000000000000025, priority 65535, reason DELETE, duration_sec 0, duration_nsec 0, packet_count 0, byte_count 0 -IP (tos 0x0, ttl 64, id 53119, offset 0, flags [DF], proto TCP (6), length 52) - 10.0.0.20.6633 > 10.0.0.81.56068: Flags [.], cksum 0x148b (incorrect -> 0xbf07), seq 4721, ack 13838, win 331, options [nop,nop,TS val 47837401 ecr 3], length 0 -IP (tos 0x0, ttl 64, id 53744, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0x9545 (correct), seq 13838:13926, ack 4721, win 1035, options [nop,nop,TS val 3 ecr 47837401], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x0000002e - match dl_dst 00:11:22:33:00:39 - match dl_vlan 57 - cookie 0x0000000000000026, priority 65535, reason DELETE, duration_sec 0, duration_nsec 0, packet_count 0, byte_count 0 -IP (tos 0x0, ttl 64, id 53745, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0x72fd (correct), seq 13926:14014, ack 4721, win 1035, options [nop,nop,TS val 3 ecr 47837401], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x0000002f - match dl_src 00:11:22:33:00:0a - match dl_dst 00:11:22:33:00:14 - cookie 0x0000000000000027, priority 65535, reason DELETE, duration_sec 0, duration_nsec 0, packet_count 0, byte_count 0 -IP (tos 0x0, ttl 64, id 53746, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0x72a2 (correct), seq 14014:14102, ack 4721, win 1035, options [nop,nop,TS val 3 ecr 47837401], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x00000030 - match dl_src 00:11:22:33:00:0a - match dl_dst 00:11:22:33:00:15 - cookie 0x0000000000000028, priority 65535, reason DELETE, duration_sec 0, duration_nsec 0, packet_count 0, byte_count 0 -IP (tos 0x0, ttl 64, id 53747, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0x7247 (correct), seq 14102:14190, ack 4721, win 1035, options [nop,nop,TS val 3 ecr 47837401], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x00000031 - match dl_src 00:11:22:33:00:0a - match dl_dst 00:11:22:33:00:16 - cookie 0x0000000000000029, priority 65535, reason DELETE, duration_sec 0, duration_nsec 0, packet_count 0, byte_count 0 -IP (tos 0x0, ttl 64, id 53748, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0x71ee (correct), seq 14190:14278, ack 4721, win 1035, options [nop,nop,TS val 3 ecr 47837401], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x00000032 - match dl_src 00:11:22:33:00:0b - match dl_dst 00:11:22:33:00:14 - cookie 0x000000000000002a, priority 65535, reason DELETE, duration_sec 0, duration_nsec 0, packet_count 0, byte_count 0 -IP (tos 0x0, ttl 64, id 53120, offset 0, flags [DF], proto TCP (6), length 52) - 10.0.0.20.6633 > 10.0.0.81.56068: Flags [.], cksum 0x148b (incorrect -> 0xbd4e), seq 4721, ack 14278, win 331, options [nop,nop,TS val 47837402 ecr 3], length 0 -IP (tos 0x0, ttl 64, id 53749, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0x7193 (correct), seq 14278:14366, ack 4721, win 1035, options [nop,nop,TS val 3 ecr 47837401], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x00000033 - match dl_src 00:11:22:33:00:0b - match dl_dst 00:11:22:33:00:15 - cookie 0x000000000000002b, priority 65535, reason DELETE, duration_sec 0, duration_nsec 0, packet_count 0, byte_count 0 -IP (tos 0x0, ttl 64, id 53750, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0x7138 (correct), seq 14366:14454, ack 4721, win 1035, options [nop,nop,TS val 3 ecr 47837401], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x00000034 - match dl_src 00:11:22:33:00:0b - match dl_dst 00:11:22:33:00:16 - cookie 0x000000000000002c, priority 65535, reason DELETE, duration_sec 0, duration_nsec 0, packet_count 0, byte_count 0 -IP (tos 0x0, ttl 64, id 53751, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0x70df (correct), seq 14454:14542, ack 4721, win 1035, options [nop,nop,TS val 3 ecr 47837401], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x00000035 - match dl_src 00:11:22:33:00:0c - match dl_dst 00:11:22:33:00:14 - cookie 0x000000000000002d, priority 65535, reason DELETE, duration_sec 0, duration_nsec 0, packet_count 0, byte_count 0 -IP (tos 0x0, ttl 64, id 53752, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0x7084 (correct), seq 14542:14630, ack 4721, win 1035, options [nop,nop,TS val 3 ecr 47837401], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x00000036 - match dl_src 00:11:22:33:00:0c - match dl_dst 00:11:22:33:00:15 - cookie 0x000000000000002e, priority 65535, reason DELETE, duration_sec 0, duration_nsec 0, packet_count 0, byte_count 0 -IP (tos 0x0, ttl 64, id 53753, offset 0, flags [DF], proto TCP (6), length 140) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0x7028 (correct), seq 14630:14718, ack 4721, win 1035, options [nop,nop,TS val 3 ecr 47837402], length 88: OpenFlow - version 1.0, type FLOW_REMOVED, length 88, xid 0x00000037 - match dl_src 00:11:22:33:00:0c - match dl_dst 00:11:22:33:00:16 - cookie 0x000000000000002f, priority 65535, reason DELETE, duration_sec 0, duration_nsec 0, packet_count 0, byte_count 0 -IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto TCP (6), length 60) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0xb769 (correct), seq 14718:14726, ack 4721, win 1035, options [nop,nop,TS val 3 ecr 47837402], length 8: OpenFlow - version 1.0, type BARRIER_REPLY, length 8, xid 0x00000042 -IP (tos 0x0, ttl 64, id 53121, offset 0, flags [DF], proto TCP (6), length 52) - 10.0.0.20.6633 > 10.0.0.81.56068: Flags [.], cksum 0x148b (incorrect -> 0xbb8e), seq 4721, ack 14726, win 331, options [nop,nop,TS val 47837402 ecr 3], length 0 -IP (tos 0x0, ttl 64, id 53122, offset 0, flags [DF], proto TCP (6), length 60) - 10.0.0.20.6633 > 10.0.0.81.56068: Flags [P.], cksum 0x1493 (incorrect -> 0xba21), seq 4721:4729, ack 14726, win 331, options [nop,nop,TS val 47837402 ecr 3], length 8: OpenFlow - version 1.0, type BARRIER_REQUEST, length 8, xid 0x00000043 -IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto TCP (6), length 60) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0xb758 (correct), seq 14726:14734, ack 4729, win 1035, options [nop,nop,TS val 3 ecr 47837402], length 8: OpenFlow - version 1.0, type BARRIER_REPLY, length 8, xid 0x00000043 -IP (tos 0x0, ttl 64, id 53123, offset 0, flags [DF], proto TCP (6), length 144) - 10.0.0.20.6633 > 10.0.0.81.56068: Flags [P.], cksum 0x14e7 (incorrect -> 0x2671), seq 4729:4821, ack 14734, win 331, options [nop,nop,TS val 47837403 ecr 3], length 92: OpenFlow - version 1.0, type PACKET_OUT, length 84, xid 0x00000044 - buffer_id 0xffffffff, in_port CONTROLLER - action type OUTPUT, len 8, port 1 - data (60 octets), frame decoding below -67:68:00:00:00:00 > 61:62:63:64:65:66 Null Information, send seq 0, rcv seq 0, Flags [Command], length 46 - 0x0000: 0000 0000 0000 0000 0000 0000 0000 0000 ................ - 0x0010: 0000 0000 0000 0000 0000 0000 0000 0000 ................ - 0x0020: 0000 0000 0000 0000 0000 0000 0000 0112 ................ - 0x0030: 0008 0000 0045 .....E - version 1.0, type BARRIER_REQUEST, length 8, xid 0x00000045 -IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto TCP (6), length 60) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0xb6f1 (correct), seq 14734:14742, ack 4821, win 1035, options [nop,nop,TS val 3 ecr 47837403], length 8: OpenFlow - version 1.0, type BARRIER_REPLY, length 8, xid 0x00000045 -IP (tos 0x0, ttl 64, id 53124, offset 0, flags [DF], proto TCP (6), length 60) - 10.0.0.20.6633 > 10.0.0.81.56068: Flags [P.], cksum 0x1493 (incorrect -> 0xb9a7), seq 4821:4829, ack 14742, win 331, options [nop,nop,TS val 47837405 ecr 3], length 8: OpenFlow - version 1.0, type BARRIER_REQUEST, length 8, xid 0x00000046 -IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto TCP (6), length 60) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0xb6de (correct), seq 14742:14750, ack 4829, win 1035, options [nop,nop,TS val 3 ecr 47837405], length 8: OpenFlow - version 1.0, type BARRIER_REPLY, length 8, xid 0x00000046 -IP (tos 0x0, ttl 64, id 53125, offset 0, flags [DF], proto TCP (6), length 60) - 10.0.0.20.6633 > 10.0.0.81.56068: Flags [P.], cksum 0x1493 (incorrect -> 0xb995), seq 4829:4837, ack 14750, win 331, options [nop,nop,TS val 47837406 ecr 3], length 8: OpenFlow - version 1.0, type BARRIER_REQUEST, length 8, xid 0x00000047 -IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto TCP (6), length 60) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0xb6cc (correct), seq 14750:14758, ack 4837, win 1035, options [nop,nop,TS val 3 ecr 47837406], length 8: OpenFlow - version 1.0, type BARRIER_REPLY, length 8, xid 0x00000047 -IP (tos 0x0, ttl 64, id 53126, offset 0, flags [DF], proto TCP (6), length 72) - 10.0.0.20.6633 > 10.0.0.81.56068: Flags [P.], cksum 0x149f (incorrect -> 0xb819), seq 4837:4857, ack 14758, win 331, options [nop,nop,TS val 47837407 ecr 3], length 20: OpenFlow - version 1.0, type SET_CONFIG, length 12, xid 0x00000048 - flags FRAG_NORMAL, miss_send_len 65535 - version 1.0, type BARRIER_REQUEST, length 8, xid 0x00000049 -IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto TCP (6), length 60) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0xb6ad (correct), seq 14758:14766, ack 4857, win 1035, options [nop,nop,TS val 3 ecr 47837407], length 8: OpenFlow - version 1.0, type BARRIER_REPLY, length 8, xid 0x00000049 -IP (tos 0x0, ttl 64, id 53127, offset 0, flags [DF], proto TCP (6), length 52) - 10.0.0.20.6633 > 10.0.0.81.56068: Flags [.], cksum 0x148b (incorrect -> 0xbab1), seq 4857, ack 14766, win 331, options [nop,nop,TS val 47837447 ecr 3], length 0 -IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto TCP (6), length 64) - 10.0.0.81.55442 > 10.0.0.20.6633: Flags [S], cksum 0xb924 (correct), seq 553833795, win 32768, options [mss 1380,nop,wscale 5,sackOK,nop,nop,nop,nop,TS val 1 ecr 0], length 0 -IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto TCP (6), length 60) - 10.0.0.20.6633 > 10.0.0.81.55442: Flags [S.], cksum 0x1493 (incorrect -> 0x6111), seq 845973340, ack 553833796, win 14480, options [mss 1460,sackOK,TS val 47838340 ecr 1,nop,wscale 7], length 0 -IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto TCP (6), length 52) - 10.0.0.81.55442 > 10.0.0.20.6633: Flags [.], cksum 0xc462 (correct), seq 1, ack 1, win 1035, options [nop,nop,TS val 1 ecr 47838340], length 0 -IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto TCP (6), length 60) - 10.0.0.81.55442 > 10.0.0.20.6633: Flags [P.], cksum 0x3724 (correct), seq 1:9, ack 1, win 1035, options [nop,nop,TS val 1 ecr 47838340], length 8: OpenFlow - version 1.0, type HELLO, length 8, xid 0x95e1f644 -IP (tos 0x0, ttl 64, id 29656, offset 0, flags [DF], proto TCP (6), length 52) - 10.0.0.20.6633 > 10.0.0.81.55442: Flags [.], cksum 0x148b (incorrect -> 0xc7f2), seq 1, ack 9, win 114, options [nop,nop,TS val 47838341 ecr 1], length 0 -IP (tos 0x0, ttl 64, id 29657, offset 0, flags [DF], proto TCP (6), length 60) - 10.0.0.20.6633 > 10.0.0.81.55442: Flags [P.], cksum 0x1493 (incorrect -> 0xc6d3), seq 1:9, ack 9, win 114, options [nop,nop,TS val 47838347 ecr 1], length 8: OpenFlow - version 1.0, type HELLO, length 8, xid 0x00000001 -IP (tos 0x0, ttl 64, id 29658, offset 0, flags [DF], proto TCP (6), length 60) - 10.0.0.20.6633 > 10.0.0.81.55442: Flags [P.], cksum 0x1493 (incorrect -> 0xc6c4), seq 9:17, ack 9, win 114, options [nop,nop,TS val 47838348 ecr 1], length 8: OpenFlow - version 1.0, type FEATURES_REQUEST, length 8, xid 0x00000002 -IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto TCP (6), length 52) - 10.0.0.81.55442 > 10.0.0.20.6633: Flags [.], cksum 0xc444 (correct), seq 9, ack 17, win 1034, options [nop,nop,TS val 1 ecr 47838347], length 0 -IP (tos 0x0, ttl 64, id 53761, offset 0, flags [DF], proto TCP (6), length 180) - 10.0.0.81.55442 > 10.0.0.20.6633: Flags [P.], cksum 0x1df1 (correct), seq 9:137, ack 17, win 1035, options [nop,nop,TS val 1 ecr 47838347], length 128: OpenFlow - version 1.0, type FEATURES_REPLY, length 128, xid 0x00000002 - dpid 0x00050001e88ae0e2, n_buffers 0, n_tables 6 - capabilities 0x00000007 (FLOW_STATS, TABLE_STATS, PORT_STATS) - actions 0x00000137 (OUTPUT, SET_VLAN_VID, SET_VLAN_PCP, SET_DL_SRC, SET_DL_DST, SET_NW_TOS) - port_no 13, hw_addr 00:01:e8:8a:e0:e4, name 'Te 0/12' - config 0x00000001 (PORT_DOWN) - state 0x00000001 (LINK_DOWN) - curr 0x00000300 (FIBER, AUTONEG) - advertised 0x00000300 (FIBER, AUTONEG) - supported 0x00000300 (FIBER, AUTONEG) - peer 0x00000000 - port_no 16, hw_addr 00:01:e8:8a:e0:e4, name 'Te 0/15' - config 0x00008001 (PORT_DOWN) (bogus) - state 0x00000001 (LINK_DOWN) - curr 0x00000300 (FIBER, AUTONEG) - advertised 0x00000300 (FIBER, AUTONEG) - supported 0x00000300 (FIBER, AUTONEG) - peer 0x00000000 -IP (tos 0x0, ttl 64, id 29659, offset 0, flags [DF], proto TCP (6), length 52) - 10.0.0.20.6633 > 10.0.0.81.55442: Flags [F.], cksum 0x148b (incorrect -> 0xc74d), seq 17, ack 137, win 122, options [nop,nop,TS val 47838353 ecr 1], length 0 -IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto TCP (6), length 52) - 10.0.0.81.55442 > 10.0.0.20.6633: Flags [.], cksum 0xc3bc (correct), seq 137, ack 18, win 1035, options [nop,nop,TS val 1 ecr 47838353], length 0 -IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto TCP (6), length 52) - 10.0.0.81.55442 > 10.0.0.20.6633: Flags [F.], cksum 0xc3bb (correct), seq 137, ack 18, win 1035, options [nop,nop,TS val 1 ecr 47838353], length 0 -IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto TCP (6), length 52) - 10.0.0.20.6633 > 10.0.0.81.55442: Flags [.], cksum 0xc74c (correct), seq 18, ack 138, win 122, options [nop,nop,TS val 47838353 ecr 1], length 0 -IP (tos 0x0, ttl 64, id 53775, offset 0, flags [DF], proto TCP (6), length 189) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [P.], cksum 0xf083 (correct), seq 14766:14903, ack 4857, win 1035, options [nop,nop,TS val 6 ecr 47837447], length 137: OpenFlow - version 1.0, type PACKET_IN, length 137, xid 0x00000000 - buffer_id NONE, total_len 119, in_port 1, reason NO_MATCH - data (119 octets), frame decoding below -STP 802.1s, Rapid STP, CIST Flags [Proposal, Learn, Forward, Agreement], length 102 - port-role Designated, CIST root-id 8000.08:9e:01:62:d5:f4, CIST ext-pathcost 0 - CIST regional-root-id 8000.08:9e:01:62:d5:f4, CIST port-id 8034, - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - v3len 64, MCID Name pica8, rev 0, - digest ac36177f50283cd4b83821d8ab26de62, CIST int-root-pathcost 0, - CIST bridge-id 8000.08:9e:01:62:d5:f4, CIST remaining-hops 20 -IP (tos 0x0, ttl 64, id 53128, offset 0, flags [DF], proto TCP (6), length 52) - 10.0.0.20.6633 > 10.0.0.81.56068: Flags [.], cksum 0x148b (incorrect -> 0xb3e0), seq 4857, ack 14903, win 331, options [nop,nop,TS val 47839052 ecr 6], length 0 -IP (tos 0x0, ttl 64, id 53129, offset 0, flags [DF], proto TCP (6), length 52) - 10.0.0.20.6633 > 10.0.0.81.56068: Flags [F.], cksum 0x148b (incorrect -> 0xac31), seq 4857, ack 14903, win 331, options [nop,nop,TS val 47841018 ecr 6], length 0 -IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto TCP (6), length 52) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [.], cksum 0xa96d (correct), seq 14903, ack 4858, win 1035, options [nop,nop,TS val 10 ecr 47841018], length 0 -IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto TCP (6), length 52) - 10.0.0.81.56068 > 10.0.0.20.6633: Flags [F.], cksum 0xa96c (correct), seq 14903, ack 4858, win 1035, options [nop,nop,TS val 10 ecr 47841018], length 0 -IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto TCP (6), length 52) - 10.0.0.20.6633 > 10.0.0.81.56068: Flags [.], cksum 0xac2b (correct), seq 4858, ack 14904, win 331, options [nop,nop,TS val 47841019 ecr 10], length 0 diff --git a/tests/of10_s4810.pcap b/tests/of10_s4810.pcap deleted file mode 100644 index 4c9c194..0000000 Binary files a/tests/of10_s4810.pcap and /dev/null differ diff --git a/tests/ospf-gmpls.out b/tests/ospf-gmpls.out deleted file mode 100644 index e4dd9ab..0000000 --- a/tests/ospf-gmpls.out +++ /dev/null @@ -1,86 +0,0 @@ -IP (tos 0xc0, ttl 1, id 4052, offset 0, flags [none], proto OSPF (89), length 172) - 40.35.1.2 > 224.0.0.5: OSPFv2, LS-Update, length 152 - Router-ID 10.255.245.35, Backbone Area, Authentication Type: none (0), 1 LSA - LSA #1 - Advertising Router 10.255.245.37, seq 0x80000002, age 9s, length 104 - Area Local Opaque LSA (10), Opaque-Type Traffic Engineering LSA (1), Opaque-ID 8 - Options: [External] - Link TLV (2), length: 100 - Link Type subTLV (1), length: 1, Point-to-point (1) - Link ID subTLV (2), length: 4, 10.255.245.69 (0x0afff545) - Local Interface IP address subTLV (3), length: 4, 10.9.142.1 - Remote Interface IP address subTLV (4), length: 4, 10.9.142.2 - Traffic Engineering Metric subTLV (5), length: 4, Metric 63 - Maximum Bandwidth subTLV (6), length: 4, 622.080 Mbps - Maximum Reservable Bandwidth subTLV (7), length: 4, 622.080 Mbps - Unreserved Bandwidth subTLV (8), length: 32 - TE-Class 0: 622.080 Mbps - TE-Class 1: 622.080 Mbps - TE-Class 2: 622.080 Mbps - TE-Class 3: 622.080 Mbps - TE-Class 4: 622.080 Mbps - TE-Class 5: 622.080 Mbps - TE-Class 6: 622.080 Mbps - TE-Class 7: 622.080 Mbps - Administrative Group subTLV (9), length: 4, 0x00000000 -IP (tos 0xc0, ttl 1, id 4106, offset 0, flags [none], proto OSPF (89), length 172) - 40.35.1.2 > 224.0.0.5: OSPFv2, LS-Update, length 152 - Router-ID 10.255.245.35, Backbone Area, Authentication Type: none (0), 1 LSA - LSA #1 - Advertising Router 10.255.245.37, seq 0x80000002, age 9s, length 104 - Area Local Opaque LSA (10), Opaque-Type Traffic Engineering LSA (1), Opaque-ID 9 - Options: [External] - Link TLV (2), length: 100 - Link Type subTLV (1), length: 1, Point-to-point (1) - Link ID subTLV (2), length: 4, 10.255.245.69 (0x0afff545) - Local Interface IP address subTLV (3), length: 4, 10.9.143.1 - Remote Interface IP address subTLV (4), length: 4, 10.9.143.2 - Traffic Engineering Metric subTLV (5), length: 4, Metric 63 - Maximum Bandwidth subTLV (6), length: 4, 622.080 Mbps - Maximum Reservable Bandwidth subTLV (7), length: 4, 622.080 Mbps - Unreserved Bandwidth subTLV (8), length: 32 - TE-Class 0: 622.080 Mbps - TE-Class 1: 622.080 Mbps - TE-Class 2: 622.080 Mbps - TE-Class 3: 622.080 Mbps - TE-Class 4: 622.080 Mbps - TE-Class 5: 622.080 Mbps - TE-Class 6: 622.080 Mbps - TE-Class 7: 622.080 Mbps - Administrative Group subTLV (9), length: 4, 0x00000000 -IP (tos 0xc0, ttl 1, id 4160, offset 0, flags [none], proto OSPF (89), length 212) - 40.35.1.2 > 224.0.0.5: OSPFv2, LS-Update, length 192 - Router-ID 10.255.245.35, Backbone Area, Authentication Type: none (0), 1 LSA - LSA #1 - Advertising Router 10.255.245.35, seq 0x80000003, age 3s, length 144 - Area Local Opaque LSA (10), Opaque-Type Traffic Engineering LSA (1), Opaque-ID 3 - Options: [External] - Link TLV (2), length: 140 - Link Type subTLV (1), length: 1, Point-to-point (1) - Link ID subTLV (2), length: 4, 10.255.245.40 (0x0afff528) - Local Interface IP address subTLV (3), length: 4, 10.40.35.14 - Remote Interface IP address subTLV (4), length: 4, 10.40.35.13 - Traffic Engineering Metric subTLV (5), length: 4, Metric 1 - Maximum Bandwidth subTLV (6), length: 4, 100.000 Mbps - Maximum Reservable Bandwidth subTLV (7), length: 4, 100.000 Mbps - Unreserved Bandwidth subTLV (8), length: 32 - TE-Class 0: 0.000 Mbps - TE-Class 1: 0.000 Mbps - TE-Class 2: 0.000 Mbps - TE-Class 3: 0.000 Mbps - TE-Class 4: 0.000 Mbps - TE-Class 5: 0.000 Mbps - TE-Class 6: 0.000 Mbps - TE-Class 7: 0.000 Mbps - Interface Switching Capability subTLV (15), length: 44 - Interface Switching Capability: Packet-Switch Capable-1 - LSP Encoding: Ethernet V2/DIX - Max LSP Bandwidth: - priority level 0: 0.000 Mbps - priority level 1: 0.000 Mbps - priority level 2: 0.000 Mbps - priority level 3: 0.000 Mbps - priority level 4: 0.000 Mbps - priority level 5: 0.000 Mbps - priority level 6: 0.000 Mbps - priority level 7: 0.000 Mbps diff --git a/tests/ospf-gmpls.pcap b/tests/ospf-gmpls.pcap deleted file mode 100644 index d36982a..0000000 Binary files a/tests/ospf-gmpls.pcap and /dev/null differ diff --git a/tests/ospf3_ah-vv.out b/tests/ospf3_ah-vv.out deleted file mode 100644 index 54a521b..0000000 --- a/tests/ospf3_ah-vv.out +++ /dev/null @@ -1,645 +0,0 @@ -IP6 (class 0xe0, hlim 1, next-header AH (51) payload length: 60) fe80::1 > ff02::5: AH(spi=0x00000100,sumlen=16,seq=0x13): OSPFv3, Hello, length 36 - Router-ID 1.1.1.1, Area 0.0.0.1 - Options [V6, External, Router] - Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 - Neighbor List: -IP6 (class 0xe0, hlim 1, next-header AH (51) payload length: 60) fe80::2 > ff02::5: AH(spi=0x00000100,sumlen=16,seq=0xd): OSPFv3, Hello, length 36 - Router-ID 2.2.2.2, Area 0.0.0.1 - Options [V6, External, Router] - Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 - Neighbor List: -IP6 (class 0xe0, hlim 1, next-header AH (51) payload length: 64) fe80::1 > ff02::5: AH(spi=0x00000100,sumlen=16,seq=0x14): OSPFv3, Hello, length 40 - Router-ID 1.1.1.1, Area 0.0.0.1 - Options [V6, External, Router] - Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 - Neighbor List: - 2.2.2.2 -IP6 (class 0xe0, hlim 1, next-header AH (51) payload length: 64) fe80::2 > ff02::5: AH(spi=0x00000100,sumlen=16,seq=0xe): OSPFv3, Hello, length 40 - Router-ID 2.2.2.2, Area 0.0.0.1 - Options [V6, External, Router] - Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 - Neighbor List: - 1.1.1.1 -IP6 (class 0xe0, hlim 1, next-header AH (51) payload length: 64) fe80::1 > ff02::5: AH(spi=0x00000100,sumlen=16,seq=0x15): OSPFv3, Hello, length 40 - Router-ID 1.1.1.1, Area 0.0.0.1 - Options [V6, External, Router] - Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 - Neighbor List: - 2.2.2.2 -IP6 (class 0xe0, hlim 1, next-header AH (51) payload length: 64) fe80::2 > ff02::5: AH(spi=0x00000100,sumlen=16,seq=0xf): OSPFv3, Hello, length 40 - Router-ID 2.2.2.2, Area 0.0.0.1 - Options [V6, External, Router] - Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 - Neighbor List: - 1.1.1.1 -IP6 (class 0xe0, hlim 1, next-header AH (51) payload length: 64) fe80::1 > ff02::5: AH(spi=0x00000100,sumlen=16,seq=0x17): OSPFv3, Hello, length 40 - Router-ID 1.1.1.1, Area 0.0.0.1 - Options [V6, External, Router] - Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 - Designated Router 2.2.2.2, Backup Designated Router 2.2.2.2 - Neighbor List: - 2.2.2.2 -IP6 (class 0xe0, hlim 1, next-header AH (51) payload length: 52) fe80::1 > fe80::2: AH(spi=0x00000100,sumlen=16,seq=0x16): OSPFv3, Database Description, length 28 - Router-ID 1.1.1.1, Area 0.0.0.1 - Options [V6, External, Router], DD Flags [Init, More, Master], MTU 1500, DD-Sequence 0x000012fd -IP6 (class 0xe0, hlim 1, next-header AH (51) payload length: 64) fe80::2 > ff02::5: AH(spi=0x00000100,sumlen=16,seq=0x10): OSPFv3, Hello, length 40 - Router-ID 2.2.2.2, Area 0.0.0.1 - Options [V6, External, Router] - Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 - Neighbor List: - 1.1.1.1 -IP6 (class 0xe0, hlim 1, next-header AH (51) payload length: 52) fe80::1 > fe80::2: AH(spi=0x00000100,sumlen=16,seq=0x18): OSPFv3, Database Description, length 28 - Router-ID 1.1.1.1, Area 0.0.0.1 - Options [V6, External, Router], DD Flags [Init, More, Master], MTU 1500, DD-Sequence 0x000012fd -IP6 (class 0xe0, hlim 1, next-header AH (51) payload length: 64) fe80::1 > ff02::5: AH(spi=0x00000100,sumlen=16,seq=0x19): OSPFv3, Hello, length 40 - Router-ID 1.1.1.1, Area 0.0.0.1 - Options [V6, External, Router] - Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 - Designated Router 2.2.2.2, Backup Designated Router 2.2.2.2 - Neighbor List: - 2.2.2.2 -IP6 (class 0xe0, hlim 1, next-header AH (51) payload length: 52) fe80::1 > fe80::2: AH(spi=0x00000100,sumlen=16,seq=0x1a): OSPFv3, Database Description, length 28 - Router-ID 1.1.1.1, Area 0.0.0.1 - Options [V6, External, Router], DD Flags [Init, More, Master], MTU 1500, DD-Sequence 0x000012fd -IP6 (class 0xe0, hlim 1, next-header AH (51) payload length: 52) fe80::2 > fe80::1: AH(spi=0x00000100,sumlen=16,seq=0x11): OSPFv3, Database Description, length 28 - Router-ID 2.2.2.2, Area 0.0.0.1 - Options [V6, External, Router], DD Flags [Init, More, Master], MTU 1500, DD-Sequence 0x00000b91 -IP6 (class 0xe0, hlim 1, next-header AH (51) payload length: 352) fe80::1 > fe80::2: AH(spi=0x00000100,sumlen=16,seq=0x1b): OSPFv3, Database Description, length 328 - Router-ID 1.1.1.1, Area 0.0.0.1 - Options [V6, External, Router], DD Flags [More], MTU 1500, DD-Sequence 0x00000b91 - Advertising Router 1.1.1.1, seq 0x8000000b, age 14s, length 4 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 2.2.2.2, seq 0x80000008, age 69s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 2.2.2.2, seq 0x80000003, age 74s, length 12 - Network LSA (2), Area Local Scope, LSA-ID 0.0.0.5 - Advertising Router 1.1.1.1, seq 0x80000001, age 54s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.5 - Advertising Router 1.1.1.1, seq 0x80000001, age 54s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.6 - Advertising Router 1.1.1.1, seq 0x80000001, age 54s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.7 - Advertising Router 1.1.1.1, seq 0x80000001, age 54s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.8 - Advertising Router 2.2.2.2, seq 0x80000001, age 1019s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.1 - Advertising Router 2.2.2.2, seq 0x80000001, age 873s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.2 - Advertising Router 2.2.2.2, seq 0x80000001, age 873s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.3 - Advertising Router 2.2.2.2, seq 0x80000001, age 873s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4 - Advertising Router 1.1.1.1, seq 0x80000002, age 49s, length 36 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.5 - Advertising Router 2.2.2.2, seq 0x80000002, age 1082s, length 36 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.5 - Advertising Router 1.1.1.1, seq 0x80000001, age 49s, length 24 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 2.2.2.2, seq 0x80000003, age 74s, length 24 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.20.0 -IP6 (class 0xe0, hlim 1, next-header AH (51) payload length: 64) fe80::2 > ff02::5: AH(spi=0x00000100,sumlen=16,seq=0x12): OSPFv3, Hello, length 40 - Router-ID 2.2.2.2, Area 0.0.0.1 - Options [V6, External, Router] - Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 - Designated Router 2.2.2.2, Backup Designated Router 1.1.1.1 - Neighbor List: - 1.1.1.1 -IP6 (class 0xe0, hlim 1, next-header AH (51) payload length: 312) fe80::2 > fe80::1: AH(spi=0x00000100,sumlen=16,seq=0x13): OSPFv3, Database Description, length 288 - Router-ID 2.2.2.2, Area 0.0.0.1 - Options [V6, External, Router], DD Flags [More, Master], MTU 1500, DD-Sequence 0x00000b92 - Advertising Router 1.1.1.1, seq 0x80000008, age 68s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 2.2.2.2, seq 0x8000000a, age 39s, length 4 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 1.1.1.1, seq 0x80000001, age 1020s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.1 - Advertising Router 1.1.1.1, seq 0x80000001, age 865s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.2 - Advertising Router 1.1.1.1, seq 0x80000001, age 865s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.3 - Advertising Router 1.1.1.1, seq 0x80000001, age 865s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4 - Advertising Router 2.2.2.2, seq 0x80000001, age 40s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.5 - Advertising Router 2.2.2.2, seq 0x80000001, age 40s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.6 - Advertising Router 2.2.2.2, seq 0x80000001, age 40s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.7 - Advertising Router 2.2.2.2, seq 0x80000001, age 40s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.8 - Advertising Router 1.1.1.1, seq 0x80000002, age 1084s, length 36 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.5 - Advertising Router 2.2.2.2, seq 0x80000002, age 33s, length 36 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.5 - Advertising Router 2.2.2.2, seq 0x80000001, age 33s, length 24 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 -IP6 (class 0xe0, hlim 1, next-header AH (51) payload length: 52) fe80::1 > fe80::2: AH(spi=0x00000100,sumlen=16,seq=0x1c): OSPFv3, Database Description, length 28 - Router-ID 1.1.1.1, Area 0.0.0.1 - Options [V6, External, Router], DD Flags [none], MTU 1500, DD-Sequence 0x00000b92 -IP6 (class 0xe0, hlim 1, next-header AH (51) payload length: 196) fe80::2 > fe80::1: AH(spi=0x00000100,sumlen=16,seq=0x14): OSPFv3, LS-Request, length 172 - Router-ID 2.2.2.2, Area 0.0.0.1 - Advertising Router 1.1.1.1 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 2.2.2.2 - Network LSA (2), Area Local Scope, LSA-ID 0.0.0.5 - Advertising Router 2.2.2.2 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4 - Advertising Router 2.2.2.2 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.3 - Advertising Router 2.2.2.2 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.2 - Advertising Router 2.2.2.2 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.1 - Advertising Router 1.1.1.1 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.8 - Advertising Router 1.1.1.1 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.7 - Advertising Router 1.1.1.1 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.6 - Advertising Router 1.1.1.1 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.5 - Advertising Router 1.1.1.1 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.5 - Advertising Router 2.2.2.2 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.20.0 - Advertising Router 1.1.1.1 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 -IP6 (class 0xe0, hlim 1, next-header AH (51) payload length: 172) fe80::1 > fe80::2: AH(spi=0x00000100,sumlen=16,seq=0x1d): OSPFv3, LS-Request, length 148 - Router-ID 1.1.1.1, Area 0.0.0.1 - Advertising Router 2.2.2.2 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 2.2.2.2 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.8 - Advertising Router 2.2.2.2 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.7 - Advertising Router 2.2.2.2 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.6 - Advertising Router 2.2.2.2 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.5 - Advertising Router 1.1.1.1 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4 - Advertising Router 1.1.1.1 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.3 - Advertising Router 1.1.1.1 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.2 - Advertising Router 1.1.1.1 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.1 - Advertising Router 2.2.2.2 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.5 - Advertising Router 2.2.2.2 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 -IP6 (class 0xe0, hlim 1, next-header AH (51) payload length: 52) fe80::2 > fe80::1: AH(spi=0x00000100,sumlen=16,seq=0x15): OSPFv3, Database Description, length 28 - Router-ID 2.2.2.2, Area 0.0.0.1 - Options [V6, External, Router], DD Flags [Master], MTU 1500, DD-Sequence 0x00000b93 -IP6 (class 0xe0, hlim 1, next-header AH (51) payload length: 532) fe80::1 > fe80::2: AH(spi=0x00000100,sumlen=16,seq=0x1e): OSPFv3, LS-Update, length 508 - Router-ID 1.1.1.1, Area 0.0.0.1 - Advertising Router 1.1.1.1, seq 0x8000000b, age 15s, length 4 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Advertising Router 2.2.2.2, seq 0x80000003, age 75s, length 12 - Network LSA (2), Area Local Scope, LSA-ID 0.0.0.5 - Options [V6, External, Router, Demand Circuit] - Connected Routers: - 2.2.2.2 - 1.1.1.1 - Advertising Router 2.2.2.2, seq 0x80000001, age 874s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4, metric 74 - 2001:db8:0:3::/64, metric 0 - Advertising Router 2.2.2.2, seq 0x80000001, age 874s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.3, metric 84 - 2001:db8:0:4::/64, metric 0 - Advertising Router 2.2.2.2, seq 0x80000001, age 874s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.2, metric 74 - 2001:db8:0:34::/64, metric 0 - Advertising Router 2.2.2.2, seq 0x80000001, age 1020s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.1, metric 64 - 2001:db8::/64, metric 0 - Advertising Router 1.1.1.1, seq 0x80000001, age 55s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.8, metric 74 - 2001:db8:0:3::/64, metric 0 - Advertising Router 1.1.1.1, seq 0x80000001, age 55s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.7, metric 84 - 2001:db8:0:4::/64, metric 0 - Advertising Router 1.1.1.1, seq 0x80000001, age 55s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.6, metric 74 - 2001:db8:0:34::/64, metric 0 - Advertising Router 1.1.1.1, seq 0x80000001, age 55s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.5, metric 64 - 2001:db8::/64, metric 0 - Advertising Router 1.1.1.1, seq 0x80000002, age 50s, length 36 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.5 - Options [V6, External, Router, Demand Circuit] - Priority 1, Link-local address fe80::1, Prefixes 1: - 2001:db8:0:12::/64, metric 0 - Advertising Router 2.2.2.2, seq 0x80000003, age 75s, length 24 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.20.0 - Network LSA (2), Area Local Scope, LSA-ID 0.0.0.5 - Prefixes 1: - 2001:db8:0:12::/64, metric 0 - Advertising Router 1.1.1.1, seq 0x80000001, age 50s, length 24 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Prefixes 1: - 2001:db8:0:12::/64, metric 10 -IP6 (class 0xe0, hlim 1, next-header AH (51) payload length: 52) fe80::1 > fe80::2: AH(spi=0x00000100,sumlen=16,seq=0x1f): OSPFv3, Database Description, length 28 - Router-ID 1.1.1.1, Area 0.0.0.1 - Options [V6, External, Router], DD Flags [none], MTU 1500, DD-Sequence 0x00000b93 -IP6 (class 0xe0, hlim 1, next-header AH (51) payload length: 456) fe80::2 > fe80::1: AH(spi=0x00000100,sumlen=16,seq=0x16): OSPFv3, LS-Update, length 432 - Router-ID 2.2.2.2, Area 0.0.0.1 - Advertising Router 2.2.2.2, seq 0x8000000a, age 40s, length 4 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Advertising Router 2.2.2.2, seq 0x80000001, age 41s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.8, metric 74 - 2001:db8:0:3::/64, metric 0 - Advertising Router 2.2.2.2, seq 0x80000001, age 41s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.7, metric 84 - 2001:db8:0:4::/64, metric 0 - Advertising Router 2.2.2.2, seq 0x80000001, age 41s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.6, metric 74 - 2001:db8:0:34::/64, metric 0 - Advertising Router 2.2.2.2, seq 0x80000001, age 41s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.5, metric 64 - 2001:db8::/64, metric 0 - Advertising Router 1.1.1.1, seq 0x80000001, age 866s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4, metric 74 - 2001:db8:0:3::/64, metric 0 - Advertising Router 1.1.1.1, seq 0x80000001, age 866s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.3, metric 84 - 2001:db8:0:4::/64, metric 0 - Advertising Router 1.1.1.1, seq 0x80000001, age 866s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.2, metric 74 - 2001:db8:0:34::/64, metric 0 - Advertising Router 1.1.1.1, seq 0x80000001, age 1021s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.1, metric 64 - 2001:db8::/64, metric 0 - Advertising Router 2.2.2.2, seq 0x80000002, age 34s, length 36 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.5 - Options [V6, External, Router, Demand Circuit] - Priority 1, Link-local address fe80::2, Prefixes 1: - 2001:db8:0:12::/64, metric 0 - Advertising Router 2.2.2.2, seq 0x80000001, age 34s, length 24 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Prefixes 1: - 2001:db8:0:12::/64, metric 10 -IP6 (class 0xe0, hlim 1, next-header AH (51) payload length: 116) fe80::2 > ff02::5: AH(spi=0x00000100,sumlen=16,seq=0x17): OSPFv3, LS-Update, length 92 - Router-ID 2.2.2.2, Area 0.0.0.1 - Advertising Router 2.2.2.2, seq 0x80000002, age 3600s, length 12 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Prefixes 0: - Advertising Router 2.2.2.2, seq 0x8000000b, age 1s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Neighbor Network-ID 2.2.2.2 - Neighbor Interface-ID 0.0.0.5, Interface 0.0.0.5, metric 10 -IP6 (class 0xe0, hlim 1, next-header AH (51) payload length: 116) fe80::1 > ff02::5: AH(spi=0x00000100,sumlen=16,seq=0x20): OSPFv3, LS-Update, length 92 - Router-ID 1.1.1.1, Area 0.0.0.1 - Advertising Router 1.1.1.1, seq 0x8000000c, age 1s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Neighbor Network-ID 2.2.2.2 - Neighbor Interface-ID 0.0.0.5, Interface 0.0.0.5, metric 10 - Advertising Router 1.1.1.1, seq 0x80000002, age 3600s, length 12 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Prefixes 0: -IP6 (class 0xe0, hlim 1, next-header AH (51) payload length: 300) fe80::2 > ff02::5: AH(spi=0x00000100,sumlen=16,seq=0x18): OSPFv3, LS-Ack, length 276 - Router-ID 2.2.2.2, Area 0.0.0.1 - Advertising Router 1.1.1.1, seq 0x8000000b, age 15s, length 4 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 2.2.2.2, seq 0x80000003, age 75s, length 12 - Network LSA (2), Area Local Scope, LSA-ID 0.0.0.5 - Advertising Router 2.2.2.2, seq 0x80000001, age 874s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4 - Advertising Router 2.2.2.2, seq 0x80000001, age 874s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.3 - Advertising Router 2.2.2.2, seq 0x80000001, age 874s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.2 - Advertising Router 2.2.2.2, seq 0x80000001, age 1020s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.1 - Advertising Router 1.1.1.1, seq 0x80000001, age 55s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.8 - Advertising Router 1.1.1.1, seq 0x80000001, age 55s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.7 - Advertising Router 1.1.1.1, seq 0x80000001, age 55s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.6 - Advertising Router 1.1.1.1, seq 0x80000001, age 55s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.5 - Advertising Router 1.1.1.1, seq 0x80000002, age 50s, length 36 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.5 - Advertising Router 2.2.2.2, seq 0x80000003, age 75s, length 24 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.20.0 - Advertising Router 1.1.1.1, seq 0x80000001, age 50s, length 24 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 -IP6 (class 0xe0, hlim 1, next-header AH (51) payload length: 260) fe80::1 > ff02::5: AH(spi=0x00000100,sumlen=16,seq=0x21): OSPFv3, LS-Ack, length 236 - Router-ID 1.1.1.1, Area 0.0.0.1 - Advertising Router 2.2.2.2, seq 0x8000000a, age 40s, length 4 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 2.2.2.2, seq 0x80000001, age 41s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.8 - Advertising Router 2.2.2.2, seq 0x80000001, age 41s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.7 - Advertising Router 2.2.2.2, seq 0x80000001, age 41s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.6 - Advertising Router 2.2.2.2, seq 0x80000001, age 41s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.5 - Advertising Router 1.1.1.1, seq 0x80000001, age 866s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4 - Advertising Router 1.1.1.1, seq 0x80000001, age 866s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.3 - Advertising Router 1.1.1.1, seq 0x80000001, age 866s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.2 - Advertising Router 1.1.1.1, seq 0x80000001, age 1021s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.1 - Advertising Router 2.2.2.2, seq 0x80000002, age 34s, length 36 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.5 - Advertising Router 2.2.2.2, seq 0x80000001, age 34s, length 24 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 -IP6 (class 0xe0, hlim 1, next-header AH (51) payload length: 64) fe80::1 > ff02::5: AH(spi=0x00000100,sumlen=16,seq=0x22): OSPFv3, Hello, length 40 - Router-ID 1.1.1.1, Area 0.0.0.1 - Options [V6, External, Router] - Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 - Designated Router 2.2.2.2, Backup Designated Router 1.1.1.1 - Neighbor List: - 2.2.2.2 -IP6 (class 0xe0, hlim 1, next-header AH (51) payload length: 116) fe80::2 > fe80::1: AH(spi=0x00000100,sumlen=16,seq=0x19): OSPFv3, LS-Update, length 92 - Router-ID 2.2.2.2, Area 0.0.0.1 - Advertising Router 2.2.2.2, seq 0x80000002, age 3600s, length 12 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Prefixes 0: - Advertising Router 2.2.2.2, seq 0x8000000b, age 5s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Neighbor Network-ID 2.2.2.2 - Neighbor Interface-ID 0.0.0.5, Interface 0.0.0.5, metric 10 -IP6 (class 0xe0, hlim 1, next-header AH (51) payload length: 264) fe80::2 > ff02::5: AH(spi=0x00000100,sumlen=16,seq=0x1a): OSPFv3, LS-Update, length 240 - Router-ID 2.2.2.2, Area 0.0.0.1 - Advertising Router 2.2.2.2, seq 0x80000004, age 1s, length 12 - Network LSA (2), Area Local Scope, LSA-ID 0.0.0.5 - Options [V6, External, Router, Demand Circuit] - Connected Routers: - 2.2.2.2 - 1.1.1.1 - Advertising Router 2.2.2.2, seq 0x80000002, age 3600s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4, metric 16777215 - 2001:db8:0:3::/64, metric 0 - Advertising Router 2.2.2.2, seq 0x80000002, age 3600s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.3, metric 16777215 - 2001:db8:0:4::/64, metric 0 - Advertising Router 2.2.2.2, seq 0x80000002, age 3600s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.2, metric 16777215 - 2001:db8:0:34::/64, metric 0 - Advertising Router 2.2.2.2, seq 0x80000002, age 3600s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.1, metric 16777215 - 2001:db8::/64, metric 0 - Advertising Router 2.2.2.2, seq 0x80000004, age 1s, length 24 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.20.0 - Network LSA (2), Area Local Scope, LSA-ID 0.0.0.5 - Prefixes 1: - 2001:db8:0:12::/64, metric 0 -IP6 (class 0xe0, hlim 1, next-header AH (51) payload length: 116) fe80::1 > fe80::2: AH(spi=0x00000100,sumlen=16,seq=0x23): OSPFv3, LS-Update, length 92 - Router-ID 1.1.1.1, Area 0.0.0.1 - Advertising Router 1.1.1.1, seq 0x8000000c, age 5s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Neighbor Network-ID 2.2.2.2 - Neighbor Interface-ID 0.0.0.5, Interface 0.0.0.5, metric 10 - Advertising Router 1.1.1.1, seq 0x80000002, age 3600s, length 12 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Prefixes 0: -IP6 (class 0xe0, hlim 1, next-header AH (51) payload length: 84) fe80::2 > ff02::5: AH(spi=0x00000100,sumlen=16,seq=0x1b): OSPFv3, LS-Update, length 60 - Router-ID 2.2.2.2, Area 0.0.0.1 - Advertising Router 2.2.2.2, seq 0x8000000c, age 1s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Neighbor Network-ID 2.2.2.2 - Neighbor Interface-ID 0.0.0.5, Interface 0.0.0.5, metric 10 -IP6 (class 0xe0, hlim 1, next-header AH (51) payload length: 188) fe80::1 > ff02::5: AH(spi=0x00000100,sumlen=16,seq=0x24): OSPFv3, LS-Update, length 164 - Router-ID 1.1.1.1, Area 0.0.0.1 - Advertising Router 1.1.1.1, seq 0x80000002, age 3600s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4, metric 16777215 - 2001:db8:0:3::/64, metric 0 - Advertising Router 1.1.1.1, seq 0x80000002, age 3600s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.3, metric 16777215 - 2001:db8:0:4::/64, metric 0 - Advertising Router 1.1.1.1, seq 0x80000002, age 3600s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.2, metric 16777215 - 2001:db8:0:34::/64, metric 0 - Advertising Router 1.1.1.1, seq 0x80000002, age 3600s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.1, metric 16777215 - 2001:db8::/64, metric 0 -IP6 (class 0xe0, hlim 1, next-header AH (51) payload length: 200) fe80::1 > ff02::5: AH(spi=0x00000100,sumlen=16,seq=0x25): OSPFv3, LS-Ack, length 176 - Router-ID 1.1.1.1, Area 0.0.0.1 - Advertising Router 2.2.2.2, seq 0x80000002, age 3600s, length 12 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 2.2.2.2, seq 0x8000000b, age 5s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 2.2.2.2, seq 0x80000004, age 1s, length 12 - Network LSA (2), Area Local Scope, LSA-ID 0.0.0.5 - Advertising Router 2.2.2.2, seq 0x80000002, age 3600s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4 - Advertising Router 2.2.2.2, seq 0x80000002, age 3600s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.3 - Advertising Router 2.2.2.2, seq 0x80000002, age 3600s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.2 - Advertising Router 2.2.2.2, seq 0x80000002, age 3600s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.1 - Advertising Router 2.2.2.2, seq 0x80000004, age 1s, length 24 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.20.0 -IP6 (class 0xe0, hlim 1, next-header AH (51) payload length: 160) fe80::2 > ff02::5: AH(spi=0x00000100,sumlen=16,seq=0x1c): OSPFv3, LS-Ack, length 136 - Router-ID 2.2.2.2, Area 0.0.0.1 - Advertising Router 1.1.1.1, seq 0x8000000c, age 5s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 1.1.1.1, seq 0x80000002, age 3600s, length 12 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 1.1.1.1, seq 0x80000002, age 3600s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4 - Advertising Router 1.1.1.1, seq 0x80000002, age 3600s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.3 - Advertising Router 1.1.1.1, seq 0x80000002, age 3600s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.2 - Advertising Router 1.1.1.1, seq 0x80000002, age 3600s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.1 -IP6 (class 0xe0, hlim 1, next-header AH (51) payload length: 64) fe80::2 > ff02::5: AH(spi=0x00000100,sumlen=16,seq=0x1d): OSPFv3, Hello, length 40 - Router-ID 2.2.2.2, Area 0.0.0.1 - Options [V6, External, Router] - Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 - Designated Router 2.2.2.2, Backup Designated Router 1.1.1.1 - Neighbor List: - 1.1.1.1 -IP6 (class 0xe0, hlim 1, next-header AH (51) payload length: 84) fe80::2 > fe80::1: AH(spi=0x00000100,sumlen=16,seq=0x1e): OSPFv3, LS-Update, length 60 - Router-ID 2.2.2.2, Area 0.0.0.1 - Advertising Router 2.2.2.2, seq 0x8000000c, age 5s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Neighbor Network-ID 2.2.2.2 - Neighbor Interface-ID 0.0.0.5, Interface 0.0.0.5, metric 10 -IP6 (class 0xe0, hlim 1, next-header AH (51) payload length: 60) fe80::1 > ff02::5: AH(spi=0x00000100,sumlen=16,seq=0x26): OSPFv3, LS-Ack, length 36 - Router-ID 1.1.1.1, Area 0.0.0.1 - Advertising Router 2.2.2.2, seq 0x8000000c, age 5s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 -IP6 (class 0xe0, hlim 1, next-header AH (51) payload length: 64) fe80::1 > ff02::5: AH(spi=0x00000100,sumlen=16,seq=0x27): OSPFv3, Hello, length 40 - Router-ID 1.1.1.1, Area 0.0.0.1 - Options [V6, External, Router] - Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 - Designated Router 2.2.2.2, Backup Designated Router 1.1.1.1 - Neighbor List: - 2.2.2.2 -IP6 (class 0xe0, hlim 1, next-header AH (51) payload length: 64) fe80::2 > ff02::5: AH(spi=0x00000100,sumlen=16,seq=0x1f): OSPFv3, Hello, length 40 - Router-ID 2.2.2.2, Area 0.0.0.1 - Options [V6, External, Router] - Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 - Designated Router 2.2.2.2, Backup Designated Router 1.1.1.1 - Neighbor List: - 1.1.1.1 -IP6 (class 0xe0, hlim 1, next-header AH (51) payload length: 64) fe80::1 > ff02::5: AH(spi=0x00000100,sumlen=16,seq=0x28): OSPFv3, Hello, length 40 - Router-ID 1.1.1.1, Area 0.0.0.1 - Options [V6, External, Router] - Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 - Designated Router 2.2.2.2, Backup Designated Router 1.1.1.1 - Neighbor List: - 2.2.2.2 -IP6 (class 0xe0, hlim 1, next-header AH (51) payload length: 64) fe80::2 > ff02::5: AH(spi=0x00000100,sumlen=16,seq=0x20): OSPFv3, Hello, length 40 - Router-ID 2.2.2.2, Area 0.0.0.1 - Options [V6, External, Router] - Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 - Designated Router 2.2.2.2, Backup Designated Router 1.1.1.1 - Neighbor List: - 1.1.1.1 -IP6 (class 0xe0, hlim 1, next-header AH (51) payload length: 64) fe80::1 > ff02::5: AH(spi=0x00000100,sumlen=16,seq=0x29): OSPFv3, Hello, length 40 - Router-ID 1.1.1.1, Area 0.0.0.1 - Options [V6, External, Router] - Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 - Designated Router 2.2.2.2, Backup Designated Router 1.1.1.1 - Neighbor List: - 2.2.2.2 -IP6 (class 0xe0, hlim 1, next-header AH (51) payload length: 64) fe80::2 > ff02::5: AH(spi=0x00000100,sumlen=16,seq=0x21): OSPFv3, Hello, length 40 - Router-ID 2.2.2.2, Area 0.0.0.1 - Options [V6, External, Router] - Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 - Designated Router 2.2.2.2, Backup Designated Router 1.1.1.1 - Neighbor List: - 1.1.1.1 -IP6 (class 0xe0, hlim 1, next-header AH (51) payload length: 64) fe80::1 > ff02::5: AH(spi=0x00000100,sumlen=16,seq=0x2a): OSPFv3, Hello, length 40 - Router-ID 1.1.1.1, Area 0.0.0.1 - Options [V6, External, Router] - Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 - Designated Router 2.2.2.2, Backup Designated Router 1.1.1.1 - Neighbor List: - 2.2.2.2 -IP6 (class 0xe0, hlim 1, next-header AH (51) payload length: 64) fe80::2 > ff02::5: AH(spi=0x00000100,sumlen=16,seq=0x22): OSPFv3, Hello, length 40 - Router-ID 2.2.2.2, Area 0.0.0.1 - Options [V6, External, Router] - Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 - Designated Router 2.2.2.2, Backup Designated Router 1.1.1.1 - Neighbor List: - 1.1.1.1 -IP6 (class 0xe0, hlim 1, next-header AH (51) payload length: 64) fe80::1 > ff02::5: AH(spi=0x00000100,sumlen=16,seq=0x2b): OSPFv3, Hello, length 40 - Router-ID 1.1.1.1, Area 0.0.0.1 - Options [V6, External, Router] - Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 - Designated Router 2.2.2.2, Backup Designated Router 1.1.1.1 - Neighbor List: - 2.2.2.2 -IP6 (class 0xe0, hlim 1, next-header AH (51) payload length: 64) fe80::2 > ff02::5: AH(spi=0x00000100,sumlen=16,seq=0x23): OSPFv3, Hello, length 40 - Router-ID 2.2.2.2, Area 0.0.0.1 - Options [V6, External, Router] - Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 - Designated Router 2.2.2.2, Backup Designated Router 1.1.1.1 - Neighbor List: - 1.1.1.1 -IP6 (class 0xe0, hlim 1, next-header AH (51) payload length: 64) fe80::1 > ff02::5: AH(spi=0x00000100,sumlen=16,seq=0x2c): OSPFv3, Hello, length 40 - Router-ID 1.1.1.1, Area 0.0.0.1 - Options [V6, External, Router] - Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 - Designated Router 2.2.2.2, Backup Designated Router 1.1.1.1 - Neighbor List: - 2.2.2.2 -IP6 (class 0xe0, hlim 1, next-header AH (51) payload length: 64) fe80::2 > ff02::5: AH(spi=0x00000100,sumlen=16,seq=0x24): OSPFv3, Hello, length 40 - Router-ID 2.2.2.2, Area 0.0.0.1 - Options [V6, External, Router] - Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 - Designated Router 2.2.2.2, Backup Designated Router 1.1.1.1 - Neighbor List: - 1.1.1.1 -IP6 (class 0xe0, hlim 1, next-header AH (51) payload length: 64) fe80::1 > ff02::5: AH(spi=0x00000100,sumlen=16,seq=0x2d): OSPFv3, Hello, length 40 - Router-ID 1.1.1.1, Area 0.0.0.1 - Options [V6, External, Router] - Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 - Designated Router 2.2.2.2, Backup Designated Router 1.1.1.1 - Neighbor List: - 2.2.2.2 -IP6 (class 0xe0, hlim 1, next-header AH (51) payload length: 64) fe80::2 > ff02::5: AH(spi=0x00000100,sumlen=16,seq=0x25): OSPFv3, Hello, length 40 - Router-ID 2.2.2.2, Area 0.0.0.1 - Options [V6, External, Router] - Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 - Designated Router 2.2.2.2, Backup Designated Router 1.1.1.1 - Neighbor List: - 1.1.1.1 -IP6 (class 0xe0, hlim 1, next-header AH (51) payload length: 64) fe80::1 > ff02::5: AH(spi=0x00000100,sumlen=16,seq=0x2e): OSPFv3, Hello, length 40 - Router-ID 1.1.1.1, Area 0.0.0.1 - Options [V6, External, Router] - Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 - Designated Router 2.2.2.2, Backup Designated Router 1.1.1.1 - Neighbor List: - 2.2.2.2 -IP6 (class 0xe0, hlim 1, next-header AH (51) payload length: 64) fe80::2 > ff02::5: AH(spi=0x00000100,sumlen=16,seq=0x26): OSPFv3, Hello, length 40 - Router-ID 2.2.2.2, Area 0.0.0.1 - Options [V6, External, Router] - Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 - Designated Router 2.2.2.2, Backup Designated Router 1.1.1.1 - Neighbor List: - 1.1.1.1 -IP6 (class 0xe0, hlim 1, next-header AH (51) payload length: 64) fe80::1 > ff02::5: AH(spi=0x00000100,sumlen=16,seq=0x2f): OSPFv3, Hello, length 40 - Router-ID 1.1.1.1, Area 0.0.0.1 - Options [V6, External, Router] - Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 - Designated Router 2.2.2.2, Backup Designated Router 1.1.1.1 - Neighbor List: - 2.2.2.2 -IP6 (class 0xe0, hlim 1, next-header AH (51) payload length: 64) fe80::2 > ff02::5: AH(spi=0x00000100,sumlen=16,seq=0x27): OSPFv3, Hello, length 40 - Router-ID 2.2.2.2, Area 0.0.0.1 - Options [V6, External, Router] - Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 - Designated Router 2.2.2.2, Backup Designated Router 1.1.1.1 - Neighbor List: - 1.1.1.1 -IP6 (class 0xe0, hlim 1, next-header AH (51) payload length: 64) fe80::1 > ff02::5: AH(spi=0x00000100,sumlen=16,seq=0x30): OSPFv3, Hello, length 40 - Router-ID 1.1.1.1, Area 0.0.0.1 - Options [V6, External, Router] - Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 - Designated Router 2.2.2.2, Backup Designated Router 1.1.1.1 - Neighbor List: - 2.2.2.2 -IP6 (class 0xe0, hlim 1, next-header AH (51) payload length: 64) fe80::2 > ff02::5: AH(spi=0x00000100,sumlen=16,seq=0x28): OSPFv3, Hello, length 40 - Router-ID 2.2.2.2, Area 0.0.0.1 - Options [V6, External, Router] - Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 - Designated Router 2.2.2.2, Backup Designated Router 1.1.1.1 - Neighbor List: - 1.1.1.1 -IP6 (class 0xe0, hlim 1, next-header AH (51) payload length: 64) fe80::1 > ff02::5: AH(spi=0x00000100,sumlen=16,seq=0x31): OSPFv3, Hello, length 40 - Router-ID 1.1.1.1, Area 0.0.0.1 - Options [V6, External, Router] - Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 - Designated Router 2.2.2.2, Backup Designated Router 1.1.1.1 - Neighbor List: - 2.2.2.2 -IP6 (class 0xe0, hlim 1, next-header AH (51) payload length: 64) fe80::2 > ff02::5: AH(spi=0x00000100,sumlen=16,seq=0x29): OSPFv3, Hello, length 40 - Router-ID 2.2.2.2, Area 0.0.0.1 - Options [V6, External, Router] - Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 - Designated Router 2.2.2.2, Backup Designated Router 1.1.1.1 - Neighbor List: - 1.1.1.1 -IP6 (class 0xe0, hlim 1, next-header AH (51) payload length: 64) fe80::1 > ff02::5: AH(spi=0x00000100,sumlen=16,seq=0x32): OSPFv3, Hello, length 40 - Router-ID 1.1.1.1, Area 0.0.0.1 - Options [V6, External, Router] - Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 - Designated Router 2.2.2.2, Backup Designated Router 1.1.1.1 - Neighbor List: - 2.2.2.2 diff --git a/tests/ospf3_auth-vv.out b/tests/ospf3_auth-vv.out deleted file mode 100644 index 69b7c26..0000000 --- a/tests/ospf3_auth-vv.out +++ /dev/null @@ -1,10 +0,0 @@ -IP6 (class 0xc0, hlim 1, next-header OSPF (89) payload length: 88) fe80::20c:29ff:fe9e:c1b2 > ff02::5: OSPFv3, Hello, length 88 - Router-ID 10.10.10.2, Backbone Area - Options [V6, External, Router, Authentication Trailer] - Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.2, Priority 1 - Designated Router 10.10.10.1, Backup Designated Router 10.10.10.2 - Neighbor List: - 10.10.10.1 - Authentication Type HMAC, Length 48, SAID 1, CSN 0x00000000:52da4e0e - Authentication Data 0x0000: ca4d 7d58 69a5 da3c 2a69 0eda a732 9bee - Authentication Data 0x0010: 9d7f 448c 9f31 fbe4 a0e9 b39c 6da6 cca1 diff --git a/tests/ospf3_auth.pcap b/tests/ospf3_auth.pcap deleted file mode 100644 index 4b5bc81..0000000 Binary files a/tests/ospf3_auth.pcap and /dev/null differ diff --git a/tests/ospf3_bc-vv.out b/tests/ospf3_bc-vv.out deleted file mode 100644 index 3cc3f36..0000000 --- a/tests/ospf3_bc-vv.out +++ /dev/null @@ -1,335 +0,0 @@ -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 36) fe80::1 > ff02::5: OSPFv3, Hello, length 36 - Router-ID 1.1.1.1, Area 0.0.0.1 - Options [V6, External, Router] - Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 - Neighbor List: -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 36) fe80::1 > ff02::5: OSPFv3, Hello, length 36 - Router-ID 1.1.1.1, Area 0.0.0.1 - Options [V6, External, Router] - Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 - Neighbor List: -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 36) fe80::1 > ff02::5: OSPFv3, Hello, length 36 - Router-ID 1.1.1.1, Area 0.0.0.1 - Options [V6, External, Router] - Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 - Neighbor List: -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 36) fe80::1 > ff02::5: OSPFv3, Hello, length 36 - Router-ID 1.1.1.1, Area 0.0.0.1 - Options [V6, External, Router] - Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 - Neighbor List: -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 36) fe80::2 > ff02::5: OSPFv3, Hello, length 36 - Router-ID 2.2.2.2, Area 0.0.0.1 - Options [V6, External, Router] - Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 - Neighbor List: -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 40) fe80::1 > ff02::5: OSPFv3, Hello, length 40 - Router-ID 1.1.1.1, Area 0.0.0.1 - Options [V6, External, Router] - Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 - Designated Router 1.1.1.1 - Neighbor List: - 2.2.2.2 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 28) fe80::2 > fe80::1: OSPFv3, Database Description, length 28 - Router-ID 2.2.2.2, Area 0.0.0.1 - Options [V6, External, Router], DD Flags [Init, More, Master], MTU 1500, DD-Sequence 0x00001d46 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 28) fe80::1 > fe80::2: OSPFv3, Database Description, length 28 - Router-ID 1.1.1.1, Area 0.0.0.1 - Options [V6, External, Router], DD Flags [Init, More, Master], MTU 1500, DD-Sequence 0x0000242c -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 168) fe80::1 > fe80::2: OSPFv3, Database Description, length 168 - Router-ID 1.1.1.1, Area 0.0.0.1 - Options [V6, External, Router], DD Flags [More], MTU 1500, DD-Sequence 0x00001d46 - Advertising Router 1.1.1.1, seq 0x80000002, age 39s, length 4 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 1.1.1.1, seq 0x80000001, age 40s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 1.1.1.1, seq 0x80000001, age 40s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.1 - Advertising Router 1.1.1.1, seq 0x80000001, age 40s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.2 - Advertising Router 1.1.1.1, seq 0x80000001, age 40s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.3 - Advertising Router 1.1.1.1, seq 0x80000002, age 34s, length 36 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.5 - Advertising Router 1.1.1.1, seq 0x80000001, age 34s, length 24 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 148) fe80::2 > fe80::1: OSPFv3, Database Description, length 148 - Router-ID 2.2.2.2, Area 0.0.0.1 - Options [V6, External, Router], DD Flags [More, Master], MTU 1500, DD-Sequence 0x00001d47 - Advertising Router 2.2.2.2, seq 0x80000002, age 4s, length 4 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 2.2.2.2, seq 0x80000001, age 5s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 2.2.2.2, seq 0x80000001, age 5s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.1 - Advertising Router 2.2.2.2, seq 0x80000001, age 5s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.2 - Advertising Router 2.2.2.2, seq 0x80000001, age 5s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.3 - Advertising Router 2.2.2.2, seq 0x80000001, age 4s, length 24 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.5 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 28) fe80::1 > fe80::2: OSPFv3, Database Description, length 28 - Router-ID 1.1.1.1, Area 0.0.0.1 - Options [V6, External, Router], DD Flags [none], MTU 1500, DD-Sequence 0x00001d47 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 100) fe80::2 > fe80::1: OSPFv3, LS-Request, length 100 - Router-ID 2.2.2.2, Area 0.0.0.1 - Advertising Router 1.1.1.1 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 1.1.1.1 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.3 - Advertising Router 1.1.1.1 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.2 - Advertising Router 1.1.1.1 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.1 - Advertising Router 1.1.1.1 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 1.1.1.1 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.5 - Advertising Router 1.1.1.1 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 88) fe80::1 > fe80::2: OSPFv3, LS-Request, length 88 - Router-ID 1.1.1.1, Area 0.0.0.1 - Advertising Router 2.2.2.2 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 2.2.2.2 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.3 - Advertising Router 2.2.2.2 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.2 - Advertising Router 2.2.2.2 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.1 - Advertising Router 2.2.2.2 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 2.2.2.2 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.5 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 28) fe80::2 > fe80::1: OSPFv3, Database Description, length 28 - Router-ID 2.2.2.2, Area 0.0.0.1 - Options [V6, External, Router], DD Flags [Master], MTU 1500, DD-Sequence 0x00001d48 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 288) fe80::1 > fe80::2: OSPFv3, LS-Update, length 288 - Router-ID 1.1.1.1, Area 0.0.0.1 - Advertising Router 1.1.1.1, seq 0x80000002, age 40s, length 4 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Advertising Router 1.1.1.1, seq 0x80000001, age 41s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.3, metric 74 - 2001:db8:0:3::/64, metric 0 - Advertising Router 1.1.1.1, seq 0x80000001, age 41s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.2, metric 84 - 2001:db8:0:4::/64, metric 0 - Advertising Router 1.1.1.1, seq 0x80000001, age 41s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.1, metric 74 - 2001:db8:0:34::/64, metric 0 - Advertising Router 1.1.1.1, seq 0x80000001, age 41s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.0, metric 64 - 2001:db8::/64, metric 0 - Advertising Router 1.1.1.1, seq 0x80000002, age 35s, length 36 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.5 - Options [V6, External, Router, Demand Circuit] - Priority 1, Link-local address fe80::1, Prefixes 1: - 2001:db8:0:12::/64, metric 0 - Advertising Router 1.1.1.1, seq 0x80000001, age 35s, length 24 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Prefixes 1: - 2001:db8:0:12::/64, metric 10 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 232) fe80::2 > fe80::1: OSPFv3, LS-Update, length 232 - Router-ID 2.2.2.2, Area 0.0.0.1 - Advertising Router 2.2.2.2, seq 0x80000002, age 5s, length 4 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Advertising Router 2.2.2.2, seq 0x80000001, age 6s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.3, metric 74 - 2001:db8:0:3::/64, metric 0 - Advertising Router 2.2.2.2, seq 0x80000001, age 6s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.2, metric 84 - 2001:db8:0:4::/64, metric 0 - Advertising Router 2.2.2.2, seq 0x80000001, age 6s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.1, metric 74 - 2001:db8:0:34::/64, metric 0 - Advertising Router 2.2.2.2, seq 0x80000001, age 6s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.0, metric 64 - 2001:db8::/64, metric 0 - Advertising Router 2.2.2.2, seq 0x80000001, age 5s, length 24 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.5 - Options [V6, External, Router, Demand Circuit] - Priority 1, Link-local address fe80::2, Prefixes 0: -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 28) fe80::1 > fe80::2: OSPFv3, Database Description, length 28 - Router-ID 1.1.1.1, Area 0.0.0.1 - Options [V6, External, Router], DD Flags [none], MTU 1500, DD-Sequence 0x00001d48 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 60) fe80::2 > ff02::5: OSPFv3, LS-Update, length 60 - Router-ID 2.2.2.2, Area 0.0.0.1 - Advertising Router 2.2.2.2, seq 0x80000003, age 1s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Neighbor Network-ID 1.1.1.1 - Neighbor Interface-ID 0.0.0.5, Interface 0.0.0.5, metric 10 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 168) fe80::1 > ff02::5: OSPFv3, LS-Update, length 168 - Router-ID 1.1.1.1, Area 0.0.0.1 - Advertising Router 1.1.1.1, seq 0x80000001, age 1s, length 12 - Network LSA (2), Area Local Scope, LSA-ID 0.0.0.5 - Options [V6, External, Router, Demand Circuit] - Connected Routers: - 1.1.1.1 - 2.2.2.2 - Advertising Router 1.1.1.1, seq 0x80000001, age 1s, length 24 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.20.0 - Network LSA (2), Area Local Scope, LSA-ID 0.0.0.5 - Prefixes 1: - 2001:db8:0:12::/64, metric 0 - Advertising Router 1.1.1.1, seq 0x80000002, age 3600s, length 12 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Prefixes 0: - Advertising Router 1.1.1.1, seq 0x80000003, age 1s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Neighbor Network-ID 1.1.1.1 - Neighbor Interface-ID 0.0.0.5, Interface 0.0.0.5, metric 10 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 76) fe80::2 > ff02::5: OSPFv3, LS-Update, length 76 - Router-ID 2.2.2.2, Area 0.0.0.1 - Advertising Router 2.2.2.2, seq 0x80000002, age 1s, length 36 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.5 - Options [V6, External, Router, Demand Circuit] - Priority 1, Link-local address fe80::2, Prefixes 1: - 2001:db8:0:12::/64, metric 0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 136) fe80::1 > ff02::5: OSPFv3, LS-Ack, length 136 - Router-ID 1.1.1.1, Area 0.0.0.1 - Advertising Router 2.2.2.2, seq 0x80000002, age 5s, length 4 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 2.2.2.2, seq 0x80000001, age 6s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.3 - Advertising Router 2.2.2.2, seq 0x80000001, age 6s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.2 - Advertising Router 2.2.2.2, seq 0x80000001, age 6s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.1 - Advertising Router 2.2.2.2, seq 0x80000001, age 6s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 2.2.2.2, seq 0x80000001, age 5s, length 24 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.5 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 196) fe80::2 > ff02::5: OSPFv3, LS-Ack, length 196 - Router-ID 2.2.2.2, Area 0.0.0.1 - Advertising Router 1.1.1.1, seq 0x80000002, age 40s, length 4 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 1.1.1.1, seq 0x80000001, age 41s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.3 - Advertising Router 1.1.1.1, seq 0x80000001, age 41s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.2 - Advertising Router 1.1.1.1, seq 0x80000001, age 41s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.1 - Advertising Router 1.1.1.1, seq 0x80000001, age 41s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 1.1.1.1, seq 0x80000002, age 35s, length 36 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.5 - Advertising Router 1.1.1.1, seq 0x80000001, age 35s, length 24 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 1.1.1.1, seq 0x80000001, age 1s, length 12 - Network LSA (2), Area Local Scope, LSA-ID 0.0.0.5 - Advertising Router 1.1.1.1, seq 0x80000001, age 1s, length 24 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.20.0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 40) fe80::2 > ff02::5: OSPFv3, Hello, length 40 - Router-ID 2.2.2.2, Area 0.0.0.1 - Options [V6, External, Router] - Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 - Designated Router 1.1.1.1, Backup Designated Router 2.2.2.2 - Neighbor List: - 1.1.1.1 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 60) fe80::2 > fe80::1: OSPFv3, LS-Update, length 60 - Router-ID 2.2.2.2, Area 0.0.0.1 - Advertising Router 2.2.2.2, seq 0x80000003, age 5s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Neighbor Network-ID 1.1.1.1 - Neighbor Interface-ID 0.0.0.5, Interface 0.0.0.5, metric 10 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 92) fe80::1 > fe80::2: OSPFv3, LS-Update, length 92 - Router-ID 1.1.1.1, Area 0.0.0.1 - Advertising Router 1.1.1.1, seq 0x80000002, age 3600s, length 12 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Prefixes 0: - Advertising Router 1.1.1.1, seq 0x80000003, age 6s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Neighbor Network-ID 1.1.1.1 - Neighbor Interface-ID 0.0.0.5, Interface 0.0.0.5, metric 10 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 60) fe80::1 > ff02::5: OSPFv3, LS-Update, length 60 - Router-ID 1.1.1.1, Area 0.0.0.1 - Advertising Router 1.1.1.1, seq 0x80000004, age 1s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Neighbor Network-ID 1.1.1.1 - Neighbor Interface-ID 0.0.0.5, Interface 0.0.0.5, metric 10 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 76) fe80::2 > fe80::1: OSPFv3, LS-Update, length 76 - Router-ID 2.2.2.2, Area 0.0.0.1 - Advertising Router 2.2.2.2, seq 0x80000002, age 5s, length 36 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.5 - Options [V6, External, Router, Demand Circuit] - Priority 1, Link-local address fe80::2, Prefixes 1: - 2001:db8:0:12::/64, metric 0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 56) fe80::1 > ff02::5: OSPFv3, LS-Ack, length 56 - Router-ID 1.1.1.1, Area 0.0.0.1 - Advertising Router 2.2.2.2, seq 0x80000003, age 5s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 2.2.2.2, seq 0x80000002, age 5s, length 36 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.5 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 56) fe80::2 > ff02::5: OSPFv3, LS-Ack, length 56 - Router-ID 2.2.2.2, Area 0.0.0.1 - Advertising Router 1.1.1.1, seq 0x80000002, age 3600s, length 12 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 1.1.1.1, seq 0x80000003, age 6s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 40) fe80::1 > ff02::5: OSPFv3, Hello, length 40 - Router-ID 1.1.1.1, Area 0.0.0.1 - Options [V6, External, Router] - Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 - Designated Router 1.1.1.1, Backup Designated Router 2.2.2.2 - Neighbor List: - 2.2.2.2 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 60) fe80::1 > fe80::2: OSPFv3, LS-Update, length 60 - Router-ID 1.1.1.1, Area 0.0.0.1 - Advertising Router 1.1.1.1, seq 0x80000004, age 5s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Neighbor Network-ID 1.1.1.1 - Neighbor Interface-ID 0.0.0.5, Interface 0.0.0.5, metric 10 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 60) fe80::2 > ff02::5: OSPFv3, LS-Update, length 60 - Router-ID 2.2.2.2, Area 0.0.0.1 - Advertising Router 2.2.2.2, seq 0x80000004, age 1s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Neighbor Network-ID 1.1.1.1 - Neighbor Interface-ID 0.0.0.5, Interface 0.0.0.5, metric 10 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 36) fe80::2 > ff02::5: OSPFv3, LS-Ack, length 36 - Router-ID 2.2.2.2, Area 0.0.0.1 - Advertising Router 1.1.1.1, seq 0x80000004, age 5s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 36) fe80::1 > ff02::5: OSPFv3, LS-Ack, length 36 - Router-ID 1.1.1.1, Area 0.0.0.1 - Advertising Router 2.2.2.2, seq 0x80000004, age 1s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 40) fe80::2 > ff02::5: OSPFv3, Hello, length 40 - Router-ID 2.2.2.2, Area 0.0.0.1 - Options [V6, External, Router] - Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 - Designated Router 1.1.1.1, Backup Designated Router 2.2.2.2 - Neighbor List: - 1.1.1.1 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 40) fe80::1 > ff02::5: OSPFv3, Hello, length 40 - Router-ID 1.1.1.1, Area 0.0.0.1 - Options [V6, External, Router] - Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 - Designated Router 1.1.1.1, Backup Designated Router 2.2.2.2 - Neighbor List: - 2.2.2.2 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 40) fe80::2 > ff02::5: OSPFv3, Hello, length 40 - Router-ID 2.2.2.2, Area 0.0.0.1 - Options [V6, External, Router] - Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 - Designated Router 1.1.1.1, Backup Designated Router 2.2.2.2 - Neighbor List: - 1.1.1.1 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 40) fe80::1 > ff02::5: OSPFv3, Hello, length 40 - Router-ID 1.1.1.1, Area 0.0.0.1 - Options [V6, External, Router] - Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 - Designated Router 1.1.1.1, Backup Designated Router 2.2.2.2 - Neighbor List: - 2.2.2.2 diff --git a/tests/ospf3_mp-vv.out b/tests/ospf3_mp-vv.out deleted file mode 100644 index ee1ef04..0000000 --- a/tests/ospf3_mp-vv.out +++ /dev/null @@ -1,817 +0,0 @@ -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 36) fe80::3 > ff02::5: OSPFv3, Hello, length 36 - Router-ID 3.3.3.3, Backbone Area - Options [V6, External, Router] - Hello Timer 30s, Dead Timer 120s, Interface-ID 0.0.0.6, Priority 100 - Neighbor List: -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 36) fe80::3 > ff02::5: OSPFv3, Hello, length 36 - Router-ID 3.3.3.3, Backbone Area - Options [V6, External, Router] - Hello Timer 30s, Dead Timer 120s, Interface-ID 0.0.0.6, Priority 100 - Neighbor List: -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 36) fe80::3 > ff02::5: OSPFv3, Hello, length 36 - Router-ID 3.3.3.3, Backbone Area - Options [V6, External, Router] - Hello Timer 30s, Dead Timer 120s, Interface-ID 0.0.0.6, Priority 100 - Neighbor List: -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 36) fe80::3 > ff02::5: OSPFv3, Hello, length 36 - Router-ID 3.3.3.3, Backbone Area - Options [V6, External, Router] - Hello Timer 30s, Dead Timer 120s, Interface-ID 0.0.0.6, Priority 100 - Neighbor List: -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 40) fe80::1 > ff02::5: OSPFv3, Hello, length 40 - Router-ID 1.1.1.1, Backbone Area - Options [V6, External, Router] - Hello Timer 30s, Dead Timer 120s, Interface-ID 0.0.0.6, Priority 1 - Neighbor List: - 3.3.3.3 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 40) fe80::1 > ff02::5: OSPFv3, Hello, length 40 - Router-ID 1.1.1.1, Backbone Area - Options [V6, External, Router] - Hello Timer 30s, Dead Timer 120s, Interface-ID 0.0.0.6, Priority 1 - Neighbor List: - 3.3.3.3 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 28) fe80::3 > fe80::1: OSPFv3, Database Description, length 28 - Router-ID 3.3.3.3, Backbone Area - Options [V6, External, Router], DD Flags [Init, More, Master], MTU 1500, DD-Sequence 0x00000bbd -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 28) fe80::1 > fe80::3: OSPFv3, Database Description, length 28 - Router-ID 1.1.1.1, Backbone Area - Options [V6, External, Router], DD Flags [Init, More, Master], MTU 1500, DD-Sequence 0x000015b5 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 268) fe80::1 > fe80::3: OSPFv3, Database Description, length 268 - Router-ID 1.1.1.1, Backbone Area - Options [V6, External, Router], DD Flags [More], MTU 1500, DD-Sequence 0x00000bbd - Advertising Router 1.1.1.1, seq 0x80000012, age 29s, length 4 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 2.2.2.2, seq 0x8000000f, age 436s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 3.3.3.3, seq 0x8000000a, age 445s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 3.3.3.3, seq 0x80000002, age 476s, length 16 - Network LSA (2), Area Local Scope, LSA-ID 0.0.0.6 - Advertising Router 1.1.1.1, seq 0x80000001, age 30s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.5 - Advertising Router 2.2.2.2, seq 0x80000001, age 810s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4 - Advertising Router 3.3.3.3, seq 0x80000001, age 605s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 3.3.3.3, seq 0x80000001, age 605s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.1 - Advertising Router 3.3.3.3, seq 0x80000001, age 595s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.2 - Advertising Router 1.1.1.1, seq 0x80000001, age 29s, length 36 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.6 - Advertising Router 1.1.1.1, seq 0x80000001, age 29s, length 32 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 3.3.3.3, seq 0x80000002, age 476s, length 24 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.24.0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 228) fe80::3 > fe80::1: OSPFv3, Database Description, length 228 - Router-ID 3.3.3.3, Backbone Area - Options [V6, External, Router], DD Flags [More, Master], MTU 1500, DD-Sequence 0x00000bbe - Advertising Router 1.1.1.1, seq 0x8000000f, age 435s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 2.2.2.2, seq 0x8000000f, age 435s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 3.3.3.3, seq 0x8000000d, age 32s, length 4 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 1.1.1.1, seq 0x80000001, age 811s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4 - Advertising Router 2.2.2.2, seq 0x80000001, age 809s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4 - Advertising Router 3.3.3.3, seq 0x80000001, age 32s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.3 - Advertising Router 3.3.3.3, seq 0x80000001, age 32s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4 - Advertising Router 3.3.3.3, seq 0x80000001, age 32s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.5 - Advertising Router 3.3.3.3, seq 0x80000001, age 32s, length 36 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.6 - Advertising Router 3.3.3.3, seq 0x80000001, age 32s, length 32 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 124) fe80::3 > fe80::1: OSPFv3, LS-Request, length 124 - Router-ID 3.3.3.3, Backbone Area - Advertising Router 1.1.1.1 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 3.3.3.3 - Network LSA (2), Area Local Scope, LSA-ID 0.0.0.6 - Advertising Router 3.3.3.3 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.2 - Advertising Router 3.3.3.3 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.1 - Advertising Router 3.3.3.3 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 1.1.1.1 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.5 - Advertising Router 1.1.1.1 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.6 - Advertising Router 3.3.3.3 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.24.0 - Advertising Router 1.1.1.1 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 28) fe80::1 > fe80::3: OSPFv3, Database Description, length 28 - Router-ID 1.1.1.1, Backbone Area - Options [V6, External, Router], DD Flags [none], MTU 1500, DD-Sequence 0x00000bbe -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 100) fe80::1 > fe80::3: OSPFv3, LS-Request, length 100 - Router-ID 1.1.1.1, Backbone Area - Advertising Router 3.3.3.3 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 3.3.3.3 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.5 - Advertising Router 3.3.3.3 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4 - Advertising Router 3.3.3.3 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.3 - Advertising Router 1.1.1.1 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4 - Advertising Router 3.3.3.3 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.6 - Advertising Router 3.3.3.3 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 28) fe80::3 > fe80::1: OSPFv3, Database Description, length 28 - Router-ID 3.3.3.3, Backbone Area - Options [V6, External, Router], DD Flags [Master], MTU 1500, DD-Sequence 0x00000bbf -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 296) fe80::3 > fe80::1: OSPFv3, LS-Update, length 296 - Router-ID 3.3.3.3, Backbone Area - Advertising Router 3.3.3.3, seq 0x8000000d, age 33s, length 4 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Advertising Router 3.3.3.3, seq 0x80000001, age 33s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.5, metric 10 - 2001:db8:0:34::/64, metric 0 - Advertising Router 3.3.3.3, seq 0x80000001, age 33s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4, metric 20 - 2001:db8:0:4::/64, metric 0 - Advertising Router 3.3.3.3, seq 0x80000001, age 33s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.3, metric 10 - 2001:db8:0:3::/64, metric 0 - Advertising Router 1.1.1.1, seq 0x80000001, age 812s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4, metric 10 - 2001:db8:0:12::/64, metric 0 - Advertising Router 3.3.3.3, seq 0x80000001, age 33s, length 36 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.6 - Options [V6, External, Router, Demand Circuit] - Priority 100, Link-local address fe80::3, Prefixes 1: - 2001:db8::/64, metric 0 - Advertising Router 3.3.3.3, seq 0x80000001, age 33s, length 32 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Prefixes 1: - 2001:db8::3/128, Options [Local address], metric 0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 376) fe80::1 > fe80::3: OSPFv3, LS-Update, length 376 - Router-ID 1.1.1.1, Backbone Area - Advertising Router 1.1.1.1, seq 0x80000012, age 30s, length 4 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Advertising Router 3.3.3.3, seq 0x80000002, age 477s, length 16 - Network LSA (2), Area Local Scope, LSA-ID 0.0.0.6 - Options [V6, External, Router, Demand Circuit] - Connected Routers: - 3.3.3.3 - 2.2.2.2 - 1.1.1.1 - Advertising Router 3.3.3.3, seq 0x80000001, age 596s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.2, metric 20 - 2001:db8:0:4::/64, metric 0 - Advertising Router 3.3.3.3, seq 0x80000001, age 606s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.1, metric 10 - 2001:db8:0:34::/64, metric 0 - Advertising Router 3.3.3.3, seq 0x80000001, age 606s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.0, metric 10 - 2001:db8:0:3::/64, metric 0 - Advertising Router 1.1.1.1, seq 0x80000001, age 31s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.5, metric 10 - 2001:db8:0:12::/64, metric 0 - Advertising Router 1.1.1.1, seq 0x80000001, age 30s, length 36 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.6 - Options [V6, External, Router, Demand Circuit] - Priority 1, Link-local address fe80::1, Prefixes 1: - 2001:db8::/64, metric 0 - Advertising Router 3.3.3.3, seq 0x80000002, age 477s, length 24 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.24.0 - Network LSA (2), Area Local Scope, LSA-ID 0.0.0.6 - Prefixes 1: - 2001:db8::/64, metric 0 - Advertising Router 1.1.1.1, seq 0x80000001, age 30s, length 32 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Prefixes 1: - 2001:db8::1/128, Options [Local address], metric 0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 28) fe80::1 > fe80::3: OSPFv3, Database Description, length 28 - Router-ID 1.1.1.1, Backbone Area - Options [V6, External, Router], DD Flags [none], MTU 1500, DD-Sequence 0x00000bbf -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 60) fe80::3 > fe80::1: OSPFv3, LS-Update, length 60 - Router-ID 3.3.3.3, Backbone Area - Advertising Router 3.3.3.3, seq 0x8000000e, age 1s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Neighbor Router-ID 1.1.1.1 - Neighbor Interface-ID 0.0.0.6, Interface 0.0.0.6, metric 64 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 60) fe80::1 > fe80::3: OSPFv3, LS-Update, length 60 - Router-ID 1.1.1.1, Backbone Area - Advertising Router 1.1.1.1, seq 0x80000013, age 1s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Neighbor Router-ID 3.3.3.3 - Neighbor Interface-ID 0.0.0.6, Interface 0.0.0.6, metric 64 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 40) fe80::2 > ff02::5: OSPFv3, Hello, length 40 - Router-ID 2.2.2.2, Backbone Area - Options [V6, External, Router] - Hello Timer 30s, Dead Timer 120s, Interface-ID 0.0.0.6, Priority 1 - Neighbor List: - 3.3.3.3 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 40) fe80::2 > ff02::5: OSPFv3, Hello, length 40 - Router-ID 2.2.2.2, Backbone Area - Options [V6, External, Router] - Hello Timer 30s, Dead Timer 120s, Interface-ID 0.0.0.6, Priority 1 - Neighbor List: - 3.3.3.3 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 28) fe80::3 > fe80::2: OSPFv3, Database Description, length 28 - Router-ID 3.3.3.3, Backbone Area - Options [V6, External, Router], DD Flags [Init, More, Master], MTU 1500, DD-Sequence 0x00000d54 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 196) fe80::3 > fe80::2: OSPFv3, LS-Ack, length 196 - Router-ID 3.3.3.3, Backbone Area - Advertising Router 1.1.1.1, seq 0x80000012, age 30s, length 4 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 3.3.3.3, seq 0x80000002, age 477s, length 16 - Network LSA (2), Area Local Scope, LSA-ID 0.0.0.6 - Advertising Router 3.3.3.3, seq 0x80000001, age 596s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.2 - Advertising Router 3.3.3.3, seq 0x80000001, age 606s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.1 - Advertising Router 3.3.3.3, seq 0x80000001, age 606s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 1.1.1.1, seq 0x80000001, age 31s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.5 - Advertising Router 1.1.1.1, seq 0x80000001, age 30s, length 36 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.6 - Advertising Router 3.3.3.3, seq 0x80000002, age 477s, length 24 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.24.0 - Advertising Router 1.1.1.1, seq 0x80000001, age 30s, length 32 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 28) fe80::2 > fe80::3: OSPFv3, Database Description, length 28 - Router-ID 2.2.2.2, Backbone Area - Options [V6, External, Router], DD Flags [Init, More, Master], MTU 1500, DD-Sequence 0x00000b59 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 268) fe80::2 > fe80::3: OSPFv3, Database Description, length 268 - Router-ID 2.2.2.2, Backbone Area - Options [V6, External, Router], DD Flags [More], MTU 1500, DD-Sequence 0x00000d54 - Advertising Router 1.1.1.1, seq 0x8000000f, age 439s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 2.2.2.2, seq 0x80000012, age 29s, length 4 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 3.3.3.3, seq 0x8000000a, age 448s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 3.3.3.3, seq 0x80000002, age 478s, length 16 - Network LSA (2), Area Local Scope, LSA-ID 0.0.0.6 - Advertising Router 1.1.1.1, seq 0x80000001, age 814s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4 - Advertising Router 2.2.2.2, seq 0x80000001, age 30s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.5 - Advertising Router 3.3.3.3, seq 0x80000001, age 608s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 3.3.3.3, seq 0x80000001, age 608s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.1 - Advertising Router 3.3.3.3, seq 0x80000001, age 598s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.2 - Advertising Router 2.2.2.2, seq 0x80000001, age 29s, length 36 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.6 - Advertising Router 2.2.2.2, seq 0x80000001, age 29s, length 32 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 3.3.3.3, seq 0x80000002, age 478s, length 24 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.24.0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 156) fe80::1 > fe80::3: OSPFv3, LS-Ack, length 156 - Router-ID 1.1.1.1, Backbone Area - Advertising Router 3.3.3.3, seq 0x8000000d, age 33s, length 4 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 3.3.3.3, seq 0x80000001, age 33s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.5 - Advertising Router 3.3.3.3, seq 0x80000001, age 33s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4 - Advertising Router 3.3.3.3, seq 0x80000001, age 33s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.3 - Advertising Router 1.1.1.1, seq 0x80000001, age 812s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4 - Advertising Router 3.3.3.3, seq 0x80000001, age 33s, length 36 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.6 - Advertising Router 3.3.3.3, seq 0x80000001, age 33s, length 32 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 196) fe80::3 > fe80::1: OSPFv3, LS-Ack, length 196 - Router-ID 3.3.3.3, Backbone Area - Advertising Router 1.1.1.1, seq 0x80000012, age 30s, length 4 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 3.3.3.3, seq 0x80000002, age 477s, length 16 - Network LSA (2), Area Local Scope, LSA-ID 0.0.0.6 - Advertising Router 3.3.3.3, seq 0x80000001, age 596s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.2 - Advertising Router 3.3.3.3, seq 0x80000001, age 606s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.1 - Advertising Router 3.3.3.3, seq 0x80000001, age 606s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 1.1.1.1, seq 0x80000001, age 31s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.5 - Advertising Router 1.1.1.1, seq 0x80000001, age 30s, length 36 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.6 - Advertising Router 3.3.3.3, seq 0x80000002, age 477s, length 24 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.24.0 - Advertising Router 1.1.1.1, seq 0x80000001, age 30s, length 32 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 368) fe80::3 > fe80::2: OSPFv3, Database Description, length 368 - Router-ID 3.3.3.3, Backbone Area - Options [V6, External, Router], DD Flags [More, Master], MTU 1500, DD-Sequence 0x00000d55 - Advertising Router 1.1.1.1, seq 0x80000012, age 32s, length 4 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 2.2.2.2, seq 0x8000000f, age 438s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 3.3.3.3, seq 0x8000000e, age 2s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 3.3.3.3, seq 0x80000002, age 479s, length 16 - Network LSA (2), Area Local Scope, LSA-ID 0.0.0.6 - Advertising Router 1.1.1.1, seq 0x80000001, age 814s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4 - Advertising Router 1.1.1.1, seq 0x80000001, age 33s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.5 - Advertising Router 2.2.2.2, seq 0x80000001, age 811s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4 - Advertising Router 3.3.3.3, seq 0x80000001, age 608s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 3.3.3.3, seq 0x80000001, age 608s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.1 - Advertising Router 3.3.3.3, seq 0x80000001, age 598s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.2 - Advertising Router 3.3.3.3, seq 0x80000001, age 35s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.3 - Advertising Router 3.3.3.3, seq 0x80000001, age 35s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4 - Advertising Router 3.3.3.3, seq 0x80000001, age 35s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.5 - Advertising Router 3.3.3.3, seq 0x80000001, age 34s, length 36 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.6 - Advertising Router 1.1.1.1, seq 0x80000001, age 32s, length 32 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 3.3.3.3, seq 0x80000001, age 34s, length 32 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 3.3.3.3, seq 0x80000002, age 479s, length 24 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.24.0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 28) fe80::2 > fe80::3: OSPFv3, Database Description, length 28 - Router-ID 2.2.2.2, Backbone Area - Options [V6, External, Router], DD Flags [none], MTU 1500, DD-Sequence 0x00000d55 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 136) fe80::2 > fe80::3: OSPFv3, LS-Request, length 136 - Router-ID 2.2.2.2, Backbone Area - Advertising Router 3.3.3.3 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 1.1.1.1 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 3.3.3.3 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.5 - Advertising Router 3.3.3.3 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4 - Advertising Router 3.3.3.3 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.3 - Advertising Router 2.2.2.2 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4 - Advertising Router 1.1.1.1 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.5 - Advertising Router 3.3.3.3 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.6 - Advertising Router 3.3.3.3 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 1.1.1.1 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 64) fe80::3 > fe80::2: OSPFv3, LS-Request, length 64 - Router-ID 3.3.3.3, Backbone Area - Advertising Router 2.2.2.2 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 2.2.2.2 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.5 - Advertising Router 2.2.2.2 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.6 - Advertising Router 2.2.2.2 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 28) fe80::3 > fe80::2: OSPFv3, Database Description, length 28 - Router-ID 3.3.3.3, Backbone Area - Options [V6, External, Router], DD Flags [Master], MTU 1500, DD-Sequence 0x00000d56 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 424) fe80::3 > fe80::2: OSPFv3, LS-Update, length 424 - Router-ID 3.3.3.3, Backbone Area - Advertising Router 3.3.3.3, seq 0x8000000e, age 3s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Neighbor Router-ID 1.1.1.1 - Neighbor Interface-ID 0.0.0.6, Interface 0.0.0.6, metric 64 - Advertising Router 1.1.1.1, seq 0x80000012, age 33s, length 4 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Advertising Router 3.3.3.3, seq 0x80000001, age 36s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.5, metric 10 - 2001:db8:0:34::/64, metric 0 - Advertising Router 3.3.3.3, seq 0x80000001, age 36s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4, metric 20 - 2001:db8:0:4::/64, metric 0 - Advertising Router 3.3.3.3, seq 0x80000001, age 36s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.3, metric 10 - 2001:db8:0:3::/64, metric 0 - Advertising Router 2.2.2.2, seq 0x80000001, age 812s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4, metric 10 - 2001:db8:0:12::/64, metric 0 - Advertising Router 1.1.1.1, seq 0x80000001, age 34s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.5, metric 10 - 2001:db8:0:12::/64, metric 0 - Advertising Router 3.3.3.3, seq 0x80000001, age 35s, length 36 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.6 - Options [V6, External, Router, Demand Circuit] - Priority 100, Link-local address fe80::3, Prefixes 1: - 2001:db8::/64, metric 0 - Advertising Router 3.3.3.3, seq 0x80000001, age 35s, length 32 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Prefixes 1: - 2001:db8::3/128, Options [Local address], metric 0 - Advertising Router 1.1.1.1, seq 0x80000001, age 33s, length 32 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Prefixes 1: - 2001:db8::1/128, Options [Local address], metric 0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 188) fe80::2 > fe80::3: OSPFv3, LS-Update, length 188 - Router-ID 2.2.2.2, Backbone Area - Advertising Router 2.2.2.2, seq 0x80000012, age 30s, length 4 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Advertising Router 2.2.2.2, seq 0x80000001, age 31s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.5, metric 10 - 2001:db8:0:12::/64, metric 0 - Advertising Router 2.2.2.2, seq 0x80000001, age 30s, length 36 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.6 - Options [V6, External, Router, Demand Circuit] - Priority 1, Link-local address fe80::2, Prefixes 1: - 2001:db8::/64, metric 0 - Advertising Router 2.2.2.2, seq 0x80000001, age 30s, length 32 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Prefixes 1: - 2001:db8::2/128, Options [Local address], metric 0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 28) fe80::2 > fe80::3: OSPFv3, Database Description, length 28 - Router-ID 2.2.2.2, Backbone Area - Options [V6, External, Router], DD Flags [none], MTU 1500, DD-Sequence 0x00000d56 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 188) fe80::3 > fe80::2: OSPFv3, LS-Update, length 188 - Router-ID 3.3.3.3, Backbone Area - Advertising Router 2.2.2.2, seq 0x80000001, age 31s, length 36 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.6 - Options [V6, External, Router, Demand Circuit] - Priority 1, Link-local address fe80::2, Prefixes 1: - 2001:db8::/64, metric 0 - Advertising Router 2.2.2.2, seq 0x80000012, age 31s, length 4 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Advertising Router 2.2.2.2, seq 0x80000001, age 32s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.5, metric 10 - 2001:db8:0:12::/64, metric 0 - Advertising Router 2.2.2.2, seq 0x80000001, age 31s, length 32 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Prefixes 1: - 2001:db8::2/128, Options [Local address], metric 0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 188) fe80::3 > fe80::1: OSPFv3, LS-Update, length 188 - Router-ID 3.3.3.3, Backbone Area - Advertising Router 2.2.2.2, seq 0x80000001, age 31s, length 36 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.6 - Options [V6, External, Router, Demand Circuit] - Priority 1, Link-local address fe80::2, Prefixes 1: - 2001:db8::/64, metric 0 - Advertising Router 2.2.2.2, seq 0x80000012, age 31s, length 4 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Advertising Router 2.2.2.2, seq 0x80000001, age 32s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.5, metric 10 - 2001:db8:0:12::/64, metric 0 - Advertising Router 2.2.2.2, seq 0x80000001, age 31s, length 32 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Prefixes 1: - 2001:db8::2/128, Options [Local address], metric 0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 96) fe80::2 > fe80::3: OSPFv3, LS-Ack, length 96 - Router-ID 2.2.2.2, Backbone Area - Advertising Router 2.2.2.2, seq 0x80000001, age 31s, length 36 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.6 - Advertising Router 2.2.2.2, seq 0x80000012, age 31s, length 4 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 2.2.2.2, seq 0x80000001, age 32s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.5 - Advertising Router 2.2.2.2, seq 0x80000001, age 31s, length 32 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 60) fe80::2 > fe80::3: OSPFv3, LS-Update, length 60 - Router-ID 2.2.2.2, Backbone Area - Advertising Router 2.2.2.2, seq 0x80000013, age 1s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Neighbor Router-ID 3.3.3.3 - Neighbor Interface-ID 0.0.0.6, Interface 0.0.0.6, metric 64 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 216) fe80::2 > fe80::3: OSPFv3, LS-Ack, length 216 - Router-ID 2.2.2.2, Backbone Area - Advertising Router 3.3.3.3, seq 0x8000000e, age 3s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 1.1.1.1, seq 0x80000012, age 33s, length 4 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 3.3.3.3, seq 0x80000001, age 36s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.5 - Advertising Router 3.3.3.3, seq 0x80000001, age 36s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4 - Advertising Router 3.3.3.3, seq 0x80000001, age 36s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.3 - Advertising Router 2.2.2.2, seq 0x80000001, age 812s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4 - Advertising Router 1.1.1.1, seq 0x80000001, age 34s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.5 - Advertising Router 3.3.3.3, seq 0x80000001, age 35s, length 36 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.6 - Advertising Router 3.3.3.3, seq 0x80000001, age 35s, length 32 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 1.1.1.1, seq 0x80000001, age 33s, length 32 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 96) fe80::3 > fe80::2: OSPFv3, LS-Ack, length 96 - Router-ID 3.3.3.3, Backbone Area - Advertising Router 2.2.2.2, seq 0x80000012, age 30s, length 4 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 2.2.2.2, seq 0x80000001, age 31s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.5 - Advertising Router 2.2.2.2, seq 0x80000001, age 30s, length 36 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.6 - Advertising Router 2.2.2.2, seq 0x80000001, age 30s, length 32 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 96) fe80::3 > fe80::1: OSPFv3, LS-Ack, length 96 - Router-ID 3.3.3.3, Backbone Area - Advertising Router 2.2.2.2, seq 0x80000012, age 30s, length 4 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 2.2.2.2, seq 0x80000001, age 31s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.5 - Advertising Router 2.2.2.2, seq 0x80000001, age 30s, length 36 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.6 - Advertising Router 2.2.2.2, seq 0x80000001, age 30s, length 32 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 96) fe80::1 > fe80::3: OSPFv3, LS-Ack, length 96 - Router-ID 1.1.1.1, Backbone Area - Advertising Router 2.2.2.2, seq 0x80000001, age 31s, length 36 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.6 - Advertising Router 2.2.2.2, seq 0x80000012, age 31s, length 4 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 2.2.2.2, seq 0x80000001, age 32s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.5 - Advertising Router 2.2.2.2, seq 0x80000001, age 31s, length 32 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 60) fe80::1 > fe80::3: OSPFv3, LS-Update, length 60 - Router-ID 1.1.1.1, Backbone Area - Advertising Router 1.1.1.1, seq 0x80000013, age 5s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Neighbor Router-ID 3.3.3.3 - Neighbor Interface-ID 0.0.0.6, Interface 0.0.0.6, metric 64 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 60) fe80::3 > fe80::2: OSPFv3, LS-Update, length 60 - Router-ID 3.3.3.3, Backbone Area - Advertising Router 1.1.1.1, seq 0x80000013, age 6s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Neighbor Router-ID 3.3.3.3 - Neighbor Interface-ID 0.0.0.6, Interface 0.0.0.6, metric 64 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 60) fe80::3 > fe80::1: OSPFv3, LS-Update, length 60 - Router-ID 3.3.3.3, Backbone Area - Advertising Router 1.1.1.1, seq 0x80000013, age 6s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Neighbor Router-ID 3.3.3.3 - Neighbor Interface-ID 0.0.0.6, Interface 0.0.0.6, metric 64 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 60) fe80::3 > fe80::1: OSPFv3, LS-Update, length 60 - Router-ID 3.3.3.3, Backbone Area - Advertising Router 3.3.3.3, seq 0x8000000e, age 5s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Neighbor Router-ID 1.1.1.1 - Neighbor Interface-ID 0.0.0.6, Interface 0.0.0.6, metric 64 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 56) fe80::1 > fe80::3: OSPFv3, LS-Update, length 56 - Router-ID 1.1.1.1, Backbone Area - Advertising Router 1.1.1.1, seq 0x80000002, age 3600s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4, metric 16777215 - 2001:db8:0:12::/64, metric 0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 300) fe80::3 > fe80::2: OSPFv3, LS-Update, length 300 - Router-ID 3.3.3.3, Backbone Area - Advertising Router 3.3.3.3, seq 0x80000003, age 3600s, length 16 - Network LSA (2), Area Local Scope, LSA-ID 0.0.0.6 - Options [V6, External, Router, Demand Circuit] - Connected Routers: - 3.3.3.3 - 2.2.2.2 - 1.1.1.1 - Advertising Router 3.3.3.3, seq 0x80000002, age 3600s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.2, metric 16777215 - 2001:db8:0:4::/64, metric 0 - Advertising Router 3.3.3.3, seq 0x80000002, age 3600s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.1, metric 16777215 - 2001:db8:0:34::/64, metric 0 - Advertising Router 3.3.3.3, seq 0x80000002, age 3600s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.0, metric 16777215 - 2001:db8:0:3::/64, metric 0 - Advertising Router 3.3.3.3, seq 0x80000003, age 3600s, length 24 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.24.0 - Network LSA (2), Area Local Scope, LSA-ID 0.0.0.6 - Prefixes 1: - 2001:db8::/64, metric 0 - Advertising Router 3.3.3.3, seq 0x8000000f, age 1s, length 36 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Neighbor Router-ID 2.2.2.2 - Neighbor Interface-ID 0.0.0.6, Interface 0.0.0.6, metric 64 - Neighbor Router-ID 1.1.1.1 - Neighbor Interface-ID 0.0.0.6, Interface 0.0.0.6, metric 64 - Advertising Router 1.1.1.1, seq 0x80000002, age 3600s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4, metric 16777215 - 2001:db8:0:12::/64, metric 0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 300) fe80::3 > fe80::1: OSPFv3, LS-Update, length 300 - Router-ID 3.3.3.3, Backbone Area - Advertising Router 3.3.3.3, seq 0x80000003, age 3600s, length 16 - Network LSA (2), Area Local Scope, LSA-ID 0.0.0.6 - Options [V6, External, Router, Demand Circuit] - Connected Routers: - 3.3.3.3 - 2.2.2.2 - 1.1.1.1 - Advertising Router 3.3.3.3, seq 0x80000002, age 3600s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.2, metric 16777215 - 2001:db8:0:4::/64, metric 0 - Advertising Router 3.3.3.3, seq 0x80000002, age 3600s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.1, metric 16777215 - 2001:db8:0:34::/64, metric 0 - Advertising Router 3.3.3.3, seq 0x80000002, age 3600s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.0, metric 16777215 - 2001:db8:0:3::/64, metric 0 - Advertising Router 3.3.3.3, seq 0x80000003, age 3600s, length 24 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.24.0 - Network LSA (2), Area Local Scope, LSA-ID 0.0.0.6 - Prefixes 1: - 2001:db8::/64, metric 0 - Advertising Router 3.3.3.3, seq 0x8000000f, age 1s, length 36 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Neighbor Router-ID 2.2.2.2 - Neighbor Interface-ID 0.0.0.6, Interface 0.0.0.6, metric 64 - Neighbor Router-ID 1.1.1.1 - Neighbor Interface-ID 0.0.0.6, Interface 0.0.0.6, metric 64 - Advertising Router 1.1.1.1, seq 0x80000002, age 3600s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4, metric 16777215 - 2001:db8:0:12::/64, metric 0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 56) fe80::3 > fe80::2: OSPFv3, LS-Ack, length 56 - Router-ID 3.3.3.3, Backbone Area - Advertising Router 1.1.1.1, seq 0x80000013, age 5s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 1.1.1.1, seq 0x80000002, age 3600s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 56) fe80::3 > fe80::1: OSPFv3, LS-Ack, length 56 - Router-ID 3.3.3.3, Backbone Area - Advertising Router 1.1.1.1, seq 0x80000013, age 5s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 1.1.1.1, seq 0x80000002, age 3600s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 176) fe80::2 > fe80::3: OSPFv3, LS-Ack, length 176 - Router-ID 2.2.2.2, Backbone Area - Advertising Router 1.1.1.1, seq 0x80000013, age 6s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 3.3.3.3, seq 0x80000003, age 3600s, length 16 - Network LSA (2), Area Local Scope, LSA-ID 0.0.0.6 - Advertising Router 3.3.3.3, seq 0x80000002, age 3600s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.2 - Advertising Router 3.3.3.3, seq 0x80000002, age 3600s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.1 - Advertising Router 3.3.3.3, seq 0x80000002, age 3600s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 3.3.3.3, seq 0x80000003, age 3600s, length 24 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.24.0 - Advertising Router 3.3.3.3, seq 0x8000000f, age 1s, length 36 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 1.1.1.1, seq 0x80000002, age 3600s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 136) fe80::1 > fe80::3: OSPFv3, LS-Ack, length 136 - Router-ID 1.1.1.1, Backbone Area - Advertising Router 3.3.3.3, seq 0x8000000e, age 5s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 3.3.3.3, seq 0x80000003, age 3600s, length 16 - Network LSA (2), Area Local Scope, LSA-ID 0.0.0.6 - Advertising Router 3.3.3.3, seq 0x80000002, age 3600s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.2 - Advertising Router 3.3.3.3, seq 0x80000002, age 3600s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.1 - Advertising Router 3.3.3.3, seq 0x80000002, age 3600s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 3.3.3.3, seq 0x80000003, age 3600s, length 24 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.24.0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 60) fe80::2 > fe80::3: OSPFv3, LS-Update, length 60 - Router-ID 2.2.2.2, Backbone Area - Advertising Router 2.2.2.2, seq 0x80000013, age 6s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Neighbor Router-ID 3.3.3.3 - Neighbor Interface-ID 0.0.0.6, Interface 0.0.0.6, metric 64 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 60) fe80::3 > fe80::2: OSPFv3, LS-Update, length 60 - Router-ID 3.3.3.3, Backbone Area - Advertising Router 2.2.2.2, seq 0x80000013, age 7s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Neighbor Router-ID 3.3.3.3 - Neighbor Interface-ID 0.0.0.6, Interface 0.0.0.6, metric 64 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 60) fe80::3 > fe80::1: OSPFv3, LS-Update, length 60 - Router-ID 3.3.3.3, Backbone Area - Advertising Router 2.2.2.2, seq 0x80000013, age 7s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Neighbor Router-ID 3.3.3.3 - Neighbor Interface-ID 0.0.0.6, Interface 0.0.0.6, metric 64 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 56) fe80::2 > fe80::3: OSPFv3, LS-Update, length 56 - Router-ID 2.2.2.2, Backbone Area - Advertising Router 2.2.2.2, seq 0x80000002, age 3600s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4, metric 16777215 - 2001:db8:0:12::/64, metric 0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 56) fe80::3 > fe80::2: OSPFv3, LS-Update, length 56 - Router-ID 3.3.3.3, Backbone Area - Advertising Router 2.2.2.2, seq 0x80000002, age 3600s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4, metric 16777215 - 2001:db8:0:12::/64, metric 0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 56) fe80::3 > fe80::1: OSPFv3, LS-Update, length 56 - Router-ID 3.3.3.3, Backbone Area - Advertising Router 2.2.2.2, seq 0x80000002, age 3600s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4, metric 16777215 - 2001:db8:0:12::/64, metric 0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 56) fe80::3 > fe80::2: OSPFv3, LS-Ack, length 56 - Router-ID 3.3.3.3, Backbone Area - Advertising Router 2.2.2.2, seq 0x80000013, age 6s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 2.2.2.2, seq 0x80000002, age 3600s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 56) fe80::3 > fe80::1: OSPFv3, LS-Ack, length 56 - Router-ID 3.3.3.3, Backbone Area - Advertising Router 2.2.2.2, seq 0x80000013, age 6s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 2.2.2.2, seq 0x80000002, age 3600s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 76) fe80::3 > fe80::1: OSPFv3, LS-Update, length 76 - Router-ID 3.3.3.3, Backbone Area - Advertising Router 3.3.3.3, seq 0x8000000f, age 5s, length 36 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Neighbor Router-ID 2.2.2.2 - Neighbor Interface-ID 0.0.0.6, Interface 0.0.0.6, metric 64 - Neighbor Router-ID 1.1.1.1 - Neighbor Interface-ID 0.0.0.6, Interface 0.0.0.6, metric 64 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 56) fe80::1 > fe80::3: OSPFv3, LS-Ack, length 56 - Router-ID 1.1.1.1, Backbone Area - Advertising Router 2.2.2.2, seq 0x80000013, age 7s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 2.2.2.2, seq 0x80000002, age 3600s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 36) fe80::1 > fe80::3: OSPFv3, LS-Ack, length 36 - Router-ID 1.1.1.1, Backbone Area - Advertising Router 3.3.3.3, seq 0x8000000f, age 5s, length 36 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 44) fe80::3 > ff02::5: OSPFv3, Hello, length 44 - Router-ID 3.3.3.3, Backbone Area - Options [V6, External, Router] - Hello Timer 30s, Dead Timer 120s, Interface-ID 0.0.0.6, Priority 100 - Neighbor List: - 2.2.2.2 - 1.1.1.1 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 44) fe80::3 > ff02::5: OSPFv3, Hello, length 44 - Router-ID 3.3.3.3, Backbone Area - Options [V6, External, Router] - Hello Timer 30s, Dead Timer 120s, Interface-ID 0.0.0.6, Priority 100 - Neighbor List: - 2.2.2.2 - 1.1.1.1 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 44) fe80::3 > ff02::5: OSPFv3, Hello, length 44 - Router-ID 3.3.3.3, Backbone Area - Options [V6, External, Router] - Hello Timer 30s, Dead Timer 120s, Interface-ID 0.0.0.6, Priority 100 - Neighbor List: - 2.2.2.2 - 1.1.1.1 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 44) fe80::3 > ff02::5: OSPFv3, Hello, length 44 - Router-ID 3.3.3.3, Backbone Area - Options [V6, External, Router] - Hello Timer 30s, Dead Timer 120s, Interface-ID 0.0.0.6, Priority 100 - Neighbor List: - 2.2.2.2 - 1.1.1.1 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 40) fe80::1 > ff02::5: OSPFv3, Hello, length 40 - Router-ID 1.1.1.1, Backbone Area - Options [V6, External, Router] - Hello Timer 30s, Dead Timer 120s, Interface-ID 0.0.0.6, Priority 1 - Neighbor List: - 3.3.3.3 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 40) fe80::1 > ff02::5: OSPFv3, Hello, length 40 - Router-ID 1.1.1.1, Backbone Area - Options [V6, External, Router] - Hello Timer 30s, Dead Timer 120s, Interface-ID 0.0.0.6, Priority 1 - Neighbor List: - 3.3.3.3 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 40) fe80::2 > ff02::5: OSPFv3, Hello, length 40 - Router-ID 2.2.2.2, Backbone Area - Options [V6, External, Router] - Hello Timer 30s, Dead Timer 120s, Interface-ID 0.0.0.6, Priority 1 - Neighbor List: - 3.3.3.3 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 40) fe80::2 > ff02::5: OSPFv3, Hello, length 40 - Router-ID 2.2.2.2, Backbone Area - Options [V6, External, Router] - Hello Timer 30s, Dead Timer 120s, Interface-ID 0.0.0.6, Priority 1 - Neighbor List: - 3.3.3.3 diff --git a/tests/ospf3_nbma-vv.out b/tests/ospf3_nbma-vv.out deleted file mode 100644 index 5b8eed9..0000000 --- a/tests/ospf3_nbma-vv.out +++ /dev/null @@ -1,912 +0,0 @@ -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 36) fe80::3 > fe80::2: OSPFv3, Hello, length 36 - Router-ID 3.3.3.3, Backbone Area - Options [V6, External, Router] - Hello Timer 30s, Dead Timer 120s, Interface-ID 0.0.0.6, Priority 100 - Designated Router 3.3.3.3 - Neighbor List: -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 36) fe80::3 > fe80::1: OSPFv3, Hello, length 36 - Router-ID 3.3.3.3, Backbone Area - Options [V6, External, Router] - Hello Timer 30s, Dead Timer 120s, Interface-ID 0.0.0.6, Priority 100 - Designated Router 3.3.3.3 - Neighbor List: -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 40) fe80::1 > fe80::3: OSPFv3, Hello, length 40 - Router-ID 1.1.1.1, Backbone Area - Options [V6, External, Router] - Hello Timer 30s, Dead Timer 120s, Interface-ID 0.0.0.6, Priority 1 - Designated Router 1.1.1.1 - Neighbor List: - 3.3.3.3 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 28) fe80::3 > fe80::1: OSPFv3, Database Description, length 28 - Router-ID 3.3.3.3, Backbone Area - Options [V6, External, Router], DD Flags [Init, More, Master], MTU 1500, DD-Sequence 0x0000149b -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 28) fe80::1 > fe80::3: OSPFv3, Database Description, length 28 - Router-ID 1.1.1.1, Backbone Area - Options [V6, External, Router], DD Flags [Init, More, Master], MTU 1500, DD-Sequence 0x00001b67 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 308) fe80::1 > fe80::3: OSPFv3, Database Description, length 308 - Router-ID 1.1.1.1, Backbone Area - Options [V6, External, Router], DD Flags [More], MTU 1500, DD-Sequence 0x0000149b - Advertising Router 1.1.1.1, seq 0x8000000d, age 209s, length 4 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 2.2.2.2, seq 0x8000000a, age 517s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 3.3.3.3, seq 0x80000006, age 1127s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 3.3.3.3, seq 0x80000001, age 1157s, length 16 - Network LSA (2), Area Local Scope, LSA-ID 0.0.0.6 - Advertising Router 1.1.1.1, seq 0x80000001, age 330s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4 - Advertising Router 2.2.2.2, seq 0x80000001, age 509s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.3 - Advertising Router 3.3.3.3, seq 0x80000001, age 1303s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.2 - Advertising Router 3.3.3.3, seq 0x80000001, age 1303s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.3 - Advertising Router 3.3.3.3, seq 0x80000001, age 1303s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4 - Advertising Router 1.1.1.1, seq 0x80000001, age 329s, length 36 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.6 - Advertising Router 2.2.2.2, seq 0x80000001, age 1307s, length 36 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.6 - Advertising Router 3.3.3.3, seq 0x80000001, age 1303s, length 36 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.6 - Advertising Router 1.1.1.1, seq 0x80000001, age 329s, length 24 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 3.3.3.3, seq 0x80000001, age 1157s, length 24 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.24.0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 148) fe80::3 > fe80::1: OSPFv3, Database Description, length 148 - Router-ID 3.3.3.3, Backbone Area - Options [V6, External, Router], DD Flags [More, Master], MTU 1500, DD-Sequence 0x0000149c - Advertising Router 3.3.3.3, seq 0x80000002, age 14s, length 4 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 3.3.3.3, seq 0x80000001, age 124s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 3.3.3.3, seq 0x80000001, age 124s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.1 - Advertising Router 3.3.3.3, seq 0x80000001, age 114s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.2 - Advertising Router 3.3.3.3, seq 0x80000001, age 134s, length 36 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.6 - Advertising Router 3.3.3.3, seq 0x80000001, age 134s, length 24 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 160) fe80::3 > fe80::1: OSPFv3, LS-Request, length 160 - Router-ID 3.3.3.3, Backbone Area - Advertising Router 3.3.3.3 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 2.2.2.2 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 1.1.1.1 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 3.3.3.3 - Network LSA (2), Area Local Scope, LSA-ID 0.0.0.6 - Advertising Router 3.3.3.3 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4 - Advertising Router 3.3.3.3 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.3 - Advertising Router 2.2.2.2 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.3 - Advertising Router 1.1.1.1 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4 - Advertising Router 2.2.2.2 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.6 - Advertising Router 1.1.1.1 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.6 - Advertising Router 3.3.3.3 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.24.0 - Advertising Router 1.1.1.1 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 28) fe80::1 > fe80::3: OSPFv3, Database Description, length 28 - Router-ID 1.1.1.1, Backbone Area - Options [V6, External, Router], DD Flags [none], MTU 1500, DD-Sequence 0x0000149c -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 76) fe80::1 > fe80::3: OSPFv3, LS-Request, length 76 - Router-ID 1.1.1.1, Backbone Area - Advertising Router 3.3.3.3 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.2 - Advertising Router 3.3.3.3 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.1 - Advertising Router 3.3.3.3 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 3.3.3.3 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.6 - Advertising Router 3.3.3.3 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 28) fe80::3 > fe80::1: OSPFv3, Database Description, length 28 - Router-ID 3.3.3.3, Backbone Area - Options [V6, External, Router], DD Flags [Master], MTU 1500, DD-Sequence 0x0000149d -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 228) fe80::3 > fe80::1: OSPFv3, LS-Update, length 228 - Router-ID 3.3.3.3, Backbone Area - Advertising Router 3.3.3.3, seq 0x80000001, age 115s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.2, metric 20 - 2001:db8:0:4::/64, metric 0 - Advertising Router 3.3.3.3, seq 0x80000001, age 125s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.1, metric 10 - 2001:db8:0:34::/64, metric 0 - Advertising Router 3.3.3.3, seq 0x80000001, age 125s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.0, metric 10 - 2001:db8:0:3::/64, metric 0 - Advertising Router 3.3.3.3, seq 0x80000001, age 135s, length 36 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.6 - Options [V6, External, Router, Demand Circuit] - Priority 100, Link-local address fe80::3, Prefixes 1: - 2001:db8::/64, metric 0 - Advertising Router 3.3.3.3, seq 0x80000001, age 135s, length 24 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Prefixes 1: - 2001:db8::/64, metric 64 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 504) fe80::1 > fe80::3: OSPFv3, LS-Update, length 504 - Router-ID 1.1.1.1, Backbone Area - Advertising Router 3.3.3.3, seq 0x80000006, age 1128s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Neighbor Network-ID 3.3.3.3 - Neighbor Interface-ID 0.0.0.6, Interface 0.0.0.6, metric 64 - Advertising Router 2.2.2.2, seq 0x8000000a, age 518s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Neighbor Network-ID 3.3.3.3 - Neighbor Interface-ID 0.0.0.6, Interface 0.0.0.6, metric 64 - Advertising Router 1.1.1.1, seq 0x8000000d, age 210s, length 4 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Advertising Router 3.3.3.3, seq 0x80000001, age 1158s, length 16 - Network LSA (2), Area Local Scope, LSA-ID 0.0.0.6 - Options [V6, External, Router, Demand Circuit] - Connected Routers: - 3.3.3.3 - 2.2.2.2 - 1.1.1.1 - Advertising Router 3.3.3.3, seq 0x80000001, age 1304s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4, metric 10 - 2001:db8:0:34::/64, metric 0 - Advertising Router 3.3.3.3, seq 0x80000001, age 1304s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.3, metric 20 - 2001:db8:0:4::/64, metric 0 - Advertising Router 2.2.2.2, seq 0x80000001, age 510s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.3, metric 10 - 2001:db8:0:12::/64, metric 0 - Advertising Router 1.1.1.1, seq 0x80000001, age 331s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4, metric 10 - 2001:db8:0:12::/64, metric 0 - Advertising Router 2.2.2.2, seq 0x80000001, age 1308s, length 36 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.6 - Options [V6, External, Router, Demand Circuit] - Priority 1, Link-local address fe80::2, Prefixes 1: - 2001:db8::/64, metric 0 - Advertising Router 1.1.1.1, seq 0x80000001, age 330s, length 36 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.6 - Options [V6, External, Router, Demand Circuit] - Priority 1, Link-local address fe80::1, Prefixes 1: - 2001:db8::/64, metric 0 - Advertising Router 3.3.3.3, seq 0x80000001, age 1158s, length 24 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.24.0 - Network LSA (2), Area Local Scope, LSA-ID 0.0.0.6 - Prefixes 1: - 2001:db8::/64, metric 0 - Advertising Router 1.1.1.1, seq 0x80000001, age 330s, length 24 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Prefixes 1: - 2001:db8::/64, metric 64 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 28) fe80::1 > fe80::3: OSPFv3, Database Description, length 28 - Router-ID 1.1.1.1, Backbone Area - Options [V6, External, Router], DD Flags [none], MTU 1500, DD-Sequence 0x0000149d -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 44) fe80::3 > fe80::1: OSPFv3, LS-Update, length 44 - Router-ID 3.3.3.3, Backbone Area - Advertising Router 3.3.3.3, seq 0x80000007, age 1s, length 4 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 92) fe80::1 > fe80::3: OSPFv3, LS-Update, length 92 - Router-ID 1.1.1.1, Backbone Area - Advertising Router 1.1.1.1, seq 0x80000002, age 3600s, length 12 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Prefixes 0: - Advertising Router 1.1.1.1, seq 0x8000000e, age 1s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Neighbor Network-ID 3.3.3.3 - Neighbor Interface-ID 0.0.0.6, Interface 0.0.0.6, metric 64 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 52) fe80::3 > fe80::1: OSPFv3, LS-Update, length 52 - Router-ID 3.3.3.3, Backbone Area - Advertising Router 3.3.3.3, seq 0x80000002, age 3600s, length 12 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Prefixes 0: -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 40) fe80::2 > fe80::3: OSPFv3, Hello, length 40 - Router-ID 2.2.2.2, Backbone Area - Options [V6, External, Router] - Hello Timer 30s, Dead Timer 120s, Interface-ID 0.0.0.6, Priority 1 - Designated Router 2.2.2.2 - Neighbor List: - 3.3.3.3 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 28) fe80::3 > fe80::2: OSPFv3, Database Description, length 28 - Router-ID 3.3.3.3, Backbone Area - Options [V6, External, Router], DD Flags [Init, More, Master], MTU 1500, DD-Sequence 0x0000027c -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 28) fe80::2 > fe80::3: OSPFv3, Database Description, length 28 - Router-ID 2.2.2.2, Backbone Area - Options [V6, External, Router], DD Flags [Init, More, Master], MTU 1500, DD-Sequence 0x00000cd9 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 308) fe80::2 > fe80::3: OSPFv3, Database Description, length 308 - Router-ID 2.2.2.2, Backbone Area - Options [V6, External, Router], DD Flags [More], MTU 1500, DD-Sequence 0x0000027c - Advertising Router 1.1.1.1, seq 0x8000000a, age 556s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 2.2.2.2, seq 0x8000000d, age 209s, length 4 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 3.3.3.3, seq 0x80000006, age 1130s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 3.3.3.3, seq 0x80000001, age 1160s, length 16 - Network LSA (2), Area Local Scope, LSA-ID 0.0.0.6 - Advertising Router 1.1.1.1, seq 0x80000001, age 546s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.3 - Advertising Router 2.2.2.2, seq 0x80000001, age 330s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4 - Advertising Router 3.3.3.3, seq 0x80000001, age 1306s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.2 - Advertising Router 3.3.3.3, seq 0x80000001, age 1306s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.3 - Advertising Router 3.3.3.3, seq 0x80000001, age 1306s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4 - Advertising Router 1.1.1.1, seq 0x80000001, age 1310s, length 36 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.6 - Advertising Router 2.2.2.2, seq 0x80000001, age 329s, length 36 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.6 - Advertising Router 3.3.3.3, seq 0x80000001, age 1305s, length 36 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.6 - Advertising Router 2.2.2.2, seq 0x80000001, age 329s, length 24 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 3.3.3.3, seq 0x80000001, age 1160s, length 24 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.24.0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 348) fe80::3 > fe80::2: OSPFv3, Database Description, length 348 - Router-ID 3.3.3.3, Backbone Area - Options [V6, External, Router], DD Flags [More, Master], MTU 1500, DD-Sequence 0x0000027d - Advertising Router 1.1.1.1, seq 0x8000000d, age 212s, length 4 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 2.2.2.2, seq 0x8000000a, age 520s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 3.3.3.3, seq 0x80000007, age 2s, length 4 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 3.3.3.3, seq 0x80000001, age 1160s, length 16 - Network LSA (2), Area Local Scope, LSA-ID 0.0.0.6 - Advertising Router 1.1.1.1, seq 0x80000001, age 333s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4 - Advertising Router 2.2.2.2, seq 0x80000001, age 512s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.3 - Advertising Router 3.3.3.3, seq 0x80000001, age 127s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 3.3.3.3, seq 0x80000001, age 127s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.1 - Advertising Router 3.3.3.3, seq 0x80000001, age 117s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.2 - Advertising Router 3.3.3.3, seq 0x80000001, age 1306s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.3 - Advertising Router 3.3.3.3, seq 0x80000001, age 1306s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4 - Advertising Router 1.1.1.1, seq 0x80000001, age 332s, length 36 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.6 - Advertising Router 2.2.2.2, seq 0x80000001, age 1310s, length 36 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.6 - Advertising Router 3.3.3.3, seq 0x80000001, age 136s, length 36 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.6 - Advertising Router 1.1.1.1, seq 0x80000001, age 332s, length 24 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 3.3.3.3, seq 0x80000001, age 1160s, length 24 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.24.0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 76) fe80::3 > fe80::2: OSPFv3, LS-Request, length 76 - Router-ID 3.3.3.3, Backbone Area - Advertising Router 2.2.2.2 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 2.2.2.2 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4 - Advertising Router 1.1.1.1 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.3 - Advertising Router 2.2.2.2 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.6 - Advertising Router 2.2.2.2 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 28) fe80::2 > fe80::3: OSPFv3, Database Description, length 28 - Router-ID 2.2.2.2, Backbone Area - Options [V6, External, Router], DD Flags [none], MTU 1500, DD-Sequence 0x0000027d -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 136) fe80::2 > fe80::3: OSPFv3, LS-Request, length 136 - Router-ID 2.2.2.2, Backbone Area - Advertising Router 3.3.3.3 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 1.1.1.1 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 3.3.3.3 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.2 - Advertising Router 3.3.3.3 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.1 - Advertising Router 3.3.3.3 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 2.2.2.2 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.3 - Advertising Router 1.1.1.1 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4 - Advertising Router 3.3.3.3 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.6 - Advertising Router 1.1.1.1 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.6 - Advertising Router 1.1.1.1 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 216) fe80::2 > fe80::3: OSPFv3, LS-Update, length 216 - Router-ID 2.2.2.2, Backbone Area - Advertising Router 2.2.2.2, seq 0x8000000d, age 210s, length 4 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Advertising Router 2.2.2.2, seq 0x80000001, age 331s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4, metric 10 - 2001:db8:0:12::/64, metric 0 - Advertising Router 1.1.1.1, seq 0x80000001, age 547s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.3, metric 10 - 2001:db8:0:12::/64, metric 0 - Advertising Router 2.2.2.2, seq 0x80000001, age 330s, length 36 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.6 - Options [V6, External, Router, Demand Circuit] - Priority 1, Link-local address fe80::2, Prefixes 1: - 2001:db8::/64, metric 0 - Advertising Router 2.2.2.2, seq 0x80000001, age 330s, length 24 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Prefixes 1: - 2001:db8::/64, metric 64 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 28) fe80::3 > fe80::2: OSPFv3, Database Description, length 28 - Router-ID 3.3.3.3, Backbone Area - Options [V6, External, Router], DD Flags [Master], MTU 1500, DD-Sequence 0x0000027e -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 404) fe80::3 > fe80::2: OSPFv3, LS-Update, length 404 - Router-ID 3.3.3.3, Backbone Area - Advertising Router 3.3.3.3, seq 0x80000007, age 3s, length 4 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Advertising Router 1.1.1.1, seq 0x8000000d, age 213s, length 4 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Advertising Router 3.3.3.3, seq 0x80000001, age 118s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.2, metric 20 - 2001:db8:0:4::/64, metric 0 - Advertising Router 3.3.3.3, seq 0x80000001, age 128s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.1, metric 10 - 2001:db8:0:34::/64, metric 0 - Advertising Router 3.3.3.3, seq 0x80000001, age 128s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.0, metric 10 - 2001:db8:0:3::/64, metric 0 - Advertising Router 2.2.2.2, seq 0x80000001, age 513s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.3, metric 10 - 2001:db8:0:12::/64, metric 0 - Advertising Router 1.1.1.1, seq 0x80000001, age 334s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4, metric 10 - 2001:db8:0:12::/64, metric 0 - Advertising Router 3.3.3.3, seq 0x80000001, age 137s, length 36 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.6 - Options [V6, External, Router, Demand Circuit] - Priority 100, Link-local address fe80::3, Prefixes 1: - 2001:db8::/64, metric 0 - Advertising Router 1.1.1.1, seq 0x80000001, age 333s, length 36 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.6 - Options [V6, External, Router, Demand Circuit] - Priority 1, Link-local address fe80::1, Prefixes 1: - 2001:db8::/64, metric 0 - Advertising Router 1.1.1.1, seq 0x80000001, age 333s, length 24 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Prefixes 1: - 2001:db8::/64, metric 64 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 28) fe80::2 > fe80::3: OSPFv3, Database Description, length 28 - Router-ID 2.2.2.2, Backbone Area - Options [V6, External, Router], DD Flags [none], MTU 1500, DD-Sequence 0x0000027e -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 136) fe80::1 > fe80::3: OSPFv3, LS-Ack, length 136 - Router-ID 1.1.1.1, Backbone Area - Advertising Router 3.3.3.3, seq 0x80000001, age 115s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.2 - Advertising Router 3.3.3.3, seq 0x80000001, age 125s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.1 - Advertising Router 3.3.3.3, seq 0x80000001, age 125s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 3.3.3.3, seq 0x80000001, age 135s, length 36 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.6 - Advertising Router 3.3.3.3, seq 0x80000001, age 135s, length 24 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 3.3.3.3, seq 0x80000007, age 1s, length 4 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 216) fe80::3 > fe80::2: OSPFv3, LS-Update, length 216 - Router-ID 3.3.3.3, Backbone Area - Advertising Router 2.2.2.2, seq 0x80000001, age 331s, length 36 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.6 - Options [V6, External, Router, Demand Circuit] - Priority 1, Link-local address fe80::2, Prefixes 1: - 2001:db8::/64, metric 0 - Advertising Router 2.2.2.2, seq 0x8000000d, age 211s, length 4 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Advertising Router 2.2.2.2, seq 0x80000001, age 332s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4, metric 10 - 2001:db8:0:12::/64, metric 0 - Advertising Router 1.1.1.1, seq 0x80000001, age 548s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.3, metric 10 - 2001:db8:0:12::/64, metric 0 - Advertising Router 2.2.2.2, seq 0x80000001, age 331s, length 24 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Prefixes 1: - 2001:db8::/64, metric 64 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 216) fe80::3 > fe80::1: OSPFv3, LS-Update, length 216 - Router-ID 3.3.3.3, Backbone Area - Advertising Router 2.2.2.2, seq 0x80000001, age 331s, length 36 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.6 - Options [V6, External, Router, Demand Circuit] - Priority 1, Link-local address fe80::2, Prefixes 1: - 2001:db8::/64, metric 0 - Advertising Router 2.2.2.2, seq 0x8000000d, age 211s, length 4 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Advertising Router 2.2.2.2, seq 0x80000001, age 332s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4, metric 10 - 2001:db8:0:12::/64, metric 0 - Advertising Router 1.1.1.1, seq 0x80000001, age 548s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.3, metric 10 - 2001:db8:0:12::/64, metric 0 - Advertising Router 2.2.2.2, seq 0x80000001, age 331s, length 24 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Prefixes 1: - 2001:db8::/64, metric 64 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 116) fe80::2 > fe80::3: OSPFv3, LS-Ack, length 116 - Router-ID 2.2.2.2, Backbone Area - Advertising Router 2.2.2.2, seq 0x80000001, age 331s, length 36 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.6 - Advertising Router 2.2.2.2, seq 0x8000000d, age 211s, length 4 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 2.2.2.2, seq 0x80000001, age 332s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4 - Advertising Router 1.1.1.1, seq 0x80000001, age 548s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.3 - Advertising Router 2.2.2.2, seq 0x80000001, age 331s, length 24 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 92) fe80::2 > fe80::3: OSPFv3, LS-Update, length 92 - Router-ID 2.2.2.2, Backbone Area - Advertising Router 2.2.2.2, seq 0x80000002, age 3600s, length 12 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Prefixes 0: - Advertising Router 2.2.2.2, seq 0x8000000e, age 1s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Neighbor Network-ID 3.3.3.3 - Neighbor Interface-ID 0.0.0.6, Interface 0.0.0.6, metric 64 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 216) fe80::2 > fe80::3: OSPFv3, LS-Ack, length 216 - Router-ID 2.2.2.2, Backbone Area - Advertising Router 3.3.3.3, seq 0x80000007, age 3s, length 4 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 1.1.1.1, seq 0x8000000d, age 213s, length 4 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 3.3.3.3, seq 0x80000001, age 118s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.2 - Advertising Router 3.3.3.3, seq 0x80000001, age 128s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.1 - Advertising Router 3.3.3.3, seq 0x80000001, age 128s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 2.2.2.2, seq 0x80000001, age 513s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.3 - Advertising Router 1.1.1.1, seq 0x80000001, age 334s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4 - Advertising Router 3.3.3.3, seq 0x80000001, age 137s, length 36 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.6 - Advertising Router 1.1.1.1, seq 0x80000001, age 333s, length 36 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.6 - Advertising Router 1.1.1.1, seq 0x80000001, age 333s, length 24 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 116) fe80::1 > fe80::3: OSPFv3, LS-Ack, length 116 - Router-ID 1.1.1.1, Backbone Area - Advertising Router 2.2.2.2, seq 0x80000001, age 331s, length 36 - Link LSA (8), Link Local Scope, LSA-ID 0.0.0.6 - Advertising Router 2.2.2.2, seq 0x8000000d, age 211s, length 4 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 2.2.2.2, seq 0x80000001, age 332s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4 - Advertising Router 1.1.1.1, seq 0x80000001, age 548s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.3 - Advertising Router 2.2.2.2, seq 0x80000001, age 331s, length 24 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 92) fe80::1 > fe80::3: OSPFv3, LS-Update, length 92 - Router-ID 1.1.1.1, Backbone Area - Advertising Router 1.1.1.1, seq 0x80000002, age 3600s, length 12 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Prefixes 0: - Advertising Router 1.1.1.1, seq 0x8000000e, age 5s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Neighbor Network-ID 3.3.3.3 - Neighbor Interface-ID 0.0.0.6, Interface 0.0.0.6, metric 64 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 92) fe80::3 > fe80::2: OSPFv3, LS-Update, length 92 - Router-ID 3.3.3.3, Backbone Area - Advertising Router 1.1.1.1, seq 0x80000002, age 3600s, length 12 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Prefixes 0: - Advertising Router 1.1.1.1, seq 0x8000000e, age 6s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Neighbor Network-ID 3.3.3.3 - Neighbor Interface-ID 0.0.0.6, Interface 0.0.0.6, metric 64 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 92) fe80::3 > fe80::1: OSPFv3, LS-Update, length 92 - Router-ID 3.3.3.3, Backbone Area - Advertising Router 1.1.1.1, seq 0x80000002, age 3600s, length 12 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Prefixes 0: - Advertising Router 1.1.1.1, seq 0x8000000e, age 6s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Neighbor Network-ID 3.3.3.3 - Neighbor Interface-ID 0.0.0.6, Interface 0.0.0.6, metric 64 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 52) fe80::3 > fe80::1: OSPFv3, LS-Update, length 52 - Router-ID 3.3.3.3, Backbone Area - Advertising Router 3.3.3.3, seq 0x80000002, age 3600s, length 12 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Prefixes 0: -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 244) fe80::3 > fe80::2: OSPFv3, LS-Update, length 244 - Router-ID 3.3.3.3, Backbone Area - Advertising Router 3.3.3.3, seq 0x80000002, age 1s, length 16 - Network LSA (2), Area Local Scope, LSA-ID 0.0.0.6 - Options [V6, External, Router, Demand Circuit] - Connected Routers: - 3.3.3.3 - 2.2.2.2 - 1.1.1.1 - Advertising Router 3.3.3.3, seq 0x80000002, age 3600s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4, metric 16777215 - 2001:db8:0:34::/64, metric 0 - Advertising Router 3.3.3.3, seq 0x80000002, age 3600s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.3, metric 16777215 - 2001:db8:0:4::/64, metric 0 - Advertising Router 3.3.3.3, seq 0x80000002, age 1s, length 24 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.24.0 - Network LSA (2), Area Local Scope, LSA-ID 0.0.0.6 - Prefixes 1: - 2001:db8::/64, metric 0 - Advertising Router 3.3.3.3, seq 0x80000008, age 1s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Neighbor Network-ID 3.3.3.3 - Neighbor Interface-ID 0.0.0.6, Interface 0.0.0.6, metric 64 - Advertising Router 3.3.3.3, seq 0x80000003, age 3600s, length 12 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Prefixes 0: -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 244) fe80::3 > fe80::1: OSPFv3, LS-Update, length 244 - Router-ID 3.3.3.3, Backbone Area - Advertising Router 3.3.3.3, seq 0x80000002, age 1s, length 16 - Network LSA (2), Area Local Scope, LSA-ID 0.0.0.6 - Options [V6, External, Router, Demand Circuit] - Connected Routers: - 3.3.3.3 - 2.2.2.2 - 1.1.1.1 - Advertising Router 3.3.3.3, seq 0x80000002, age 3600s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4, metric 16777215 - 2001:db8:0:34::/64, metric 0 - Advertising Router 3.3.3.3, seq 0x80000002, age 3600s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.3, metric 16777215 - 2001:db8:0:4::/64, metric 0 - Advertising Router 3.3.3.3, seq 0x80000002, age 1s, length 24 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.24.0 - Network LSA (2), Area Local Scope, LSA-ID 0.0.0.6 - Prefixes 1: - 2001:db8::/64, metric 0 - Advertising Router 3.3.3.3, seq 0x80000008, age 1s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Neighbor Network-ID 3.3.3.3 - Neighbor Interface-ID 0.0.0.6, Interface 0.0.0.6, metric 64 - Advertising Router 3.3.3.3, seq 0x80000003, age 3600s, length 12 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Prefixes 0: -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 36) fe80::2 > fe80::3: OSPFv3, LS-Ack, length 36 - Router-ID 2.2.2.2, Backbone Area - Advertising Router 3.3.3.3, seq 0x80000003, age 3600s, length 12 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 56) fe80::1 > fe80::3: OSPFv3, LS-Update, length 56 - Router-ID 1.1.1.1, Backbone Area - Advertising Router 1.1.1.1, seq 0x80000002, age 3600s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.3, metric 16777215 - 2001:db8:0:12::/64, metric 0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 56) fe80::3 > fe80::2: OSPFv3, LS-Update, length 56 - Router-ID 3.3.3.3, Backbone Area - Advertising Router 1.1.1.1, seq 0x80000002, age 3600s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.3, metric 16777215 - 2001:db8:0:12::/64, metric 0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 56) fe80::3 > fe80::1: OSPFv3, LS-Update, length 56 - Router-ID 3.3.3.3, Backbone Area - Advertising Router 1.1.1.1, seq 0x80000002, age 3600s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.3, metric 16777215 - 2001:db8:0:12::/64, metric 0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 92) fe80::2 > fe80::3: OSPFv3, LS-Update, length 92 - Router-ID 2.2.2.2, Backbone Area - Advertising Router 2.2.2.2, seq 0x80000002, age 3600s, length 12 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Prefixes 0: - Advertising Router 2.2.2.2, seq 0x8000000e, age 5s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Neighbor Network-ID 3.3.3.3 - Neighbor Interface-ID 0.0.0.6, Interface 0.0.0.6, metric 64 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 176) fe80::2 > fe80::3: OSPFv3, LS-Ack, length 176 - Router-ID 2.2.2.2, Backbone Area - Advertising Router 1.1.1.1, seq 0x80000002, age 3600s, length 12 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 1.1.1.1, seq 0x8000000e, age 6s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 3.3.3.3, seq 0x80000002, age 1s, length 16 - Network LSA (2), Area Local Scope, LSA-ID 0.0.0.6 - Advertising Router 3.3.3.3, seq 0x80000002, age 3600s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4 - Advertising Router 3.3.3.3, seq 0x80000002, age 3600s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.3 - Advertising Router 3.3.3.3, seq 0x80000002, age 1s, length 24 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.24.0 - Advertising Router 3.3.3.3, seq 0x80000008, age 1s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 1.1.1.1, seq 0x80000002, age 3600s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.3 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 92) fe80::3 > fe80::2: OSPFv3, LS-Update, length 92 - Router-ID 3.3.3.3, Backbone Area - Advertising Router 2.2.2.2, seq 0x80000002, age 3600s, length 12 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Prefixes 0: - Advertising Router 2.2.2.2, seq 0x8000000e, age 6s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Neighbor Network-ID 3.3.3.3 - Neighbor Interface-ID 0.0.0.6, Interface 0.0.0.6, metric 64 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 92) fe80::3 > fe80::1: OSPFv3, LS-Update, length 92 - Router-ID 3.3.3.3, Backbone Area - Advertising Router 2.2.2.2, seq 0x80000002, age 3600s, length 12 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Prefixes 0: - Advertising Router 2.2.2.2, seq 0x8000000e, age 6s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Neighbor Network-ID 3.3.3.3 - Neighbor Interface-ID 0.0.0.6, Interface 0.0.0.6, metric 64 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 236) fe80::1 > fe80::3: OSPFv3, LS-Ack, length 236 - Router-ID 1.1.1.1, Backbone Area - Advertising Router 1.1.1.1, seq 0x80000002, age 3600s, length 12 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 1.1.1.1, seq 0x8000000e, age 6s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 3.3.3.3, seq 0x80000002, age 3600s, length 12 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 3.3.3.3, seq 0x80000002, age 1s, length 16 - Network LSA (2), Area Local Scope, LSA-ID 0.0.0.6 - Advertising Router 3.3.3.3, seq 0x80000002, age 3600s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.4 - Advertising Router 3.3.3.3, seq 0x80000002, age 3600s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.3 - Advertising Router 3.3.3.3, seq 0x80000002, age 1s, length 24 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.24.0 - Advertising Router 3.3.3.3, seq 0x80000008, age 1s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 1.1.1.1, seq 0x80000002, age 3600s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.3 - Advertising Router 2.2.2.2, seq 0x80000002, age 3600s, length 12 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 2.2.2.2, seq 0x8000000e, age 6s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 56) fe80::2 > fe80::3: OSPFv3, LS-Update, length 56 - Router-ID 2.2.2.2, Backbone Area - Advertising Router 2.2.2.2, seq 0x80000002, age 3600s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.3, metric 16777215 - 2001:db8:0:12::/64, metric 0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 56) fe80::3 > fe80::2: OSPFv3, LS-Update, length 56 - Router-ID 3.3.3.3, Backbone Area - Advertising Router 2.2.2.2, seq 0x80000002, age 3600s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.3, metric 16777215 - 2001:db8:0:12::/64, metric 0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 56) fe80::3 > fe80::1: OSPFv3, LS-Update, length 56 - Router-ID 3.3.3.3, Backbone Area - Advertising Router 2.2.2.2, seq 0x80000002, age 3600s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.3, metric 16777215 - 2001:db8:0:12::/64, metric 0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 76) fe80::2 > fe80::3: OSPFv3, LS-Ack, length 76 - Router-ID 2.2.2.2, Backbone Area - Advertising Router 2.2.2.2, seq 0x80000002, age 3600s, length 12 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 2.2.2.2, seq 0x8000000e, age 6s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Advertising Router 2.2.2.2, seq 0x80000002, age 3600s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.3 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 52) fe80::3 > fe80::1: OSPFv3, LS-Update, length 52 - Router-ID 3.3.3.3, Backbone Area - Advertising Router 3.3.3.3, seq 0x80000003, age 3600s, length 12 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Prefixes 0: -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 36) fe80::1 > fe80::3: OSPFv3, LS-Ack, length 36 - Router-ID 1.1.1.1, Backbone Area - Advertising Router 3.3.3.3, seq 0x80000003, age 3600s, length 12 - Intra-Area Prefix LSA (9), Area Local Scope, LSA-ID 0.0.0.0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 36) fe80::1 > fe80::3: OSPFv3, LS-Ack, length 36 - Router-ID 1.1.1.1, Backbone Area - Advertising Router 2.2.2.2, seq 0x80000002, age 3600s, length 16 - Inter-Area Prefix LSA (3), Area Local Scope, LSA-ID 0.0.0.3 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 44) fe80::3 > fe80::2: OSPFv3, Hello, length 44 - Router-ID 3.3.3.3, Backbone Area - Options [V6, External, Router] - Hello Timer 30s, Dead Timer 120s, Interface-ID 0.0.0.6, Priority 100 - Designated Router 3.3.3.3 - Neighbor List: - 2.2.2.2 - 1.1.1.1 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 44) fe80::3 > fe80::1: OSPFv3, Hello, length 44 - Router-ID 3.3.3.3, Backbone Area - Options [V6, External, Router] - Hello Timer 30s, Dead Timer 120s, Interface-ID 0.0.0.6, Priority 100 - Designated Router 3.3.3.3 - Neighbor List: - 2.2.2.2 - 1.1.1.1 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 40) fe80::1 > fe80::3: OSPFv3, Hello, length 40 - Router-ID 1.1.1.1, Backbone Area - Options [V6, External, Router] - Hello Timer 30s, Dead Timer 120s, Interface-ID 0.0.0.6, Priority 1 - Designated Router 3.3.3.3, Backup Designated Router 1.1.1.1 - Neighbor List: - 3.3.3.3 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 60) fe80::3 > fe80::2: OSPFv3, LS-Update, length 60 - Router-ID 3.3.3.3, Backbone Area - Advertising Router 3.3.3.3, seq 0x80000009, age 1s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Neighbor Network-ID 3.3.3.3 - Neighbor Interface-ID 0.0.0.6, Interface 0.0.0.6, metric 64 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 60) fe80::3 > fe80::1: OSPFv3, LS-Update, length 60 - Router-ID 3.3.3.3, Backbone Area - Advertising Router 3.3.3.3, seq 0x80000009, age 1s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Neighbor Network-ID 3.3.3.3 - Neighbor Interface-ID 0.0.0.6, Interface 0.0.0.6, metric 64 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 40) fe80::2 > fe80::3: OSPFv3, Hello, length 40 - Router-ID 2.2.2.2, Backbone Area - Options [V6, External, Router] - Hello Timer 30s, Dead Timer 120s, Interface-ID 0.0.0.6, Priority 1 - Designated Router 3.3.3.3, Backup Designated Router 2.2.2.2 - Neighbor List: - 3.3.3.3 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 36) fe80::2 > fe80::3: OSPFv3, LS-Ack, length 36 - Router-ID 2.2.2.2, Backbone Area - Advertising Router 3.3.3.3, seq 0x80000009, age 1s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 36) fe80::1 > fe80::3: OSPFv3, LS-Ack, length 36 - Router-ID 1.1.1.1, Backbone Area - Advertising Router 3.3.3.3, seq 0x80000009, age 1s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 60) fe80::3 > fe80::2: OSPFv3, LS-Update, length 60 - Router-ID 3.3.3.3, Backbone Area - Advertising Router 3.3.3.3, seq 0x8000000a, age 1s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Neighbor Network-ID 3.3.3.3 - Neighbor Interface-ID 0.0.0.6, Interface 0.0.0.6, metric 64 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 60) fe80::3 > fe80::1: OSPFv3, LS-Update, length 60 - Router-ID 3.3.3.3, Backbone Area - Advertising Router 3.3.3.3, seq 0x8000000a, age 1s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Neighbor Network-ID 3.3.3.3 - Neighbor Interface-ID 0.0.0.6, Interface 0.0.0.6, metric 64 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 36) fe80::1 > fe80::3: OSPFv3, LS-Ack, length 36 - Router-ID 1.1.1.1, Backbone Area - Advertising Router 3.3.3.3, seq 0x8000000a, age 1s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 36) fe80::2 > fe80::3: OSPFv3, LS-Ack, length 36 - Router-ID 2.2.2.2, Backbone Area - Advertising Router 3.3.3.3, seq 0x8000000a, age 1s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 44) fe80::3 > fe80::2: OSPFv3, Hello, length 44 - Router-ID 3.3.3.3, Backbone Area - Options [V6, External, Router] - Hello Timer 30s, Dead Timer 120s, Interface-ID 0.0.0.6, Priority 100 - Designated Router 3.3.3.3, Backup Designated Router 2.2.2.2 - Neighbor List: - 2.2.2.2 - 1.1.1.1 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 44) fe80::3 > fe80::1: OSPFv3, Hello, length 44 - Router-ID 3.3.3.3, Backbone Area - Options [V6, External, Router] - Hello Timer 30s, Dead Timer 120s, Interface-ID 0.0.0.6, Priority 100 - Designated Router 3.3.3.3, Backup Designated Router 2.2.2.2 - Neighbor List: - 2.2.2.2 - 1.1.1.1 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 60) fe80::2 > fe80::3: OSPFv3, LS-Update, length 60 - Router-ID 2.2.2.2, Backbone Area - Advertising Router 2.2.2.2, seq 0x8000000f, age 1s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Neighbor Network-ID 3.3.3.3 - Neighbor Interface-ID 0.0.0.6, Interface 0.0.0.6, metric 64 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 60) fe80::1 > fe80::3: OSPFv3, LS-Update, length 60 - Router-ID 1.1.1.1, Backbone Area - Advertising Router 1.1.1.1, seq 0x8000000f, age 1s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Neighbor Network-ID 3.3.3.3 - Neighbor Interface-ID 0.0.0.6, Interface 0.0.0.6, metric 64 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 60) fe80::3 > fe80::2: OSPFv3, LS-Update, length 60 - Router-ID 3.3.3.3, Backbone Area - Advertising Router 1.1.1.1, seq 0x8000000f, age 2s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Neighbor Network-ID 3.3.3.3 - Neighbor Interface-ID 0.0.0.6, Interface 0.0.0.6, metric 64 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 60) fe80::3 > fe80::1: OSPFv3, LS-Update, length 60 - Router-ID 3.3.3.3, Backbone Area - Advertising Router 1.1.1.1, seq 0x8000000f, age 2s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Neighbor Network-ID 3.3.3.3 - Neighbor Interface-ID 0.0.0.6, Interface 0.0.0.6, metric 64 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 36) fe80::3 > fe80::2: OSPFv3, LS-Ack, length 36 - Router-ID 3.3.3.3, Backbone Area - Advertising Router 2.2.2.2, seq 0x8000000f, age 1s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 36) fe80::3 > fe80::1: OSPFv3, LS-Ack, length 36 - Router-ID 3.3.3.3, Backbone Area - Advertising Router 2.2.2.2, seq 0x8000000f, age 1s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 36) fe80::2 > fe80::3: OSPFv3, LS-Ack, length 36 - Router-ID 2.2.2.2, Backbone Area - Advertising Router 1.1.1.1, seq 0x8000000f, age 2s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 36) fe80::1 > fe80::3: OSPFv3, LS-Ack, length 36 - Router-ID 1.1.1.1, Backbone Area - Advertising Router 1.1.1.1, seq 0x8000000f, age 2s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 60) fe80::3 > fe80::1: OSPFv3, LS-Update, length 60 - Router-ID 3.3.3.3, Backbone Area - Advertising Router 2.2.2.2, seq 0x8000000f, age 6s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 - Options [V6, External, Router, Demand Circuit], RLA-Flags [ABR] - Neighbor Network-ID 3.3.3.3 - Neighbor Interface-ID 0.0.0.6, Interface 0.0.0.6, metric 64 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 36) fe80::1 > fe80::3: OSPFv3, LS-Ack, length 36 - Router-ID 1.1.1.1, Backbone Area - Advertising Router 2.2.2.2, seq 0x8000000f, age 6s, length 20 - Router LSA (1), Area Local Scope, LSA-ID 0.0.0.0 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 40) fe80::1 > fe80::3: OSPFv3, Hello, length 40 - Router-ID 1.1.1.1, Backbone Area - Options [V6, External, Router] - Hello Timer 30s, Dead Timer 120s, Interface-ID 0.0.0.6, Priority 1 - Designated Router 3.3.3.3, Backup Designated Router 1.1.1.1 - Neighbor List: - 3.3.3.3 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 40) fe80::2 > fe80::3: OSPFv3, Hello, length 40 - Router-ID 2.2.2.2, Backbone Area - Options [V6, External, Router] - Hello Timer 30s, Dead Timer 120s, Interface-ID 0.0.0.6, Priority 1 - Designated Router 3.3.3.3, Backup Designated Router 2.2.2.2 - Neighbor List: - 3.3.3.3 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 44) fe80::3 > fe80::2: OSPFv3, Hello, length 44 - Router-ID 3.3.3.3, Backbone Area - Options [V6, External, Router] - Hello Timer 30s, Dead Timer 120s, Interface-ID 0.0.0.6, Priority 100 - Designated Router 3.3.3.3, Backup Designated Router 2.2.2.2 - Neighbor List: - 2.2.2.2 - 1.1.1.1 -IP6 (class 0xe0, hlim 1, next-header OSPF (89) payload length: 44) fe80::3 > fe80::1: OSPFv3, Hello, length 44 - Router-ID 3.3.3.3, Backbone Area - Options [V6, External, Router] - Hello Timer 30s, Dead Timer 120s, Interface-ID 0.0.0.6, Priority 100 - Designated Router 3.3.3.3, Backup Designated Router 2.2.2.2 - Neighbor List: - 2.2.2.2 - 1.1.1.1 diff --git a/tests/pcap-invalid-version-1.out b/tests/pcap-invalid-version-1.out deleted file mode 100644 index 5edcdda..0000000 --- a/tests/pcap-invalid-version-1.out +++ /dev/null @@ -1 +0,0 @@ -EXIT CODE 00000100 diff --git a/tests/pcap-invalid-version-1.pcap b/tests/pcap-invalid-version-1.pcap deleted file mode 100644 index 9dd0429..0000000 Binary files a/tests/pcap-invalid-version-1.pcap and /dev/null differ diff --git a/tests/pcap-invalid-version-2.out b/tests/pcap-invalid-version-2.out deleted file mode 100644 index 5edcdda..0000000 --- a/tests/pcap-invalid-version-2.out +++ /dev/null @@ -1 +0,0 @@ -EXIT CODE 00000100 diff --git a/tests/pcap-invalid-version-2.pcap b/tests/pcap-invalid-version-2.pcap deleted file mode 100644 index 4217d1e..0000000 Binary files a/tests/pcap-invalid-version-2.pcap and /dev/null differ diff --git a/tests/pcap-ng-invalid-vers-1.out b/tests/pcap-ng-invalid-vers-1.out deleted file mode 100644 index 5edcdda..0000000 --- a/tests/pcap-ng-invalid-vers-1.out +++ /dev/null @@ -1 +0,0 @@ -EXIT CODE 00000100 diff --git a/tests/pcap-ng-invalid-vers-1.pcap b/tests/pcap-ng-invalid-vers-1.pcap deleted file mode 100644 index 7bbb7ab..0000000 Binary files a/tests/pcap-ng-invalid-vers-1.pcap and /dev/null differ diff --git a/tests/pcap-ng-invalid-vers-2.out b/tests/pcap-ng-invalid-vers-2.out deleted file mode 100644 index 5edcdda..0000000 --- a/tests/pcap-ng-invalid-vers-2.out +++ /dev/null @@ -1 +0,0 @@ -EXIT CODE 00000100 diff --git a/tests/pcap-ng-invalid-vers-2.pcap b/tests/pcap-ng-invalid-vers-2.pcap deleted file mode 100644 index 77595f4..0000000 Binary files a/tests/pcap-ng-invalid-vers-2.pcap and /dev/null differ diff --git a/tests/pgm_zmtp1.pcap b/tests/pgm_zmtp1.pcap deleted file mode 100644 index ee01e91..0000000 Binary files a/tests/pgm_zmtp1.pcap and /dev/null differ diff --git a/tests/pgm_zmtp1v.out b/tests/pgm_zmtp1v.out deleted file mode 100644 index 09044a7..0000000 --- a/tests/pgm_zmtp1v.out +++ /dev/null @@ -1,76 +0,0 @@ -IP (tos 0xb8, ttl 16, id 0, offset 0, flags [DF], proto PGM (113), length 56) - 10.0.0.45 > 239.255.0.16: 10.0.0.45.13320 > 239.255.0.16.5563: PGM, length 0 0x3329041eba74 SPM seq 92190 trail 21618 lead 54950 nla 10.0.0.45 [36] -IP (tos 0xb8, ttl 16, id 0, offset 0, flags [DF], proto PGM (113), length 56) - 10.0.0.45 > 239.255.0.16: 10.0.0.45.13320 > 239.255.0.16.5563: PGM, length 0 0x3329041eba74 SPM seq 92191 trail 21618 lead 54950 nla 10.0.0.45 [36] -IP (tos 0xb8, ttl 16, id 0, offset 0, flags [DF], proto PGM (113), length 56) - 10.0.0.45 > 239.255.0.16: 10.0.0.45.13320 > 239.255.0.16.5563: PGM, length 0 0x3329041eba74 SPM seq 92192 trail 21618 lead 54950 nla 10.0.0.45 [36] -IP (tos 0xb8, ttl 16, id 0, offset 0, flags [DF], proto PGM (113), length 1480) - 10.0.0.45 > 239.255.0.16: 10.0.0.45.13320 > 239.255.0.16.5563: PGM, length 1436 0x3329041eba74 ODATA trail 21618 seq 54951 [1460] - frame offset 0x0000 - frame flags+body (8-bit) length 116, flags 0x00 (-|-|-|-|-|-|-|-), first 115 byte(s) of body: - 0x0000: 5468 6973 2069 7320 6120 7368 6f72 7420 This.is.a.short. - 0x0010: 4153 4349 4920 6d65 7373 6167 6520 666f ASCII.message.fo - 0x0020: 6c6c 6f77 6564 2062 7920 6120 7368 6f72 llowed.by.a.shor - 0x0030: 7420 6269 6e61 7279 206d 6573 7361 6765 t.binary.message - 0x0040: 2c20 6120 6c6f 6e67 6572 2041 5343 4949 ,.a.longer.ASCII - 0x0050: 206d 6573 7361 6765 2061 6e64 2061 2073 .message.and.a.s - 0x0060: 686f 7274 2041 5343 4949 206d 6573 7361 hort.ASCII.messa - 0x0070: 6765 2e ge. - - frame flags+body (8-bit) length 17, flags 0x00 (-|-|-|-|-|-|-|-), first 16 byte(s) of body: - 0x0000: 0001 0203 0405 0607 0809 0a0b 0c0d 0e0f ................ - - frame flags+body (64-bit) length 2790 (1290 captured), flags 0x00 (-|-|-|-|-|-|-|-), first 128 byte(s) of body: - 0x0000: 5468 6520 7175 6963 6b20 6272 6f77 6e20 The.quick.brown. - 0x0010: 666f 7820 6a75 6d70 7320 6f76 6572 2074 fox.jumps.over.t - 0x0020: 6865 206c 617a 7920 646f 672e 2054 6865 he.lazy.dog..The - 0x0030: 2071 7569 636b 2062 726f 776e 2066 6f78 .quick.brown.fox - 0x0040: 206a 756d 7073 206f 7665 7220 7468 6520 .jumps.over.the. - 0x0050: 6c61 7a79 2064 6f67 2e20 5468 6520 7175 lazy.dog..The.qu - 0x0060: 6963 6b20 6272 6f77 6e20 666f 7820 6a75 ick.brown.fox.ju - 0x0070: 6d70 7320 6f76 6572 2074 6865 206c 617a mps.over.the.laz - [|zmtp1] -IP (tos 0xb8, ttl 16, id 0, offset 0, flags [DF], proto PGM (113), length 1480) - 10.0.0.45 > 239.255.0.16: 10.0.0.45.13320 > 239.255.0.16.5563: PGM, length 1436 0x3329041eba74 ODATA trail 21619 seq 54952 [1460] - frame offset 0xffff - frame intermediate part, 1434 bytes, first 128 byte(s): - 0x0000: 7220 7468 6520 6c61 7a79 2064 6f67 2e20 r.the.lazy.dog.. - 0x0010: 5468 6520 7175 6963 6b20 6272 6f77 6e20 The.quick.brown. - 0x0020: 666f 7820 6a75 6d70 7320 6f76 6572 2074 fox.jumps.over.t - 0x0030: 6865 206c 617a 7920 646f 672e 2054 6865 he.lazy.dog..The - 0x0040: 2071 7569 636b 2062 726f 776e 2066 6f78 .quick.brown.fox - 0x0050: 206a 756d 7073 206f 7665 7220 7468 6520 .jumps.over.the. - 0x0060: 6c61 7a79 2064 6f67 2e20 5468 6520 7175 lazy.dog..The.qu - 0x0070: 6963 6b20 6272 6f77 6e20 666f 7820 6a75 ick.brown.fox.ju - -IP (tos 0xb8, ttl 16, id 0, offset 0, flags [DF], proto PGM (113), length 149) - 10.0.0.45 > 239.255.0.16: 10.0.0.45.13320 > 239.255.0.16.5563: PGM, length 105 0x3329041eba74 ODATA trail 21620 seq 54953 [129] - frame offset 0x0042 - frame intermediate part, 66 bytes, first 66 byte(s): - 0x0000: 7073 206f 7665 7220 7468 6520 6c61 7a79 ps.over.the.lazy - 0x0010: 2064 6f67 2e20 5468 6520 7175 6963 6b20 .dog..The.quick. - 0x0020: 6272 6f77 6e20 666f 7820 6a75 6d70 7320 brown.fox.jumps. - 0x0030: 6f76 6572 2074 6865 206c 617a 7920 646f over.the.lazy.do - 0x0040: 672e g. - - frame flags+body (8-bit) length 36, flags 0x00 (-|-|-|-|-|-|-|-), first 35 byte(s) of body: - 0x0000: 5468 6973 2069 7320 7468 6520 7472 6169 This.is.the.trai - 0x0010: 6c69 6e67 2041 5343 4949 206d 6573 7361 ling.ASCII.messa - 0x0020: 6765 2e ge. - -IP (tos 0xb8, ttl 16, id 0, offset 0, flags [DF], proto PGM (113), length 56) - 10.0.0.45 > 239.255.0.16: 10.0.0.45.13320 > 239.255.0.16.5563: PGM, length 0 0x3329041eba74 SPM seq 92193 trail 21621 lead 54953 nla 10.0.0.45 [36] -IP (tos 0xb8, ttl 1, id 0, offset 0, flags [DF], proto PGM (113), length 36) - 10.0.0.45 > 239.255.0.16: 10.0.0.45.5563 > 239.255.0.16.13320: PGM, length 0 0x3329041eba74 SPMR [16] -IP (tos 0xb8, ttl 16, id 0, offset 0, flags [DF], proto PGM (113), length 56) - 10.0.0.45 > 239.255.0.16: 10.0.0.45.13320 > 239.255.0.16.5563: PGM, length 0 0x3329041eba74 SPM seq 92194 trail 21621 lead 54953 nla 10.0.0.45 [36] -IP (tos 0xb8, ttl 16, id 0, offset 0, flags [DF], proto PGM (113), length 56) - 10.0.0.45 > 239.255.0.16: 10.0.0.45.13320 > 239.255.0.16.5563: PGM, length 0 0x3329041eba74 SPM seq 92195 trail 21621 lead 54953 nla 10.0.0.45 [36] -IP (tos 0xb8, ttl 16, id 0, offset 0, flags [DF], proto PGM (113), length 56) - 10.0.0.45 > 239.255.0.16: 10.0.0.45.13320 > 239.255.0.16.5563: PGM, length 0 0x3329041eba74 SPM seq 92196 trail 21621 lead 54953 nla 10.0.0.45 [36] -IP (tos 0xb8, ttl 16, id 0, offset 0, flags [DF], proto PGM (113), length 56) - 10.0.0.45 > 239.255.0.16: 10.0.0.45.13320 > 239.255.0.16.5563: PGM, length 0 0x3329041eba74 SPM seq 92197 trail 21621 lead 54953 nla 10.0.0.45 [36] -IP (tos 0xb8, ttl 16, id 0, offset 0, flags [DF], proto PGM (113), length 56) - 10.0.0.45 > 239.255.0.16: 10.0.0.45.13320 > 239.255.0.16.5563: PGM, length 0 0x3329041eba74 SPM seq 92198 trail 21621 lead 54953 nla 10.0.0.45 [36] -IP (tos 0xb8, ttl 16, id 0, offset 0, flags [DF], proto PGM (113), length 56) - 10.0.0.45 > 239.255.0.16: 10.0.0.45.13320 > 239.255.0.16.5563: PGM, length 0 0x3329041eba74 SPM seq 92199 trail 21621 lead 54953 nla 10.0.0.45 [36] diff --git a/tests/pgmv.out b/tests/pgmv.out deleted file mode 100644 index 606f3c0..0000000 --- a/tests/pgmv.out +++ /dev/null @@ -1,28 +0,0 @@ -IP (tos 0xb8, ttl 16, id 0, offset 0, flags [DF], proto PGM (113), length 56) - 10.0.0.45 > 239.255.0.16: 10.0.0.45.13320 > 239.255.0.16.5563: PGM, length 0 0x3329041eba74 SPM seq 92190 trail 21618 lead 54950 nla 10.0.0.45 [36] -IP (tos 0xb8, ttl 16, id 0, offset 0, flags [DF], proto PGM (113), length 56) - 10.0.0.45 > 239.255.0.16: 10.0.0.45.13320 > 239.255.0.16.5563: PGM, length 0 0x3329041eba74 SPM seq 92191 trail 21618 lead 54950 nla 10.0.0.45 [36] -IP (tos 0xb8, ttl 16, id 0, offset 0, flags [DF], proto PGM (113), length 56) - 10.0.0.45 > 239.255.0.16: 10.0.0.45.13320 > 239.255.0.16.5563: PGM, length 0 0x3329041eba74 SPM seq 92192 trail 21618 lead 54950 nla 10.0.0.45 [36] -IP (tos 0xb8, ttl 16, id 0, offset 0, flags [DF], proto PGM (113), length 1480) - 10.0.0.45 > 239.255.0.16: 10.0.0.45.13320 > 239.255.0.16.5563: PGM, length 1436 0x3329041eba74 ODATA trail 21618 seq 54951 [1460] -IP (tos 0xb8, ttl 16, id 0, offset 0, flags [DF], proto PGM (113), length 1480) - 10.0.0.45 > 239.255.0.16: 10.0.0.45.13320 > 239.255.0.16.5563: PGM, length 1436 0x3329041eba74 ODATA trail 21619 seq 54952 [1460] -IP (tos 0xb8, ttl 16, id 0, offset 0, flags [DF], proto PGM (113), length 149) - 10.0.0.45 > 239.255.0.16: 10.0.0.45.13320 > 239.255.0.16.5563: PGM, length 105 0x3329041eba74 ODATA trail 21620 seq 54953 [129] -IP (tos 0xb8, ttl 16, id 0, offset 0, flags [DF], proto PGM (113), length 56) - 10.0.0.45 > 239.255.0.16: 10.0.0.45.13320 > 239.255.0.16.5563: PGM, length 0 0x3329041eba74 SPM seq 92193 trail 21621 lead 54953 nla 10.0.0.45 [36] -IP (tos 0xb8, ttl 1, id 0, offset 0, flags [DF], proto PGM (113), length 36) - 10.0.0.45 > 239.255.0.16: 10.0.0.45.5563 > 239.255.0.16.13320: PGM, length 0 0x3329041eba74 SPMR [16] -IP (tos 0xb8, ttl 16, id 0, offset 0, flags [DF], proto PGM (113), length 56) - 10.0.0.45 > 239.255.0.16: 10.0.0.45.13320 > 239.255.0.16.5563: PGM, length 0 0x3329041eba74 SPM seq 92194 trail 21621 lead 54953 nla 10.0.0.45 [36] -IP (tos 0xb8, ttl 16, id 0, offset 0, flags [DF], proto PGM (113), length 56) - 10.0.0.45 > 239.255.0.16: 10.0.0.45.13320 > 239.255.0.16.5563: PGM, length 0 0x3329041eba74 SPM seq 92195 trail 21621 lead 54953 nla 10.0.0.45 [36] -IP (tos 0xb8, ttl 16, id 0, offset 0, flags [DF], proto PGM (113), length 56) - 10.0.0.45 > 239.255.0.16: 10.0.0.45.13320 > 239.255.0.16.5563: PGM, length 0 0x3329041eba74 SPM seq 92196 trail 21621 lead 54953 nla 10.0.0.45 [36] -IP (tos 0xb8, ttl 16, id 0, offset 0, flags [DF], proto PGM (113), length 56) - 10.0.0.45 > 239.255.0.16: 10.0.0.45.13320 > 239.255.0.16.5563: PGM, length 0 0x3329041eba74 SPM seq 92197 trail 21621 lead 54953 nla 10.0.0.45 [36] -IP (tos 0xb8, ttl 16, id 0, offset 0, flags [DF], proto PGM (113), length 56) - 10.0.0.45 > 239.255.0.16: 10.0.0.45.13320 > 239.255.0.16.5563: PGM, length 0 0x3329041eba74 SPM seq 92198 trail 21621 lead 54953 nla 10.0.0.45 [36] -IP (tos 0xb8, ttl 16, id 0, offset 0, flags [DF], proto PGM (113), length 56) - 10.0.0.45 > 239.255.0.16: 10.0.0.45.13320 > 239.255.0.16.5563: PGM, length 0 0x3329041eba74 SPM seq 92199 trail 21621 lead 54953 nla 10.0.0.45 [36] diff --git a/tests/pimv2_bootstrap-v.out b/tests/pimv2_bootstrap-v.out deleted file mode 100644 index 1d56445..0000000 --- a/tests/pimv2_bootstrap-v.out +++ /dev/null @@ -1,24 +0,0 @@ -IP (tos 0xc0, ttl 1, id 477, offset 0, flags [none], proto PIM (103), length 66) - 10.0.0.5 > 224.0.0.13: PIMv2, length 46 - Bootstrap, cksum 0xe410 (correct) tag=4b0 hashmlen=0 BSRprio=0 BSR=1.1.1.1 (group0: 224.0.0.0/4 RPcnt=2 FRPcnt=2 RP0=2.2.2.2,holdtime=2m30s,prio=0 RP1=3.3.3.3,holdtime=2m30s,prio=0) -IP (tos 0xc0, ttl 255, id 433, offset 0, flags [none], proto PIM (103), length 42) - 10.0.0.6 > 1.1.1.1: PIMv2, length 22 - Candidate RP Advertisement, cksum 0xee5e (correct) prefix-cnt=1 prio=0 holdtime=2m30s RP=3.3.3.3 Group0=224.0.0.0/4 -IP (tos 0xc0, ttl 1, id 520, offset 0, flags [none], proto PIM (103), length 66) - 10.0.0.5 > 224.0.0.13: PIMv2, length 46 - Bootstrap, cksum 0xdf74 (correct) tag=94c hashmlen=0 BSRprio=0 BSR=1.1.1.1 (group0: 224.0.0.0/4 RPcnt=2 FRPcnt=2 RP0=2.2.2.2,holdtime=2m30s,prio=0 RP1=3.3.3.3,holdtime=2m30s,prio=0) -IP (tos 0xc0, ttl 255, id 471, offset 0, flags [none], proto PIM (103), length 42) - 10.0.0.6 > 1.1.1.1: PIMv2, length 22 - Candidate RP Advertisement, cksum 0xee5e (correct) prefix-cnt=1 prio=0 holdtime=2m30s RP=3.3.3.3 Group0=224.0.0.0/4 -IP (tos 0xc0, ttl 1, id 563, offset 0, flags [none], proto PIM (103), length 66) - 10.0.0.5 > 224.0.0.13: PIMv2, length 46 - Bootstrap, cksum 0xd555 (correct) tag=136b hashmlen=0 BSRprio=0 BSR=1.1.1.1 (group0: 224.0.0.0/4 RPcnt=2 FRPcnt=2 RP0=2.2.2.2,holdtime=2m30s,prio=0 RP1=3.3.3.3,holdtime=2m30s,prio=0) -IP (tos 0xc0, ttl 255, id 508, offset 0, flags [none], proto PIM (103), length 42) - 10.0.0.6 > 1.1.1.1: PIMv2, length 22 - Candidate RP Advertisement, cksum 0xee5e (correct) prefix-cnt=1 prio=0 holdtime=2m30s RP=3.3.3.3 Group0=224.0.0.0/4 -IP (tos 0xc0, ttl 1, id 606, offset 0, flags [none], proto PIM (103), length 66) - 10.0.0.5 > 224.0.0.13: PIMv2, length 46 - Bootstrap, cksum 0xe3ab (correct) tag=515 hashmlen=0 BSRprio=0 BSR=1.1.1.1 (group0: 224.0.0.0/4 RPcnt=2 FRPcnt=2 RP0=2.2.2.2,holdtime=2m30s,prio=0 RP1=3.3.3.3,holdtime=2m30s,prio=0) -IP (tos 0xc0, ttl 255, id 547, offset 0, flags [none], proto PIM (103), length 42) - 10.0.0.6 > 1.1.1.1: PIMv2, length 22 - Candidate RP Advertisement, cksum 0xee5e (correct) prefix-cnt=1 prio=0 holdtime=2m30s RP=3.3.3.3 Group0=224.0.0.0/4 diff --git a/tests/pimv2_dm-v.out b/tests/pimv2_dm-v.out deleted file mode 100644 index 334120b..0000000 --- a/tests/pimv2_dm-v.out +++ /dev/null @@ -1,238 +0,0 @@ -IP (tos 0xc0, ttl 1, id 121, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.1 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0xb3eb (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd76852f6 - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 115, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.2 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0x4fce (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd767b714 - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0x0, ttl 31, id 4621, offset 0, flags [none], proto UDP (17), length 1498) - 172.16.40.10.1064 > 239.123.123.123.5001: UDP, length 1470 -IP (tos 0xc0, ttl 1, id 122, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.2 > 224.0.0.13: PIMv2, length 34 - Join / Prune, cksum 0x8fd8 (correct), upstream-neighbor: 10.0.0.1 - 1 group(s), holdtime: 3m30s - group #1: 239.123.123.123, joined sources: 0, pruned sources: 1 - pruned source #1: 172.16.40.10 -IP (tos 0xc0, ttl 1, id 130, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.1 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0xb3eb (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd76852f6 - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 123, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.2 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0x4fce (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd767b714 - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 141, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.1 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0xb3eb (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd76852f6 - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 131, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.2 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0x4fce (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd767b714 - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 150, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.1 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0xb3eb (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd76852f6 - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 138, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.2 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0x4fce (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd767b714 - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 160, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.1 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0xb3eb (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd76852f6 - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 147, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.2 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0x4fce (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd767b714 - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 168, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.1 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0xb3eb (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd76852f6 - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 154, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.2 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0x4fce (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd767b714 - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 179, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.1 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0xb3eb (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd76852f6 - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 162, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.2 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0x4fce (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd767b714 - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 187, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.1 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0xb3eb (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd76852f6 - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 169, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.2 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0x4fce (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd767b714 - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0x0, ttl 31, id 4804, offset 0, flags [none], proto UDP (17), length 1498) - 172.16.40.10.1064 > 239.123.123.123.5001: UDP, length 1470 -IP (tos 0x0, ttl 31, id 4805, offset 0, flags [none], proto UDP (17), length 1498) - 172.16.40.10.1064 > 239.123.123.123.5001: UDP, length 1470 -IP (tos 0xc0, ttl 1, id 171, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.2 > 224.0.0.13: PIMv2, length 34 - Join / Prune, cksum 0x8fd8 (correct), upstream-neighbor: 10.0.0.1 - 1 group(s), holdtime: 3m30s - group #1: 239.123.123.123, joined sources: 0, pruned sources: 1 - pruned source #1: 172.16.40.10 -IP (tos 0xc0, ttl 1, id 198, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.1 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0xb3eb (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd76852f6 - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 178, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.2 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0x4fce (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd767b714 - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 206, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.1 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0xb3eb (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd76852f6 - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 185, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.2 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0x4fce (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd767b714 - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 217, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.1 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0xb3eb (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd76852f6 - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 194, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.2 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0x4fce (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd767b714 - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 225, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.1 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0xb3eb (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd76852f6 - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 201, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.2 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0x4fce (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd767b714 - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 236, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.1 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0xb3eb (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd76852f6 - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 209, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.2 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0x4fce (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd767b714 - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 245, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.1 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0xb3eb (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd76852f6 - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 216, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.2 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0x4fce (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd767b714 - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0x0, ttl 31, id 4988, offset 0, flags [none], proto UDP (17), length 1498) - 172.16.40.10.1064 > 239.123.123.123.5001: UDP, length 1470 -IP (tos 0x0, ttl 31, id 4989, offset 0, flags [none], proto UDP (17), length 1498) - 172.16.40.10.1064 > 239.123.123.123.5001: UDP, length 1470 -IP (tos 0xc0, ttl 1, id 218, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.2 > 224.0.0.13: PIMv2, length 34 - Join / Prune, cksum 0x8fd8 (correct), upstream-neighbor: 10.0.0.1 - 1 group(s), holdtime: 3m30s - group #1: 239.123.123.123, joined sources: 0, pruned sources: 1 - pruned source #1: 172.16.40.10 -IP (tos 0xc0, ttl 1, id 255, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.1 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0xb3eb (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd76852f6 - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 226, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.2 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0x4fce (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd767b714 - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 diff --git a/tests/pimv2_hellos-v.out b/tests/pimv2_hellos-v.out deleted file mode 100644 index 535dd52..0000000 --- a/tests/pimv2_hellos-v.out +++ /dev/null @@ -1,42 +0,0 @@ -IP (tos 0xc0, ttl 1, id 895, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.2 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0xaa6e (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0x3f0ef4cd - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 1093, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.1 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0x6083 (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0x3ef93ece - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 912, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.2 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0xaa6e (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0x3f0ef4cd - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 1112, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.1 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0x6083 (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0x3ef93ece - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 927, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.2 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0xaa6e (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0x3f0ef4cd - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 1129, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.1 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0x6083 (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0x3ef93ece - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 diff --git a/tests/pimv2_register-v.out b/tests/pimv2_register-v.out deleted file mode 100644 index 54d4407..0000000 --- a/tests/pimv2_register-v.out +++ /dev/null @@ -1,8 +0,0 @@ -IP (tos 0x0, ttl 255, id 350, offset 0, flags [none], proto PIM (103), length 128) - 192.168.0.6 > 192.168.1.254: PIMv2, length 108 - Register, cksum 0xdeff (correct), Flags [ none ] - IP (tos 0x0, ttl 254, id 15, offset 0, flags [none], proto ICMP (1), length 100) - 192.168.20.10 > 239.1.2.3: ICMP echo request, id 3, seq 0, length 80 -IP (tos 0xc0, ttl 255, id 642, offset 0, flags [none], proto PIM (103), length 38) - 192.168.1.254 > 192.168.0.6: PIMv2, length 18 - Register Stop, cksum 0x1628 (correct) group=239.1.2.3 source=192.168.20.10 diff --git a/tests/pimv2_sm-v.out b/tests/pimv2_sm-v.out deleted file mode 100644 index 546316a..0000000 --- a/tests/pimv2_sm-v.out +++ /dev/null @@ -1,300 +0,0 @@ -IP (tos 0xc0, ttl 1, id 130, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.14 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0x41fe (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd76fc4dc - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 129, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.13 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0xb52e (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd77051ab - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 139, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.14 > 224.0.0.13: PIMv2, length 34 - Join / Prune, cksum 0x5ae5 (correct), upstream-neighbor: 10.0.0.13 - 1 group(s), holdtime: 3m30s - group #1: 239.123.123.123, joined sources: 1, pruned sources: 0 - joined source #1: 1.1.1.1(SWR) -IP (tos 0xc0, ttl 1, id 150, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.14 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0x41fe (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd76fc4dc - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 146, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.13 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0xb52e (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd77051ab - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 169, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.14 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0x41fe (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd76fc4dc - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 163, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.13 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0xb52e (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd77051ab - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 175, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.14 > 224.0.0.13: PIMv2, length 34 - Join / Prune, cksum 0x5ae5 (correct), upstream-neighbor: 10.0.0.13 - 1 group(s), holdtime: 3m30s - group #1: 239.123.123.123, joined sources: 1, pruned sources: 0 - joined source #1: 1.1.1.1(SWR) -IP (tos 0xc0, ttl 1, id 186, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.14 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0x41fe (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd76fc4dc - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 179, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.13 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0xb52e (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd77051ab - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 186, offset 0, flags [none], proto IGMP (2), length 44) - 1.1.1.1 > 224.0.0.2: igmp pimv1 RP-reachable group 239.123.123.123 RP 1.1.1.1 hold 4m30s -IP (tos 0xc0, ttl 1, id 205, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.14 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0x41fe (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd76fc4dc - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 197, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.13 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0xb52e (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd77051ab - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 213, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.14 > 224.0.0.13: PIMv2, length 34 - Join / Prune, cksum 0x5ae5 (correct), upstream-neighbor: 10.0.0.13 - 1 group(s), holdtime: 3m30s - group #1: 239.123.123.123, joined sources: 1, pruned sources: 0 - joined source #1: 1.1.1.1(SWR) -IP (tos 0xc0, ttl 1, id 224, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.14 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0x41fe (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd76fc4dc - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 214, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.13 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0xb52e (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd77051ab - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 230, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.13 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0xb52e (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd77051ab - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 243, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.14 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0x41fe (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd76fc4dc - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 250, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.14 > 224.0.0.13: PIMv2, length 34 - Join / Prune, cksum 0x5ae5 (correct), upstream-neighbor: 10.0.0.13 - 1 group(s), holdtime: 3m30s - group #1: 239.123.123.123, joined sources: 1, pruned sources: 0 - joined source #1: 1.1.1.1(SWR) -IP (tos 0xc0, ttl 1, id 240, offset 0, flags [none], proto IGMP (2), length 44) - 1.1.1.1 > 224.0.0.2: igmp pimv1 RP-reachable group 239.123.123.123 RP 1.1.1.1 hold 4m30s -IP (tos 0xc0, ttl 1, id 250, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.13 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0xb52e (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd77051ab - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 261, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.14 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0x41fe (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd76fc4dc - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 280, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.14 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0x41fe (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd76fc4dc - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 266, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.13 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0xb52e (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd77051ab - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 287, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.14 > 224.0.0.13: PIMv2, length 34 - Join / Prune, cksum 0x5ae5 (correct), upstream-neighbor: 10.0.0.13 - 1 group(s), holdtime: 3m30s - group #1: 239.123.123.123, joined sources: 1, pruned sources: 0 - joined source #1: 1.1.1.1(SWR) -IP (tos 0xc0, ttl 1, id 300, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.14 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0x41fe (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd76fc4dc - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 285, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.13 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0xb52e (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd77051ab - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 292, offset 0, flags [none], proto IGMP (2), length 44) - 1.1.1.1 > 224.0.0.2: igmp pimv1 RP-reachable group 239.123.123.123 RP 1.1.1.1 hold 4m30s -IP (tos 0xc0, ttl 1, id 316, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.14 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0x41fe (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd76fc4dc - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 301, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.13 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0xb52e (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd77051ab - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 326, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.14 > 224.0.0.13: PIMv2, length 34 - Join / Prune, cksum 0x5ae5 (correct), upstream-neighbor: 10.0.0.13 - 1 group(s), holdtime: 3m30s - group #1: 239.123.123.123, joined sources: 1, pruned sources: 0 - joined source #1: 1.1.1.1(SWR) -IP (tos 0xc0, ttl 1, id 337, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.14 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0x41fe (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd76fc4dc - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 319, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.13 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0xb52e (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd77051ab - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 353, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.14 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0x41fe (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd76fc4dc - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 335, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.13 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0xb52e (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd77051ab - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 362, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.14 > 224.0.0.13: PIMv2, length 34 - Join / Prune, cksum 0x5ae5 (correct), upstream-neighbor: 10.0.0.13 - 1 group(s), holdtime: 3m30s - group #1: 239.123.123.123, joined sources: 1, pruned sources: 0 - joined source #1: 1.1.1.1(SWR) -IP (tos 0xc0, ttl 1, id 346, offset 0, flags [none], proto IGMP (2), length 44) - 1.1.1.1 > 224.0.0.2: igmp pimv1 RP-reachable group 239.123.123.123 RP 1.1.1.1 hold 4m30s -IP (tos 0xc0, ttl 1, id 374, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.14 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0x41fe (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd76fc4dc - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 354, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.13 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0xb52e (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd77051ab - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 390, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.14 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0x41fe (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd76fc4dc - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 372, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.13 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0xb52e (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd77051ab - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 399, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.14 > 224.0.0.13: PIMv2, length 34 - Join / Prune, cksum 0x5ae5 (correct), upstream-neighbor: 10.0.0.13 - 1 group(s), holdtime: 3m30s - group #1: 239.123.123.123, joined sources: 1, pruned sources: 0 - joined source #1: 1.1.1.1(SWR) -IP (tos 0xc0, ttl 1, id 412, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.14 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0x41fe (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd76fc4dc - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 388, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.13 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0xb52e (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd77051ab - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 420, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.14 > 224.0.0.13: PIMv2, length 34 - Join / Prune, cksum 0x5ae5 (correct), upstream-neighbor: 10.0.0.13 - 1 group(s), holdtime: 3m30s - group #1: 239.123.123.123, joined sources: 0, pruned sources: 1 - pruned source #1: 1.1.1.1(SWR) -IP (tos 0xc0, ttl 1, id 431, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.14 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0x41fe (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd76fc4dc - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 -IP (tos 0xc0, ttl 1, id 404, offset 0, flags [none], proto PIM (103), length 54) - 10.0.0.13 > 224.0.0.13: PIMv2, length 34 - Hello, cksum 0xb52e (correct) - Hold Time Option (1), length 2, Value: 1m45s - Generation ID Option (20), length 4, Value: 0xd77051ab - DR Priority Option (19), length 4, Value: 1 - State Refresh Capability Option (21), length 4, Value: v1 diff --git a/tests/pppoe.out b/tests/pppoe.out deleted file mode 100644 index b8f95e0..0000000 --- a/tests/pppoe.out +++ /dev/null @@ -1 +0,0 @@ -PPPoE PADI [Service-Name] [PPP-Max-Payload 0x05DC] [Host-Uniq 0x16372C16] diff --git a/tests/pppoe.pcap b/tests/pppoe.pcap deleted file mode 100644 index 3296174..0000000 Binary files a/tests/pppoe.pcap and /dev/null differ diff --git a/tests/pppoes.out b/tests/pppoes.out deleted file mode 100644 index 608c5d7..0000000 --- a/tests/pppoes.out +++ /dev/null @@ -1,2 +0,0 @@ -PPPoE [ses 0x17] LCP, Echo-Request (0x09), id 106, length 14 -PPPoE [ses 0x3b] LCP, Echo-Request (0x09), id 103, length 14 diff --git a/tests/pppoes.pcap b/tests/pppoes.pcap deleted file mode 100644 index a2c7698..0000000 Binary files a/tests/pppoes.pcap and /dev/null differ diff --git a/tests/pppoes_id.out b/tests/pppoes_id.out deleted file mode 100644 index ef794fe..0000000 --- a/tests/pppoes_id.out +++ /dev/null @@ -1 +0,0 @@ -PPPoE [ses 0x3b] LCP, Echo-Request (0x09), id 103, length 14 diff --git a/tests/print-A.out b/tests/print-A.out deleted file mode 100644 index d35b968..0000000 --- a/tests/print-A.out +++ /dev/null @@ -1,193 +0,0 @@ -IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [S], seq 928549246, win 32767, options [mss 16396,sackOK,TS val 1306300950 ecr 0,nop,wscale 2], length 0 -E..<.h@.@.!R.........p.P7X.~.........!....@.... -M........... -IP 127.0.0.1.80 > 127.0.0.1.55920: Flags [S.], seq 930778609, ack 928549247, win 32767, options [mss 16396,sackOK,TS val 1306300950 ecr 1306300950,nop,wscale 2], length 0 -E..<..@.@.<..........P.p7z..7X......n.....@.... -M...M....... -IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [.], ack 1, win 8192, options [nop,nop,TS val 1306300950 ecr 1306300950], length 0 -E..4.j@.@.!X.........p.P7X..7z.... .7...... -M...M... -IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [P.], seq 1:203, ack 1, win 8192, options [nop,nop,TS val 1306300951 ecr 1306300950], length 202: HTTP: GET / HTTP/1.1 -E....l@.@. ..........p.P7X..7z.... ........ -M...M...GET / HTTP/1.1 -Host: localhost -User-Agent: ELinks/0.10.4-7-debian (textmode; Linux 2.6.11-1-686-smp i686; 132x56-2) -Accept: */* -Accept-Encoding: gzip -Accept-Language: en -Connection: Keep-Alive - - -IP 127.0.0.1.80 > 127.0.0.1.55920: Flags [.], ack 203, win 8192, options [nop,nop,TS val 1306300952 ecr 1306300951], length 0 -E..4..@.@............P.p7z..7X.I.. .7...... -M...M... -IP 127.0.0.1.80 > 127.0.0.1.55920: Flags [P.], seq 1:5560, ack 203, win 8192, options [nop,nop,TS val 1306300953 ecr 1306300951], length 5559: HTTP: HTTP/1.1 200 OK -E.....@.@..%.........P.p7z..7X.I.. ........ -M...M...HTTP/1.1 200 OK -Date: Wed, 06 Jul 2005 03:57:35 GMT -Server: Apache/1.3.33 -Last-Modified: Sun, 15 Aug 2004 00:43:41 GMT -ETag: "6e80f0-148a-411eb1bd" -Accept-Ranges: bytes -Content-Length: 5258 -Keep-Alive: timeout=15, max=100 -Connection: Keep-Alive -Content-Type: text/html; charset=iso-8859-1 - - - - - - - Placeholder page - - - -

    Placeholder page

    -

    If you are just browsing the web

    - -

    The owner of this web site has not put up any web pages yet. -Please come back later.

    - -

    Move along, nothing to see here... :-)

    - -

    If you are trying to locate the administrator of this machine

    - -

    If you want to report something about this host's behavior, please -contact the Internet Service Provider (ISP) involved directly.

    - -

    See the Network Abuse -Clearinghouse for how to do this.

    - -

    If you are the administrator of this machine

    - -

    The initial installation of Debian's -apache web server package was successful.

    - -

    You should replace this page with your own web pages as -soon as possible.

    - -

    Unless you changed its configuration, your new server is configured as follows: -

      -
    • -Configuration files can be found in /etc/apache.
    • - -
    • -The DocumentRoot, which is the directory under which all your -HTML files should exist, is set to /var/www.
    • - -
    • -CGI scripts are looked for in /usr/lib/cgi-bin, which is where -Debian packages will place their scripts.
    • - -
    • -Log files are placed in /var/log/apache, and will be rotated -weekly. The frequency of rotation can be easily changed by editing -/etc/logrotate.d/apache.
    • - -
    • -The default directory index is index.html, meaning that requests -for a directory /foo/bar/ will give the contents of the file /var/www/foo/bar/index.html -if it exists (assuming that /var/www is your DocumentRoot).
    • - -
    • -User directories are enabled, and user documents will be looked for -in the public_html directory of the users' homes. These dirs -should be under /home, and users will not be able to symlink -to files they don't own.
    • - -
    -All the standard apache modules are available with this release and are -now managed with debconf. Type dpkg-reconfigure apache to -select which modules you want enabled. Many other modules are available -through the Debian package system with the names libapache-mod-*. -If you need to compile a module yourself, you will need to install the -apache-dev package. - -

    More documentation on Apache can be found on: -

    - -

    You can also consult the list of World -Wide Web Frequently Asked Questions for information. - -

    Let other people know about this server

    - -Netcraft provides an interesting free -service for web site monitoring and statistic collection. -You can let them know about your server using their -interface. -Enabling the monitoring of your server will provide a better global overview -of who is using what and where, and it would give Debian a better -overview of the apache package usage. - -

    About this page

    - - - -

    This is a placeholder page installed by the Debian -release of the apache Web server package. - -

    This computer has installed the Debian GNU/Linux operating system, -but it has nothing to do with the Debian -Project. Please do not contact the Debian -Project about it.

    - -

    If you find a bug in this apache package, or in Apache itself, -please file a bug report on it. Instructions on doing this, and the -list of known bugs of this -package, can be found in the -Debian Bug Tracking System. - -

    Thanks for using this package, and congratulations for your choice of -a Debian system!

    - -
    - -Debian - - -Apache - -
    - - - - - - -IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [.], ack 5560, win 12383, options [nop,nop,TS val 1306300953 ecr 1306300953], length 0 -E..4.n@.@.!T.........p.P7X.I7z....0_....... -M...M... -IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [F.], seq 203, ack 5560, win 12383, options [nop,nop,TS val 1306302241 ecr 1306300953], length 0 -E..4.p@.@.!R.........p.P7X.I7z....0_....... -M..!M... -IP 127.0.0.1.80 > 127.0.0.1.55920: Flags [F.], seq 5560, ack 204, win 8192, options [nop,nop,TS val 1306302243 ecr 1306302241], length 0 -E..4..@.@............P.p7z..7X.J.. ..5..... -M..#M..! -IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [.], ack 5561, win 12383, options [nop,nop,TS val 1306302243 ecr 1306302243], length 0 -E..4.r@.@.!P.........p.P7X.J7z....0_....... -M..#M..# diff --git a/tests/print-AA.out b/tests/print-AA.out deleted file mode 100644 index d2ea084..0000000 --- a/tests/print-AA.out +++ /dev/null @@ -1,193 +0,0 @@ -IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [S], seq 928549246, win 32767, options [mss 16396,sackOK,TS val 1306300950 ecr 0,nop,wscale 2], length 0 -..............E..<.h@.@.!R.........p.P7X.~.........!....@.... -M........... -IP 127.0.0.1.80 > 127.0.0.1.55920: Flags [S.], seq 930778609, ack 928549247, win 32767, options [mss 16396,sackOK,TS val 1306300950 ecr 1306300950,nop,wscale 2], length 0 -..............E..<..@.@.<..........P.p7z..7X......n.....@.... -M...M....... -IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [.], ack 1, win 8192, options [nop,nop,TS val 1306300950 ecr 1306300950], length 0 -..............E..4.j@.@.!X.........p.P7X..7z.... .7...... -M...M... -IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [P.], seq 1:203, ack 1, win 8192, options [nop,nop,TS val 1306300951 ecr 1306300950], length 202: HTTP: GET / HTTP/1.1 -..............E....l@.@. ..........p.P7X..7z.... ........ -M...M...GET / HTTP/1.1 -Host: localhost -User-Agent: ELinks/0.10.4-7-debian (textmode; Linux 2.6.11-1-686-smp i686; 132x56-2) -Accept: */* -Accept-Encoding: gzip -Accept-Language: en -Connection: Keep-Alive - - -IP 127.0.0.1.80 > 127.0.0.1.55920: Flags [.], ack 203, win 8192, options [nop,nop,TS val 1306300952 ecr 1306300951], length 0 -..............E..4..@.@............P.p7z..7X.I.. .7...... -M...M... -IP 127.0.0.1.80 > 127.0.0.1.55920: Flags [P.], seq 1:5560, ack 203, win 8192, options [nop,nop,TS val 1306300953 ecr 1306300951], length 5559: HTTP: HTTP/1.1 200 OK -..............E.....@.@..%.........P.p7z..7X.I.. ........ -M...M...HTTP/1.1 200 OK -Date: Wed, 06 Jul 2005 03:57:35 GMT -Server: Apache/1.3.33 -Last-Modified: Sun, 15 Aug 2004 00:43:41 GMT -ETag: "6e80f0-148a-411eb1bd" -Accept-Ranges: bytes -Content-Length: 5258 -Keep-Alive: timeout=15, max=100 -Connection: Keep-Alive -Content-Type: text/html; charset=iso-8859-1 - - - - - - - Placeholder page - - - -

    Placeholder page

    -

    If you are just browsing the web

    - -

    The owner of this web site has not put up any web pages yet. -Please come back later.

    - -

    Move along, nothing to see here... :-)

    - -

    If you are trying to locate the administrator of this machine

    - -

    If you want to report something about this host's behavior, please -contact the Internet Service Provider (ISP) involved directly.

    - -

    See the Network Abuse -Clearinghouse for how to do this.

    - -

    If you are the administrator of this machine

    - -

    The initial installation of Debian's -apache web server package was successful.

    - -

    You should replace this page with your own web pages as -soon as possible.

    - -

    Unless you changed its configuration, your new server is configured as follows: -

      -
    • -Configuration files can be found in /etc/apache.
    • - -
    • -The DocumentRoot, which is the directory under which all your -HTML files should exist, is set to /var/www.
    • - -
    • -CGI scripts are looked for in /usr/lib/cgi-bin, which is where -Debian packages will place their scripts.
    • - -
    • -Log files are placed in /var/log/apache, and will be rotated -weekly. The frequency of rotation can be easily changed by editing -/etc/logrotate.d/apache.
    • - -
    • -The default directory index is index.html, meaning that requests -for a directory /foo/bar/ will give the contents of the file /var/www/foo/bar/index.html -if it exists (assuming that /var/www is your DocumentRoot).
    • - -
    • -User directories are enabled, and user documents will be looked for -in the public_html directory of the users' homes. These dirs -should be under /home, and users will not be able to symlink -to files they don't own.
    • - -
    -All the standard apache modules are available with this release and are -now managed with debconf. Type dpkg-reconfigure apache to -select which modules you want enabled. Many other modules are available -through the Debian package system with the names libapache-mod-*. -If you need to compile a module yourself, you will need to install the -apache-dev package. - -

    More documentation on Apache can be found on: -

    - -

    You can also consult the list of World -Wide Web Frequently Asked Questions for information. - -

    Let other people know about this server

    - -Netcraft provides an interesting free -service for web site monitoring and statistic collection. -You can let them know about your server using their -interface. -Enabling the monitoring of your server will provide a better global overview -of who is using what and where, and it would give Debian a better -overview of the apache package usage. - -

    About this page

    - - - -

    This is a placeholder page installed by the Debian -release of the apache Web server package. - -

    This computer has installed the Debian GNU/Linux operating system, -but it has nothing to do with the Debian -Project. Please do not contact the Debian -Project about it.

    - -

    If you find a bug in this apache package, or in Apache itself, -please file a bug report on it. Instructions on doing this, and the -list of known bugs of this -package, can be found in the -Debian Bug Tracking System. - -

    Thanks for using this package, and congratulations for your choice of -a Debian system!

    - -
    - -Debian - - -Apache - -
    - - - - - - -IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [.], ack 5560, win 12383, options [nop,nop,TS val 1306300953 ecr 1306300953], length 0 -..............E..4.n@.@.!T.........p.P7X.I7z....0_....... -M...M... -IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [F.], seq 203, ack 5560, win 12383, options [nop,nop,TS val 1306302241 ecr 1306300953], length 0 -..............E..4.p@.@.!R.........p.P7X.I7z....0_....... -M..!M... -IP 127.0.0.1.80 > 127.0.0.1.55920: Flags [F.], seq 5560, ack 204, win 8192, options [nop,nop,TS val 1306302243 ecr 1306302241], length 0 -..............E..4..@.@............P.p7z..7X.J.. ..5..... -M..#M..! -IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [.], ack 5561, win 12383, options [nop,nop,TS val 1306302243 ecr 1306302243], length 0 -..............E..4.r@.@.!P.........p.P7X.J7z....0_....... -M..#M..# diff --git a/tests/print-capX.out b/tests/print-capX.out deleted file mode 100644 index 8a27a96..0000000 --- a/tests/print-capX.out +++ /dev/null @@ -1,409 +0,0 @@ -IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [S], seq 928549246, win 32767, options [mss 16396,sackOK,TS val 1306300950 ecr 0,nop,wscale 2], length 0 - 0x0000: 4500 003c 1b68 4000 4006 2152 7f00 0001 E..<.h@.@.!R.... - 0x0010: 7f00 0001 da70 0050 3758 897e 0000 0000 .....p.P7X.~.... - 0x0020: a002 7fff 1421 0000 0204 400c 0402 080a .....!....@..... - 0x0030: 4ddc 9216 0000 0000 0103 0302 M........... -IP 127.0.0.1.80 > 127.0.0.1.55920: Flags [S.], seq 930778609, ack 928549247, win 32767, options [mss 16396,sackOK,TS val 1306300950 ecr 1306300950,nop,wscale 2], length 0 - 0x0000: 4500 003c 0000 4000 4006 3cba 7f00 0001 E..<..@.@.<..... - 0x0010: 7f00 0001 0050 da70 377a 8df1 3758 897f .....P.p7z..7X.. - 0x0020: a012 7fff 6eb1 0000 0204 400c 0402 080a ....n.....@..... - 0x0030: 4ddc 9216 4ddc 9216 0103 0302 M...M....... -IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [.], ack 1, win 8192, options [nop,nop,TS val 1306300950 ecr 1306300950], length 0 - 0x0000: 4500 0034 1b6a 4000 4006 2158 7f00 0001 E..4.j@.@.!X.... - 0x0010: 7f00 0001 da70 0050 3758 897f 377a 8df2 .....p.P7X..7z.. - 0x0020: 8010 2000 37d0 0000 0101 080a 4ddc 9216 ....7.......M... - 0x0030: 4ddc 9216 M... -IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [P.], seq 1:203, ack 1, win 8192, options [nop,nop,TS val 1306300951 ecr 1306300950], length 202: HTTP: GET / HTTP/1.1 - 0x0000: 4500 00fe 1b6c 4000 4006 208c 7f00 0001 E....l@.@....... - 0x0010: 7f00 0001 da70 0050 3758 897f 377a 8df2 .....p.P7X..7z.. - 0x0020: 8018 2000 fef2 0000 0101 080a 4ddc 9217 ............M... - 0x0030: 4ddc 9216 4745 5420 2f20 4854 5450 2f31 M...GET./.HTTP/1 - 0x0040: 2e31 0d0a 486f 7374 3a20 6c6f 6361 6c68 .1..Host:.localh - 0x0050: 6f73 740d 0a55 7365 722d 4167 656e 743a ost..User-Agent: - 0x0060: 2045 4c69 6e6b 732f 302e 3130 2e34 2d37 .ELinks/0.10.4-7 - 0x0070: 2d64 6562 6961 6e20 2874 6578 746d 6f64 -debian.(textmod - 0x0080: 653b 204c 696e 7578 2032 2e36 2e31 312d e;.Linux.2.6.11- - 0x0090: 312d 3638 362d 736d 7020 6936 3836 3b20 1-686-smp.i686;. - 0x00a0: 3133 3278 3536 2d32 290d 0a41 6363 6570 132x56-2)..Accep - 0x00b0: 743a 202a 2f2a 0d0a 4163 6365 7074 2d45 t:.*/*..Accept-E - 0x00c0: 6e63 6f64 696e 673a 2067 7a69 700d 0a41 ncoding:.gzip..A - 0x00d0: 6363 6570 742d 4c61 6e67 7561 6765 3a20 ccept-Language:. - 0x00e0: 656e 0d0a 436f 6e6e 6563 7469 6f6e 3a20 en..Connection:. - 0x00f0: 4b65 6570 2d41 6c69 7665 0d0a 0d0a Keep-Alive.... -IP 127.0.0.1.80 > 127.0.0.1.55920: Flags [.], ack 203, win 8192, options [nop,nop,TS val 1306300952 ecr 1306300951], length 0 - 0x0000: 4500 0034 1fe4 4000 4006 1cde 7f00 0001 E..4..@.@....... - 0x0010: 7f00 0001 0050 da70 377a 8df2 3758 8a49 .....P.p7z..7X.I - 0x0020: 8010 2000 3703 0000 0101 080a 4ddc 9218 ....7.......M... - 0x0030: 4ddc 9217 M... -IP 127.0.0.1.80 > 127.0.0.1.55920: Flags [P.], seq 1:5560, ack 203, win 8192, options [nop,nop,TS val 1306300953 ecr 1306300951], length 5559: HTTP: HTTP/1.1 200 OK - 0x0000: 4500 15eb 1fe6 4000 4006 0725 7f00 0001 E.....@.@..%.... - 0x0010: 7f00 0001 0050 da70 377a 8df2 3758 8a49 .....P.p7z..7X.I - 0x0020: 8018 2000 13e0 0000 0101 080a 4ddc 9219 ............M... - 0x0030: 4ddc 9217 4854 5450 2f31 2e31 2032 3030 M...HTTP/1.1.200 - 0x0040: 204f 4b0d 0a44 6174 653a 2057 6564 2c20 .OK..Date:.Wed,. - 0x0050: 3036 204a 756c 2032 3030 3520 3033 3a35 06.Jul.2005.03:5 - 0x0060: 373a 3335 2047 4d54 0d0a 5365 7276 6572 7:35.GMT..Server - 0x0070: 3a20 4170 6163 6865 2f31 2e33 2e33 330d :.Apache/1.3.33. - 0x0080: 0a4c 6173 742d 4d6f 6469 6669 6564 3a20 .Last-Modified:. - 0x0090: 5375 6e2c 2031 3520 4175 6720 3230 3034 Sun,.15.Aug.2004 - 0x00a0: 2030 303a 3433 3a34 3120 474d 540d 0a45 .00:43:41.GMT..E - 0x00b0: 5461 673a 2022 3665 3830 6630 2d31 3438 Tag:."6e80f0-148 - 0x00c0: 612d 3431 3165 6231 6264 220d 0a41 6363 a-411eb1bd"..Acc - 0x00d0: 6570 742d 5261 6e67 6573 3a20 6279 7465 ept-Ranges:.byte - 0x00e0: 730d 0a43 6f6e 7465 6e74 2d4c 656e 6774 s..Content-Lengt - 0x00f0: 683a 2035 3235 380d 0a4b 6565 702d 416c h:.5258..Keep-Al - 0x0100: 6976 653a 2074 696d 656f 7574 3d31 352c ive:.timeout=15, - 0x0110: 206d 6178 3d31 3030 0d0a 436f 6e6e 6563 .max=100..Connec - 0x0120: 7469 6f6e 3a20 4b65 6570 2d41 6c69 7665 tion:.Keep-Alive - 0x0130: 0d0a 436f 6e74 656e 742d 5479 7065 3a20 ..Content-Type:. - 0x0140: 7465 7874 2f68 746d 6c3b 2063 6861 7273 text/html;.chars - 0x0150: 6574 3d69 736f 2d38 3835 392d 310d 0a0d et=iso-8859-1... - 0x0160: 0a3c 2144 4f43 5459 5045 2048 544d 4c20 . - 0x01a0: 0a3c 4854 4d4c 3e0a 3c48 4541 443e 0a20 .... - 0x01b0: 2020 3c4d 4554 4120 4854 5450 2d45 5155 .......... - 0x0250: 3c54 4954 4c45 3e50 6c61 6365 686f 6c64 Placehold - 0x0260: 6572 2070 6167 653c 2f54 4954 4c45 3e0a er.page. - 0x0270: 3c2f 4845 4144 3e0a 3c42 4f44 5920 5445 ... - 0x02d0: 3c48 313e 506c 6163 6568 6f6c 6465 7220

    Placeholder. - 0x02e0: 7061 6765 3c2f 4831 3e0a 3c48 323e 4966 page

    .

    If - 0x02f0: 2079 6f75 2061 7265 206a 7573 7420 6272 .you.are.just.br - 0x0300: 6f77 7369 6e67 2074 6865 2077 6562 3c2f owsing.the.web..

    The.owne - 0x0320: 7220 6f66 2074 6869 7320 7765 6220 7369 r.of.this.web.si - 0x0330: 7465 2068 6173 206e 6f74 2070 7574 2075 te.has.not.put.u - 0x0340: 7020 616e 7920 7765 6220 7061 6765 7320 p.any.web.pages. - 0x0350: 7965 742e 0a50 6c65 6173 6520 636f 6d65 yet..Please.come - 0x0360: 2062 6163 6b20 6c61 7465 722e 3c2f 503e .back.later.

    - 0x0370: 0a0a 3c50 3e3c 534d 414c 4c3e 3c43 4954 ..

    Move.along,.no - 0x0390: 7468 696e 6720 746f 2073 6565 2068 6572 thing.to.see.her - 0x03a0: 652e 2e2e 3c2f 4349 5445 3e20 3a2d 293c e....:-)< - 0x03b0: 2f53 4d41 4c4c 3e3c 2f50 3e0a 0a3c 4832 /SMALL>

    ..

    If.you.are.tryi - 0x03d0: 6e67 2074 6f20 6c6f 6361 7465 2074 6865 ng.to.locate.the - 0x03e0: 2061 646d 696e 6973 7472 6174 6f72 206f .administrator.o - 0x03f0: 6620 7468 6973 206d 6163 6869 6e65 3c2f f.this.machine..

    If.you.w - 0x0410: 616e 7420 746f 2072 6570 6f72 7420 736f ant.to.report.so - 0x0420: 6d65 7468 696e 6720 6162 6f75 7420 7468 mething.about.th - 0x0430: 6973 2068 6f73 7427 7320 6265 6861 7669 is.host's.behavi - 0x0440: 6f72 2c20 706c 6561 7365 0a63 6f6e 7461 or,.please.conta - 0x0450: 6374 2074 6865 2049 6e74 6572 6e65 7420 ct.the.Internet. - 0x0460: 5365 7276 6963 6520 5072 6f76 6964 6572 Service.Provider - 0x0470: 2028 4953 5029 2069 6e76 6f6c 7665 6420 .(ISP).involved. - 0x0480: 6469 7265 6374 6c79 2e3c 2f50 3e0a 0a3c directly.

    ..< - 0x0490: 503e 5365 6520 7468 6520 3c41 2068 7265 P>See.the.Networ - 0x04c0: 6b20 4162 7573 650a 436c 6561 7269 6e67 k.Abuse.Clearing - 0x04d0: 686f 7573 653c 2f41 3e20 666f 7220 686f house.for.ho - 0x04e0: 7720 746f 2064 6f20 7468 6973 2e3c 2f50 w.to.do.this.

    ..

    If.you.ar - 0x0500: 6520 7468 6520 6164 6d69 6e69 7374 7261 e.the.administra - 0x0510: 746f 7220 6f66 2074 6869 7320 6d61 6368 tor.of.this.mach - 0x0520: 696e 653c 2f48 323e 0a0a 3c50 3e54 6865 ine

    ..

    The - 0x0530: 2069 6e69 7469 616c 2069 6e73 7461 6c6c .initial.install - 0x0540: 6174 696f 6e20 6f66 203c 4120 6872 6566 ation.of.Debian - 0x0570: 2773 0a61 7061 6368 653c 2f41 3e20 7765 's.apache.we - 0x0580: 6220 7365 7276 6572 2070 6163 6b61 6765 b.server.package - 0x0590: 2077 6173 2073 7563 6365 7373 6675 6c2e .was.successful. - 0x05a0: 3c2f 503e 0a0a 3c50 3e3c 5354 524f 4e47

    ..

    You.should.repl - 0x05c0: 6163 6520 7468 6973 2070 6167 6520 7769 ace.this.page.wi - 0x05d0: 7468 2079 6f75 7220 6f77 6e20 7765 6220 th.your.own.web. - 0x05e0: 7061 6765 7320 6173 0a73 6f6f 6e20 6173 pages.as.soon.as - 0x05f0: 2070 6f73 7369 626c 652e 3c2f 5354 524f .possible.

    ..

    Unle - 0x0610: 7373 2079 6f75 2063 6861 6e67 6564 2069 ss.you.changed.i - 0x0620: 7473 2063 6f6e 6669 6775 7261 7469 6f6e ts.configuration - 0x0630: 2c20 796f 7572 206e 6577 2073 6572 7665 ,.your.new.serve - 0x0640: 7220 6973 2063 6f6e 6669 6775 7265 6420 r.is.configured. - 0x0650: 6173 2066 6f6c 6c6f 7773 3a0a 3c55 4c3e as.follows:.

      - 0x0660: 0a3c 4c49 3e0a 436f 6e66 6967 7572 6174 .
    • .Configurat - 0x0670: 696f 6e20 6669 6c65 7320 6361 6e20 6265 ion.files.can.be - 0x0680: 2066 6f75 6e64 2069 6e20 3c54 543e 2f65 .found.in./e - 0x0690: 7463 2f61 7061 6368 653c 2f54 543e 2e3c tc/apache.< - 0x06a0: 2f4c 493e 0a0a 3c4c 493e 0a54 6865 203c /LI>..
    • .The.< - 0x06b0: 5454 3e44 6f63 756d 656e 7452 6f6f 743c TT>DocumentRoot< - 0x06c0: 2f54 543e 2c20 7768 6963 6820 6973 2074 /TT>,.which.is.t - 0x06d0: 6865 2064 6972 6563 746f 7279 2075 6e64 he.directory.und - 0x06e0: 6572 2077 6869 6368 2061 6c6c 2079 6f75 er.which.all.you - 0x06f0: 720a 4854 4d4c 2066 696c 6573 2073 686f r.HTML.files.sho - 0x0700: 756c 6420 6578 6973 742c 2069 7320 7365 uld.exist,.is.se - 0x0710: 7420 746f 203c 5454 3e2f 7661 722f 7777 t.to./var/ww - 0x0720: 773c 2f54 543e 2e3c 2f4c 493e 0a0a 3c4c w.
    • ...CGI.scripts.a - 0x0740: 7265 206c 6f6f 6b65 6420 666f 7220 696e re.looked.for.in - 0x0750: 203c 5454 3e2f 7573 722f 6c69 622f 6367 ./usr/lib/cg - 0x0760: 692d 6269 6e3c 2f54 543e 2c20 7768 6963 i-bin,.whic - 0x0770: 6820 6973 2077 6865 7265 0a44 6562 6961 h.is.where.Debia - 0x0780: 6e20 7061 636b 6167 6573 2077 696c 6c20 n.packages.will. - 0x0790: 706c 6163 6520 7468 6569 7220 7363 7269 place.their.scri - 0x07a0: 7074 732e 3c2f 4c49 3e0a 0a3c 4c49 3e0a pts...
    • . - 0x07b0: 4c6f 6720 6669 6c65 7320 6172 6520 706c Log.files.are.pl - 0x07c0: 6163 6564 2069 6e20 3c54 543e 2f76 6172 aced.in./var - 0x07d0: 2f6c 6f67 2f61 7061 6368 653c 2f54 543e /log/apache - 0x07e0: 2c20 616e 6420 7769 6c6c 2062 6520 726f ,.and.will.be.ro - 0x07f0: 7461 7465 640a 7765 656b 6c79 2e20 2054 tated.weekly...T - 0x0800: 6865 2066 7265 7175 656e 6379 206f 6620 he.frequency.of. - 0x0810: 726f 7461 7469 6f6e 2063 616e 2062 6520 rotation.can.be. - 0x0820: 6561 7369 6c79 2063 6861 6e67 6564 2062 easily.changed.b - 0x0830: 7920 6564 6974 696e 670a 3c54 543e 2f65 y.editing./e - 0x0840: 7463 2f6c 6f67 726f 7461 7465 2e64 2f61 tc/logrotate.d/a - 0x0850: 7061 6368 653c 2f54 543e 2e3c 2f4c 493e pache.
    • - 0x0860: 0a0a 3c4c 493e 0a54 6865 2064 6566 6175 ..
    • .The.defau - 0x0870: 6c74 2064 6972 6563 746f 7279 2069 6e64 lt.directory.ind - 0x0880: 6578 2069 7320 3c54 543e 696e 6465 782e ex.is.index. - 0x0890: 6874 6d6c 3c2f 5454 3e2c 206d 6561 6e69 html,.meani - 0x08a0: 6e67 2074 6861 7420 7265 7175 6573 7473 ng.that.requests - 0x08b0: 0a66 6f72 2061 2064 6972 6563 746f 7279 .for.a.directory - 0x08c0: 203c 5454 3e2f 666f 6f2f 6261 722f 3c2f ./foo/bar/.will.give.th - 0x08e0: 6520 636f 6e74 656e 7473 206f 6620 7468 e.contents.of.th - 0x08f0: 6520 6669 6c65 203c 5454 3e2f 7661 722f e.file./var/ - 0x0900: 7777 772f 666f 6f2f 6261 722f 696e 6465 www/foo/bar/inde - 0x0910: 782e 6874 6d6c 3c2f 5454 3e0a 6966 2069 x.html.if.i - 0x0920: 7420 6578 6973 7473 2028 6173 7375 6d69 t.exists.(assumi - 0x0930: 6e67 2074 6861 7420 3c54 543e 2f76 6172 ng.that./var - 0x0940: 2f77 7777 3c2f 5454 3e20 6973 2079 6f75 /www.is.you - 0x0950: 7220 3c54 543e 446f 6375 6d65 6e74 526f r.DocumentRo - 0x0960: 6f74 3c2f 5454 3e29 2e3c 2f4c 493e 0a0a ot).
    • .. - 0x0970: 3c4c 493e 0a55 7365 7220 6469 7265 6374
    • .User.direct - 0x0980: 6f72 6965 7320 6172 6520 656e 6162 6c65 ories.are.enable - 0x0990: 642c 2061 6e64 2075 7365 7220 646f 6375 d,.and.user.docu - 0x09a0: 6d65 6e74 7320 7769 6c6c 2062 6520 6c6f ments.will.be.lo - 0x09b0: 6f6b 6564 2066 6f72 0a69 6e20 7468 6520 oked.for.in.the. - 0x09c0: 3c54 543e 7075 626c 6963 5f68 746d 6c3c public_html< - 0x09d0: 2f54 543e 2064 6972 6563 746f 7279 206f /TT>.directory.o - 0x09e0: 6620 7468 6520 7573 6572 7327 2068 6f6d f.the.users'.hom - 0x09f0: 6573 2e20 2054 6865 7365 2064 6972 730a es...These.dirs. - 0x0a00: 7368 6f75 6c64 2062 6520 756e 6465 7220 should.be.under. - 0x0a10: 3c54 543e 2f68 6f6d 653c 2f54 543e 2c20 /home,. - 0x0a20: 616e 6420 7573 6572 7320 7769 6c6c 206e and.users.will.n - 0x0a30: 6f74 2062 6520 6162 6c65 2074 6f20 7379 ot.be.able.to.sy - 0x0a40: 6d6c 696e 6b0a 746f 2066 696c 6573 2074 mlink.to.files.t - 0x0a50: 6865 7920 646f 6e27 7420 6f77 6e2e 3c2f hey.don't.own...
    .All.t - 0x0a70: 6865 2073 7461 6e64 6172 6420 6170 6163 he.standard.apac - 0x0a80: 6865 206d 6f64 756c 6573 2061 7265 2061 he.modules.are.a - 0x0a90: 7661 696c 6162 6c65 2077 6974 6820 7468 vailable.with.th - 0x0aa0: 6973 2072 656c 6561 7365 2061 6e64 2061 is.release.and.a - 0x0ab0: 7265 0a6e 6f77 206d 616e 6167 6564 2077 re.now.managed.w - 0x0ac0: 6974 6820 6465 6263 6f6e 662e 2020 5479 ith.debconf...Ty - 0x0ad0: 7065 203c 5454 3e64 706b 672d 7265 636f pe.dpkg-reco - 0x0ae0: 6e66 6967 7572 6520 6170 6163 6865 3c2f nfigure.apache.to.select.wh - 0x0b00: 6963 6820 6d6f 6475 6c65 7320 796f 7520 ich.modules.you. - 0x0b10: 7761 6e74 2065 6e61 626c 6564 2e20 204d want.enabled...M - 0x0b20: 616e 7920 6f74 6865 7220 6d6f 6475 6c65 any.other.module - 0x0b30: 7320 6172 6520 6176 6169 6c61 626c 650a s.are.available. - 0x0b40: 7468 726f 7567 6820 7468 6520 4465 6269 through.the.Debi - 0x0b50: 616e 2070 6163 6b61 6765 2073 7973 7465 an.package.syste - 0x0b60: 6d20 7769 7468 2074 6865 206e 616d 6573 m.with.the.names - 0x0b70: 203c 5454 3e6c 6962 6170 6163 6865 2d6d .libapache-m - 0x0b80: 6f64 2d2a 3c2f 5454 3e2e 0a49 6620 796f od-*..If.yo - 0x0b90: 7520 6e65 6564 2074 6f20 636f 6d70 696c u.need.to.compil - 0x0ba0: 6520 6120 6d6f 6475 6c65 2079 6f75 7273 e.a.module.yours - 0x0bb0: 656c 662c 2079 6f75 2077 696c 6c20 6e65 elf,.you.will.ne - 0x0bc0: 6564 2074 6f20 696e 7374 616c 6c20 7468 ed.to.install.th - 0x0bd0: 650a 3c54 543e 6170 6163 6865 2d64 6576 e.apache-dev - 0x0be0: 3c2f 5454 3e20 7061 636b 6167 652e 0a0a .package... - 0x0bf0: 3c50 3e4d 6f72 6520 646f 6375 6d65 6e74

    More.document - 0x0c00: 6174 696f 6e20 6f6e 2041 7061 6368 6520 ation.on.Apache. - 0x0c10: 6361 6e20 6265 2066 6f75 6e64 206f 6e3a can.be.found.on: - 0x0c20: 0a3c 554c 3e0a 3c4c 493e 0a54 6865 203c .

      .
    • .The.< - 0x0c30: 4120 4852 4546 3d22 2f64 6f63 2f61 7061 A.HREF="/doc/apa - 0x0c40: 6368 652d 646f 632f 6d61 6e75 616c 2f22 che-doc/manual/" - 0x0c50: 3e41 7061 6368 6520 646f 6375 6d65 6e74 >Apache.document - 0x0c60: 6174 696f 6e3c 2f41 3e20 7374 6f72 6564 ation.stored - 0x0c70: 206f 6e20 796f 7572 2073 6572 7665 722e .on.your.server. - 0x0c80: 3c2f 4c49 3e0a 0a3c 4c49 3e0a 5468 6520
    • ..
    • .The. - 0x0c90: 3c41 2048 5245 463d 2268 7474 703a 2f2f Apache.Project< - 0x0cc0: 2f41 3e20 686f 6d65 2073 6974 652e 3c2f /A>.home.site...
    • .The.Apache-SSL.home.site.
    • ..
    • .The.mo - 0x0d50: 6420 7065 726c 3c2f 413e 2068 6f6d 6520 d.perl.home. - 0x0d60: 7369 7465 2e3c 2f4c 493e 0a0a 3c4c 493e site.
    • ..
    • - 0x0d70: 0a54 6865 203c 4120 4852 4546 3d22 6874 .The.Apache - 0x0da0: 5765 656b 3c2f 413e 206e 6577 736c 6574 Week.newslet - 0x0db0: 7465 722e 3c2f 4c49 3e0a 0a3c 4c49 3e0a ter.
    • ..
    • . - 0x0dc0: 5468 6520 3c41 2048 5245 463d 2268 7474 The.Debian. - 0x0df0: 5072 6f6a 6563 740a 446f 6375 6d65 6e74 Project.Document - 0x0e00: 6174 696f 6e3c 2f41 3e20 7768 6963 6820 ation.which. - 0x0e10: 636f 6e74 6169 6e73 2048 4f57 544f 732c contains.HOWTOs, - 0x0e20: 2046 4151 732c 2061 6e64 2073 6f66 7477 .FAQs,.and.softw - 0x0e30: 6172 6520 7570 6461 7465 732e 3c2f 4c49 are.updates.
    • .
    ..

    You. - 0x0e50: 6361 6e20 616c 736f 2063 6f6e 7375 6c74 can.also.consult - 0x0e60: 2074 6865 206c 6973 7420 6f66 203c 4120 .the.list.of.World.Wide.We - 0x0ea0: 6220 4672 6571 7565 6e74 6c79 2041 736b b.Frequently.Ask - 0x0eb0: 6564 2051 7565 7374 696f 6e73 3c2f 413e ed.Questions - 0x0ec0: 2066 6f72 2069 6e66 6f72 6d61 7469 6f6e .for.information - 0x0ed0: 2e0a 0a3c 4832 3e4c 6574 206f 7468 6572 ...

    Let.other - 0x0ee0: 2070 656f 706c 6520 6b6e 6f77 2061 626f .people.know.abo - 0x0ef0: 7574 2074 6869 7320 7365 7276 6572 3c2f ut.this.server..Netcraft - 0x0f30: 2070 726f 7669 6465 7320 616e 2069 6e74 .provides.an.int - 0x0f40: 6572 6573 7469 6e67 2066 7265 650a 7365 eresting.free.se - 0x0f50: 7276 6963 6520 666f 7220 7765 6220 7369 rvice.for.web.si - 0x0f60: 7465 206d 6f6e 6974 6f72 696e 6720 616e te.monitoring.an - 0x0f70: 6420 7374 6174 6973 7469 6320 636f 6c6c d.statistic.coll - 0x0f80: 6563 7469 6f6e 2e0a 596f 7520 6361 6e20 ection..You.can. - 0x0f90: 6c65 7420 7468 656d 206b 6e6f 7720 6162 let.them.know.ab - 0x0fa0: 6f75 7420 796f 7572 2073 6572 7665 7220 out.your.server. - 0x0fb0: 7573 696e 6720 7468 6569 720a 3c41 2048 using.their.interface. - 0x0ff0: 0a45 6e61 626c 696e 6720 7468 6520 6d6f .Enabling.the.mo - 0x1000: 6e69 746f 7269 6e67 206f 6620 796f 7572 nitoring.of.your - 0x1010: 2073 6572 7665 7220 7769 6c6c 2070 726f .server.will.pro - 0x1020: 7669 6465 2061 2062 6574 7465 7220 676c vide.a.better.gl - 0x1030: 6f62 616c 206f 7665 7276 6965 770a 6f66 obal.overview.of - 0x1040: 2077 686f 2069 7320 7573 696e 6720 7768 .who.is.using.wh - 0x1050: 6174 2061 6e64 2077 6865 7265 2c20 616e at.and.where,.an - 0x1060: 6420 6974 2077 6f75 6c64 2067 6976 6520 d.it.would.give. - 0x1070: 4465 6269 616e 2061 2062 6574 7465 720a Debian.a.better. - 0x1080: 6f76 6572 7669 6577 206f 6620 7468 6520 overview.of.the. - 0x1090: 6170 6163 6865 2070 6163 6b61 6765 2075 apache.package.u - 0x10a0: 7361 6765 2e0a 0a3c 4832 3e41 626f 7574 sage...

    About - 0x10b0: 2074 6869 7320 7061 6765 3c2f 4832 3e0a .this.page

    . - 0x10c0: 0a3c 494d 4720 414c 4947 4e3d 2272 6967 ...

    - 0x1110: 5468 6973 2069 7320 6120 706c 6163 6568 This.is.a.placeh - 0x1120: 6f6c 6465 7220 7061 6765 2069 6e73 7461 older.page.insta - 0x1130: 6c6c 6564 2062 7920 7468 6520 3c41 0a48 lled.by.the.Deb - 0x1160: 6961 6e3c 2f41 3e0a 7265 6c65 6173 6520 ian.release. - 0x1170: 6f66 2074 6865 2061 7061 6368 6520 5765 of.the.apache.We - 0x1180: 6220 7365 7276 6572 2070 6163 6b61 6765 b.server.package - 0x1190: 2e0a 0a3c 503e 5468 6973 2063 6f6d 7075 ...

    This.compu - 0x11a0: 7465 7220 6861 7320 696e 7374 616c 6c65 ter.has.installe - 0x11b0: 6420 7468 6520 4465 6269 616e 2047 4e55 d.the.Debian.GNU - 0x11c0: 2f4c 696e 7578 206f 7065 7261 7469 6e67 /Linux.operating - 0x11d0: 2073 7973 7465 6d2c 0a62 7574 2069 7420 .system,.but.it. - 0x11e0: 6861 7320 3c73 7472 6f6e 673e 6e6f 7468 has.noth - 0x11f0: 696e 6720 746f 2064 6f20 7769 7468 2074 ing.to.do.with.t - 0x1200: 6865 2044 6562 6961 6e0a 5072 6f6a 6563 he.Debian.Projec - 0x1210: 743c 2f73 7472 6f6e 673e 2e20 506c 6561 t..Plea - 0x1220: 7365 2064 6f20 3c73 7472 6f6e 673e 6e6f se.do.no - 0x1230: 743c 2f73 7472 6f6e 673e 2063 6f6e 7461 t.conta - 0x1240: 6374 2074 6865 2044 6562 6961 6e0a 5072 ct.the.Debian.Pr - 0x1250: 6f6a 6563 7420 6162 6f75 7420 6974 2e3c oject.about.it.< - 0x1260: 2f50 3e0a 0a3c 503e 4966 2079 6f75 2066 /P>..

    If.you.f - 0x1270: 696e 6420 6120 6275 6720 696e 2074 6869 ind.a.bug.in.thi - 0x1280: 7320 6170 6163 6865 2070 6163 6b61 6765 s.apache.package - 0x1290: 2c20 6f72 2069 6e20 4170 6163 6865 2069 ,.or.in.Apache.i - 0x12a0: 7473 656c 662c 0a70 6c65 6173 6520 6669 tself,.please.fi - 0x12b0: 6c65 2061 2062 7567 2072 6570 6f72 7420 le.a.bug.report. - 0x12c0: 6f6e 2069 742e 2020 496e 7374 7275 6374 on.it...Instruct - 0x12d0: 696f 6e73 206f 6e20 646f 696e 6720 7468 ions.on.doing.th - 0x12e0: 6973 2c20 616e 6420 7468 650a 6c69 7374 is,.and.the.list - 0x12f0: 206f 6620 3c41 2048 5245 463d 2268 7474 .of. - 0x1320: 6b6e 6f77 6e20 6275 6773 3c2f 413e 206f known.bugs.o - 0x1330: 6620 7468 6973 0a70 6163 6b61 6765 2c20 f.this.package,. - 0x1340: 6361 6e20 6265 2066 6f75 6e64 2069 6e20 can.be.found.in. - 0x1350: 7468 6520 0a3c 4120 4852 4546 3d22 6874 the..Debian.Bug.T - 0x1390: 7261 636b 696e 6720 5379 7374 656d 3c2f racking.System...

    Thanks.f - 0x13b0: 6f72 2075 7369 6e67 2074 6869 7320 7061 or.using.this.pa - 0x13c0: 636b 6167 652c 2061 6e64 2063 6f6e 6772 ckage,.and.congr - 0x13d0: 6174 756c 6174 696f 6e73 2066 6f72 2079 atulations.for.y - 0x13e0: 6f75 7220 6368 6f69 6365 206f 660a 6120 our.choice.of.a. - 0x13f0: 4465 6269 616e 2073 7973 7465 6d21 3c2f Debian.system!...........< - 0x1520: 212d 2d0a 2020 5468 6973 2070 6167 6520 !--...This.page. - 0x1530: 7761 7320 696e 6974 6961 6c6c 7920 6372 was.initially.cr - 0x1540: 6561 7465 6420 6279 204a 6f68 6e69 6520 eated.by.Johnie. - 0x1550: 496e 6772 616d 2028 6874 7470 3a2f 2f6e Ingram.(http://n - 0x1560: 6574 676f 642e 6e65 742f 290a 2020 4974 etgod.net/)...It - 0x1570: 2077 6173 206c 6174 6572 2065 6469 7465 .was.later.edite - 0x1580: 6420 6279 204d 6174 7468 6577 2057 696c d.by.Matthew.Wil - 0x1590: 636f 7820 616e 6420 4a6f 7369 7020 526f cox.and.Josip.Ro - 0x15a0: 6469 6e2e 0a20 204c 6173 7420 6d6f 6469 din....Last.modi - 0x15b0: 6669 6564 3a20 2444 6174 653a 2032 3030 fied:.$Date:.200 - 0x15c0: 342f 3036 2f32 3020 3135 3a33 333a 3537 4/06/20.15:33:57 - 0x15d0: 2024 2e0a 2020 2d2d 3e0a 0a3c 2f42 4f44 .$....-->.... -IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [.], ack 5560, win 12383, options [nop,nop,TS val 1306300953 ecr 1306300953], length 0 - 0x0000: 4500 0034 1b6e 4000 4006 2154 7f00 0001 E..4.n@.@.!T.... - 0x0010: 7f00 0001 da70 0050 3758 8a49 377a a3a9 .....p.P7X.I7z.. - 0x0020: 8010 305f 10ea 0000 0101 080a 4ddc 9219 ..0_........M... - 0x0030: 4ddc 9219 M... -IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [F.], seq 203, ack 5560, win 12383, options [nop,nop,TS val 1306302241 ecr 1306300953], length 0 - 0x0000: 4500 0034 1b70 4000 4006 2152 7f00 0001 E..4.p@.@.!R.... - 0x0010: 7f00 0001 da70 0050 3758 8a49 377a a3a9 .....p.P7X.I7z.. - 0x0020: 8011 305f 0be1 0000 0101 080a 4ddc 9721 ..0_........M..! - 0x0030: 4ddc 9219 M... -IP 127.0.0.1.80 > 127.0.0.1.55920: Flags [F.], seq 5560, ack 204, win 8192, options [nop,nop,TS val 1306302243 ecr 1306302241], length 0 - 0x0000: 4500 0034 1fe8 4000 4006 1cda 7f00 0001 E..4..@.@....... - 0x0010: 7f00 0001 0050 da70 377a a3a9 3758 8a4a .....P.p7z..7X.J - 0x0020: 8011 2000 1735 0000 0101 080a 4ddc 9723 .....5......M..# - 0x0030: 4ddc 9721 M..! -IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [.], ack 5561, win 12383, options [nop,nop,TS val 1306302243 ecr 1306302243], length 0 - 0x0000: 4500 0034 1b72 4000 4006 2150 7f00 0001 E..4.r@.@.!P.... - 0x0010: 7f00 0001 da70 0050 3758 8a4a 377a a3aa .....p.P7X.J7z.. - 0x0020: 8010 305f 06d4 0000 0101 080a 4ddc 9723 ..0_........M..# - 0x0030: 4ddc 9723 M..# diff --git a/tests/print-capXX.out b/tests/print-capXX.out deleted file mode 100644 index 8fc3095..0000000 --- a/tests/print-capXX.out +++ /dev/null @@ -1,419 +0,0 @@ -IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [S], seq 928549246, win 32767, options [mss 16396,sackOK,TS val 1306300950 ecr 0,nop,wscale 2], length 0 - 0x0000: 0000 0000 0000 0000 0000 0000 0800 4500 ..............E. - 0x0010: 003c 1b68 4000 4006 2152 7f00 0001 7f00 .<.h@.@.!R...... - 0x0020: 0001 da70 0050 3758 897e 0000 0000 a002 ...p.P7X.~...... - 0x0030: 7fff 1421 0000 0204 400c 0402 080a 4ddc ...!....@.....M. - 0x0040: 9216 0000 0000 0103 0302 .......... -IP 127.0.0.1.80 > 127.0.0.1.55920: Flags [S.], seq 930778609, ack 928549247, win 32767, options [mss 16396,sackOK,TS val 1306300950 ecr 1306300950,nop,wscale 2], length 0 - 0x0000: 0000 0000 0000 0000 0000 0000 0800 4500 ..............E. - 0x0010: 003c 0000 4000 4006 3cba 7f00 0001 7f00 .<..@.@.<....... - 0x0020: 0001 0050 da70 377a 8df1 3758 897f a012 ...P.p7z..7X.... - 0x0030: 7fff 6eb1 0000 0204 400c 0402 080a 4ddc ..n.....@.....M. - 0x0040: 9216 4ddc 9216 0103 0302 ..M....... -IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [.], ack 1, win 8192, options [nop,nop,TS val 1306300950 ecr 1306300950], length 0 - 0x0000: 0000 0000 0000 0000 0000 0000 0800 4500 ..............E. - 0x0010: 0034 1b6a 4000 4006 2158 7f00 0001 7f00 .4.j@.@.!X...... - 0x0020: 0001 da70 0050 3758 897f 377a 8df2 8010 ...p.P7X..7z.... - 0x0030: 2000 37d0 0000 0101 080a 4ddc 9216 4ddc ..7.......M...M. - 0x0040: 9216 .. -IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [P.], seq 1:203, ack 1, win 8192, options [nop,nop,TS val 1306300951 ecr 1306300950], length 202: HTTP: GET / HTTP/1.1 - 0x0000: 0000 0000 0000 0000 0000 0000 0800 4500 ..............E. - 0x0010: 00fe 1b6c 4000 4006 208c 7f00 0001 7f00 ...l@.@......... - 0x0020: 0001 da70 0050 3758 897f 377a 8df2 8018 ...p.P7X..7z.... - 0x0030: 2000 fef2 0000 0101 080a 4ddc 9217 4ddc ..........M...M. - 0x0040: 9216 4745 5420 2f20 4854 5450 2f31 2e31 ..GET./.HTTP/1.1 - 0x0050: 0d0a 486f 7374 3a20 6c6f 6361 6c68 6f73 ..Host:.localhos - 0x0060: 740d 0a55 7365 722d 4167 656e 743a 2045 t..User-Agent:.E - 0x0070: 4c69 6e6b 732f 302e 3130 2e34 2d37 2d64 Links/0.10.4-7-d - 0x0080: 6562 6961 6e20 2874 6578 746d 6f64 653b ebian.(textmode; - 0x0090: 204c 696e 7578 2032 2e36 2e31 312d 312d .Linux.2.6.11-1- - 0x00a0: 3638 362d 736d 7020 6936 3836 3b20 3133 686-smp.i686;.13 - 0x00b0: 3278 3536 2d32 290d 0a41 6363 6570 743a 2x56-2)..Accept: - 0x00c0: 202a 2f2a 0d0a 4163 6365 7074 2d45 6e63 .*/*..Accept-Enc - 0x00d0: 6f64 696e 673a 2067 7a69 700d 0a41 6363 oding:.gzip..Acc - 0x00e0: 6570 742d 4c61 6e67 7561 6765 3a20 656e ept-Language:.en - 0x00f0: 0d0a 436f 6e6e 6563 7469 6f6e 3a20 4b65 ..Connection:.Ke - 0x0100: 6570 2d41 6c69 7665 0d0a 0d0a ep-Alive.... -IP 127.0.0.1.80 > 127.0.0.1.55920: Flags [.], ack 203, win 8192, options [nop,nop,TS val 1306300952 ecr 1306300951], length 0 - 0x0000: 0000 0000 0000 0000 0000 0000 0800 4500 ..............E. - 0x0010: 0034 1fe4 4000 4006 1cde 7f00 0001 7f00 .4..@.@......... - 0x0020: 0001 0050 da70 377a 8df2 3758 8a49 8010 ...P.p7z..7X.I.. - 0x0030: 2000 3703 0000 0101 080a 4ddc 9218 4ddc ..7.......M...M. - 0x0040: 9217 .. -IP 127.0.0.1.80 > 127.0.0.1.55920: Flags [P.], seq 1:5560, ack 203, win 8192, options [nop,nop,TS val 1306300953 ecr 1306300951], length 5559: HTTP: HTTP/1.1 200 OK - 0x0000: 0000 0000 0000 0000 0000 0000 0800 4500 ..............E. - 0x0010: 15eb 1fe6 4000 4006 0725 7f00 0001 7f00 ....@.@..%...... - 0x0020: 0001 0050 da70 377a 8df2 3758 8a49 8018 ...P.p7z..7X.I.. - 0x0030: 2000 13e0 0000 0101 080a 4ddc 9219 4ddc ..........M...M. - 0x0040: 9217 4854 5450 2f31 2e31 2032 3030 204f ..HTTP/1.1.200.O - 0x0050: 4b0d 0a44 6174 653a 2057 6564 2c20 3036 K..Date:.Wed,.06 - 0x0060: 204a 756c 2032 3030 3520 3033 3a35 373a .Jul.2005.03:57: - 0x0070: 3335 2047 4d54 0d0a 5365 7276 6572 3a20 35.GMT..Server:. - 0x0080: 4170 6163 6865 2f31 2e33 2e33 330d 0a4c Apache/1.3.33..L - 0x0090: 6173 742d 4d6f 6469 6669 6564 3a20 5375 ast-Modified:.Su - 0x00a0: 6e2c 2031 3520 4175 6720 3230 3034 2030 n,.15.Aug.2004.0 - 0x00b0: 303a 3433 3a34 3120 474d 540d 0a45 5461 0:43:41.GMT..ETa - 0x00c0: 673a 2022 3665 3830 6630 2d31 3438 612d g:."6e80f0-148a- - 0x00d0: 3431 3165 6231 6264 220d 0a41 6363 6570 411eb1bd"..Accep - 0x00e0: 742d 5261 6e67 6573 3a20 6279 7465 730d t-Ranges:.bytes. - 0x00f0: 0a43 6f6e 7465 6e74 2d4c 656e 6774 683a .Content-Length: - 0x0100: 2035 3235 380d 0a4b 6565 702d 416c 6976 .5258..Keep-Aliv - 0x0110: 653a 2074 696d 656f 7574 3d31 352c 206d e:.timeout=15,.m - 0x0120: 6178 3d31 3030 0d0a 436f 6e6e 6563 7469 ax=100..Connecti - 0x0130: 6f6e 3a20 4b65 6570 2d41 6c69 7665 0d0a on:.Keep-Alive.. - 0x0140: 436f 6e74 656e 742d 5479 7065 3a20 7465 Content-Type:.te - 0x0150: 7874 2f68 746d 6c3b 2063 6861 7273 6574 xt/html;.charset - 0x0160: 3d69 736f 2d38 3835 392d 310d 0a0d 0a3c =iso-8859-1....< - 0x0170: 2144 4f43 5459 5045 2048 544d 4c20 5055 !DOCTYPE.HTML.PU - 0x0180: 424c 4943 2022 2d2f 2f57 3343 2f2f 4454 BLIC."-//W3C//DT - 0x0190: 4420 4854 4d4c 2034 2e30 3120 5472 616e D.HTML.4.01.Tran - 0x01a0: 7369 7469 6f6e 616c 2f2f 454e 223e 0a3c sitional//EN">.< - 0x01b0: 4854 4d4c 3e0a 3c48 4541 443e 0a20 2020 HTML>..... - 0x01c0: 3c4d 4554 4120 4854 5450 2d45 5155 4956 ........Placeholder - 0x0270: 2070 6167 653c 2f54 4954 4c45 3e0a 3c2f .page....Placeholder.pa - 0x02f0: 6765 3c2f 4831 3e0a 3c48 323e 4966 2079 ge

    .

    If.y - 0x0300: 6f75 2061 7265 206a 7573 7420 6272 6f77 ou.are.just.brow - 0x0310: 7369 6e67 2074 6865 2077 6562 3c2f 6832 sing.the.web

    ..

    The.owner. - 0x0330: 6f66 2074 6869 7320 7765 6220 7369 7465 of.this.web.site - 0x0340: 2068 6173 206e 6f74 2070 7574 2075 7020 .has.not.put.up. - 0x0350: 616e 7920 7765 6220 7061 6765 7320 7965 any.web.pages.ye - 0x0360: 742e 0a50 6c65 6173 6520 636f 6d65 2062 t..Please.come.b - 0x0370: 6163 6b20 6c61 7465 722e 3c2f 503e 0a0a ack.later.

    .. - 0x0380: 3c50 3e3c 534d 414c 4c3e 3c43 4954 453e

    - 0x0390: 4d6f 7665 2061 6c6f 6e67 2c20 6e6f 7468 Move.along,.noth - 0x03a0: 696e 6720 746f 2073 6565 2068 6572 652e ing.to.see.here. - 0x03b0: 2e2e 3c2f 4349 5445 3e20 3a2d 293c 2f53 ...:-)

    ..

    I - 0x03d0: 6620 796f 7520 6172 6520 7472 7969 6e67 f.you.are.trying - 0x03e0: 2074 6f20 6c6f 6361 7465 2074 6865 2061 .to.locate.the.a - 0x03f0: 646d 696e 6973 7472 6174 6f72 206f 6620 dministrator.of. - 0x0400: 7468 6973 206d 6163 6869 6e65 3c2f 4832 this.machine

    ..

    If.you.wan - 0x0420: 7420 746f 2072 6570 6f72 7420 736f 6d65 t.to.report.some - 0x0430: 7468 696e 6720 6162 6f75 7420 7468 6973 thing.about.this - 0x0440: 2068 6f73 7427 7320 6265 6861 7669 6f72 .host's.behavior - 0x0450: 2c20 706c 6561 7365 0a63 6f6e 7461 6374 ,.please.contact - 0x0460: 2074 6865 2049 6e74 6572 6e65 7420 5365 .the.Internet.Se - 0x0470: 7276 6963 6520 5072 6f76 6964 6572 2028 rvice.Provider.( - 0x0480: 4953 5029 2069 6e76 6f6c 7665 6420 6469 ISP).involved.di - 0x0490: 7265 6374 6c79 2e3c 2f50 3e0a 0a3c 503e rectly.

    ..

    - 0x04a0: 5365 6520 7468 6520 3c41 2068 7265 663d See.the.Network. - 0x04d0: 4162 7573 650a 436c 6561 7269 6e67 686f Abuse.Clearingho - 0x04e0: 7573 653c 2f41 3e20 666f 7220 686f 7720 use.for.how. - 0x04f0: 746f 2064 6f20 7468 6973 2e3c 2f50 3e0a to.do.this.

    . - 0x0500: 0a3c 4832 3e49 6620 796f 7520 6172 6520 .

    If.you.are. - 0x0510: 7468 6520 6164 6d69 6e69 7374 7261 746f the.administrato - 0x0520: 7220 6f66 2074 6869 7320 6d61 6368 696e r.of.this.machin - 0x0530: 653c 2f48 323e 0a0a 3c50 3e54 6865 2069 e

    ..

    The.i - 0x0540: 6e69 7469 616c 2069 6e73 7461 6c6c 6174 nitial.installat - 0x0550: 696f 6e20 6f66 203c 4120 6872 6566 3d22 ion.of.Debian's - 0x0580: 0a61 7061 6368 653c 2f41 3e20 7765 6220 .apache.web. - 0x0590: 7365 7276 6572 2070 6163 6b61 6765 2077 server.package.w - 0x05a0: 6173 2073 7563 6365 7373 6675 6c2e 3c2f as.successful...

    Y - 0x05c0: 6f75 2073 686f 756c 6420 7265 706c 6163 ou.should.replac - 0x05d0: 6520 7468 6973 2070 6167 6520 7769 7468 e.this.page.with - 0x05e0: 2079 6f75 7220 6f77 6e20 7765 6220 7061 .your.own.web.pa - 0x05f0: 6765 7320 6173 0a73 6f6f 6e20 6173 2070 ges.as.soon.as.p - 0x0600: 6f73 7369 626c 652e 3c2f 5354 524f 4e47 ossible.

    ..

    Unless - 0x0620: 2079 6f75 2063 6861 6e67 6564 2069 7473 .you.changed.its - 0x0630: 2063 6f6e 6669 6775 7261 7469 6f6e 2c20 .configuration,. - 0x0640: 796f 7572 206e 6577 2073 6572 7665 7220 your.new.server. - 0x0650: 6973 2063 6f6e 6669 6775 7265 6420 6173 is.configured.as - 0x0660: 2066 6f6c 6c6f 7773 3a0a 3c55 4c3e 0a3c .follows:.

      .< - 0x0670: 4c49 3e0a 436f 6e66 6967 7572 6174 696f LI>.Configuratio - 0x0680: 6e20 6669 6c65 7320 6361 6e20 6265 2066 n.files.can.be.f - 0x0690: 6f75 6e64 2069 6e20 3c54 543e 2f65 7463 ound.in./etc - 0x06a0: 2f61 7061 6368 653c 2f54 543e 2e3c 2f4c /apache...
    • .The.DocumentRoot,.which.is.the - 0x06e0: 2064 6972 6563 746f 7279 2075 6e64 6572 .directory.under - 0x06f0: 2077 6869 6368 2061 6c6c 2079 6f75 720a .which.all.your. - 0x0700: 4854 4d4c 2066 696c 6573 2073 686f 756c HTML.files.shoul - 0x0710: 6420 6578 6973 742c 2069 7320 7365 7420 d.exist,.is.set. - 0x0720: 746f 203c 5454 3e2f 7661 722f 7777 773c to./var/www< - 0x0730: 2f54 543e 2e3c 2f4c 493e 0a0a 3c4c 493e /TT>.
    • ..
    • - 0x0740: 0a43 4749 2073 6372 6970 7473 2061 7265 .CGI.scripts.are - 0x0750: 206c 6f6f 6b65 6420 666f 7220 696e 203c .looked.for.in.< - 0x0760: 5454 3e2f 7573 722f 6c69 622f 6367 692d TT>/usr/lib/cgi- - 0x0770: 6269 6e3c 2f54 543e 2c20 7768 6963 6820 bin,.which. - 0x0780: 6973 2077 6865 7265 0a44 6562 6961 6e20 is.where.Debian. - 0x0790: 7061 636b 6167 6573 2077 696c 6c20 706c packages.will.pl - 0x07a0: 6163 6520 7468 6569 7220 7363 7269 7074 ace.their.script - 0x07b0: 732e 3c2f 4c49 3e0a 0a3c 4c49 3e0a 4c6f s.
    • ..
    • .Lo - 0x07c0: 6720 6669 6c65 7320 6172 6520 706c 6163 g.files.are.plac - 0x07d0: 6564 2069 6e20 3c54 543e 2f76 6172 2f6c ed.in./var/l - 0x07e0: 6f67 2f61 7061 6368 653c 2f54 543e 2c20 og/apache,. - 0x07f0: 616e 6420 7769 6c6c 2062 6520 726f 7461 and.will.be.rota - 0x0800: 7465 640a 7765 656b 6c79 2e20 2054 6865 ted.weekly...The - 0x0810: 2066 7265 7175 656e 6379 206f 6620 726f .frequency.of.ro - 0x0820: 7461 7469 6f6e 2063 616e 2062 6520 6561 tation.can.be.ea - 0x0830: 7369 6c79 2063 6861 6e67 6564 2062 7920 sily.changed.by. - 0x0840: 6564 6974 696e 670a 3c54 543e 2f65 7463 editing./etc - 0x0850: 2f6c 6f67 726f 7461 7465 2e64 2f61 7061 /logrotate.d/apa - 0x0860: 6368 653c 2f54 543e 2e3c 2f4c 493e 0a0a che.
    • .. - 0x0870: 3c4c 493e 0a54 6865 2064 6566 6175 6c74
    • .The.default - 0x0880: 2064 6972 6563 746f 7279 2069 6e64 6578 .directory.index - 0x0890: 2069 7320 3c54 543e 696e 6465 782e 6874 .is.index.ht - 0x08a0: 6d6c 3c2f 5454 3e2c 206d 6561 6e69 6e67 ml,.meaning - 0x08b0: 2074 6861 7420 7265 7175 6573 7473 0a66 .that.requests.f - 0x08c0: 6f72 2061 2064 6972 6563 746f 7279 203c or.a.directory.< - 0x08d0: 5454 3e2f 666f 6f2f 6261 722f 3c2f 5454 TT>/foo/bar/.will.give.the. - 0x08f0: 636f 6e74 656e 7473 206f 6620 7468 6520 contents.of.the. - 0x0900: 6669 6c65 203c 5454 3e2f 7661 722f 7777 file./var/ww - 0x0910: 772f 666f 6f2f 6261 722f 696e 6465 782e w/foo/bar/index. - 0x0920: 6874 6d6c 3c2f 5454 3e0a 6966 2069 7420 html.if.it. - 0x0930: 6578 6973 7473 2028 6173 7375 6d69 6e67 exists.(assuming - 0x0940: 2074 6861 7420 3c54 543e 2f76 6172 2f77 .that./var/w - 0x0950: 7777 3c2f 5454 3e20 6973 2079 6f75 7220 ww.is.your. - 0x0960: 3c54 543e 446f 6375 6d65 6e74 526f 6f74 DocumentRoot - 0x0970: 3c2f 5454 3e29 2e3c 2f4c 493e 0a0a 3c4c ).
    • ...User.director - 0x0990: 6965 7320 6172 6520 656e 6162 6c65 642c ies.are.enabled, - 0x09a0: 2061 6e64 2075 7365 7220 646f 6375 6d65 .and.user.docume - 0x09b0: 6e74 7320 7769 6c6c 2062 6520 6c6f 6f6b nts.will.be.look - 0x09c0: 6564 2066 6f72 0a69 6e20 7468 6520 3c54 ed.for.in.the.public_html.directory.of. - 0x09f0: 7468 6520 7573 6572 7327 2068 6f6d 6573 the.users'.homes - 0x0a00: 2e20 2054 6865 7365 2064 6972 730a 7368 ...These.dirs.sh - 0x0a10: 6f75 6c64 2062 6520 756e 6465 7220 3c54 ould.be.under./home
      ,.an - 0x0a30: 6420 7573 6572 7320 7769 6c6c 206e 6f74 d.users.will.not - 0x0a40: 2062 6520 6162 6c65 2074 6f20 7379 6d6c .be.able.to.syml - 0x0a50: 696e 6b0a 746f 2066 696c 6573 2074 6865 ink.to.files.the - 0x0a60: 7920 646f 6e27 7420 6f77 6e2e 3c2f 4c49 y.don't.own...
    .All.the - 0x0a80: 2073 7461 6e64 6172 6420 6170 6163 6865 .standard.apache - 0x0a90: 206d 6f64 756c 6573 2061 7265 2061 7661 .modules.are.ava - 0x0aa0: 696c 6162 6c65 2077 6974 6820 7468 6973 ilable.with.this - 0x0ab0: 2072 656c 6561 7365 2061 6e64 2061 7265 .release.and.are - 0x0ac0: 0a6e 6f77 206d 616e 6167 6564 2077 6974 .now.managed.wit - 0x0ad0: 6820 6465 6263 6f6e 662e 2020 5479 7065 h.debconf...Type - 0x0ae0: 203c 5454 3e64 706b 672d 7265 636f 6e66 .dpkg-reconf - 0x0af0: 6967 7572 6520 6170 6163 6865 3c2f 5454 igure.apache.to.select.whic - 0x0b10: 6820 6d6f 6475 6c65 7320 796f 7520 7761 h.modules.you.wa - 0x0b20: 6e74 2065 6e61 626c 6564 2e20 204d 616e nt.enabled...Man - 0x0b30: 7920 6f74 6865 7220 6d6f 6475 6c65 7320 y.other.modules. - 0x0b40: 6172 6520 6176 6169 6c61 626c 650a 7468 are.available.th - 0x0b50: 726f 7567 6820 7468 6520 4465 6269 616e rough.the.Debian - 0x0b60: 2070 6163 6b61 6765 2073 7973 7465 6d20 .package.system. - 0x0b70: 7769 7468 2074 6865 206e 616d 6573 203c with.the.names.< - 0x0b80: 5454 3e6c 6962 6170 6163 6865 2d6d 6f64 TT>libapache-mod - 0x0b90: 2d2a 3c2f 5454 3e2e 0a49 6620 796f 7520 -*
    ..If.you. - 0x0ba0: 6e65 6564 2074 6f20 636f 6d70 696c 6520 need.to.compile. - 0x0bb0: 6120 6d6f 6475 6c65 2079 6f75 7273 656c a.module.yoursel - 0x0bc0: 662c 2079 6f75 2077 696c 6c20 6e65 6564 f,.you.will.need - 0x0bd0: 2074 6f20 696e 7374 616c 6c20 7468 650a .to.install.the. - 0x0be0: 3c54 543e 6170 6163 6865 2d64 6576 3c2f apache-dev.package...

    More.documentat - 0x0c10: 696f 6e20 6f6e 2041 7061 6368 6520 6361 ion.on.Apache.ca - 0x0c20: 6e20 6265 2066 6f75 6e64 206f 6e3a 0a3c n.be.found.on:.< - 0x0c30: 554c 3e0a 3c4c 493e 0a54 6865 203c 4120 UL>.

  • .The.A - 0x0c60: 7061 6368 6520 646f 6375 6d65 6e74 6174 pache.documentat - 0x0c70: 696f 6e3c 2f41 3e20 7374 6f72 6564 206f ion.stored.o - 0x0c80: 6e20 796f 7572 2073 6572 7665 722e 3c2f n.your.server...
  • .The.A - 0x0cc0: 7061 6368 6520 5072 6f6a 6563 743c 2f41 pache.Project.home.site.
  • ..
  • .The.Apache-SSL. - 0x0d20: 686f 6d65 2073 6974 652e 3c2f 4c49 3e0a home.site.
  • . - 0x0d30: 0a3c 4c49 3e0a 5468 6520 3c41 2048 5245 .
  • .The.mod. - 0x0d60: 7065 726c 3c2f 413e 2068 6f6d 6520 7369 perl.home.si - 0x0d70: 7465 2e3c 2f4c 493e 0a0a 3c4c 493e 0a54 te.
  • ..
  • .T - 0x0d80: 6865 203c 4120 4852 4546 3d22 6874 7470 he.ApacheWe - 0x0db0: 656b 3c2f 413e 206e 6577 736c 6574 7465 ek.newslette - 0x0dc0: 722e 3c2f 4c49 3e0a 0a3c 4c49 3e0a 5468 r.
  • ..
  • .Th - 0x0dd0: 6520 3c41 2048 5245 463d 2268 7474 703a e.Debian.Pr - 0x0e00: 6f6a 6563 740a 446f 6375 6d65 6e74 6174 oject.Documentat - 0x0e10: 696f 6e3c 2f41 3e20 7768 6963 6820 636f ion.which.co - 0x0e20: 6e74 6169 6e73 2048 4f57 544f 732c 2046 ntains.HOWTOs,.F - 0x0e30: 4151 732c 2061 6e64 2073 6f66 7477 6172 AQs,.and.softwar - 0x0e40: 6520 7570 6461 7465 732e 3c2f 4c49 3e0a e.updates.
  • . - 0x0e50: 3c2f 554c 3e0a 0a3c 503e 596f 7520 6361 ..

    You.ca - 0x0e60: 6e20 616c 736f 2063 6f6e 7375 6c74 2074 n.also.consult.t - 0x0e70: 6865 206c 6973 7420 6f66 203c 4120 4852 he.list.of.World.Wide.Web. - 0x0eb0: 4672 6571 7565 6e74 6c79 2041 736b 6564 Frequently.Asked - 0x0ec0: 2051 7565 7374 696f 6e73 3c2f 413e 2066 .Questions.f - 0x0ed0: 6f72 2069 6e66 6f72 6d61 7469 6f6e 2e0a or.information.. - 0x0ee0: 0a3c 4832 3e4c 6574 206f 7468 6572 2070 .

    Let.other.p - 0x0ef0: 656f 706c 6520 6b6e 6f77 2061 626f 7574 eople.know.about - 0x0f00: 2074 6869 7320 7365 7276 6572 3c2f 4832 .this.server

    ..Netcraft.p - 0x0f40: 726f 7669 6465 7320 616e 2069 6e74 6572 rovides.an.inter - 0x0f50: 6573 7469 6e67 2066 7265 650a 7365 7276 esting.free.serv - 0x0f60: 6963 6520 666f 7220 7765 6220 7369 7465 ice.for.web.site - 0x0f70: 206d 6f6e 6974 6f72 696e 6720 616e 6420 .monitoring.and. - 0x0f80: 7374 6174 6973 7469 6320 636f 6c6c 6563 statistic.collec - 0x0f90: 7469 6f6e 2e0a 596f 7520 6361 6e20 6c65 tion..You.can.le - 0x0fa0: 7420 7468 656d 206b 6e6f 7720 6162 6f75 t.them.know.abou - 0x0fb0: 7420 796f 7572 2073 6572 7665 7220 7573 t.your.server.us - 0x0fc0: 696e 6720 7468 6569 720a 3c41 2048 5245 ing.their. - 0x0ff0: 696e 7465 7266 6163 653c 2f41 3e2e 0a45 interface..E - 0x1000: 6e61 626c 696e 6720 7468 6520 6d6f 6e69 nabling.the.moni - 0x1010: 746f 7269 6e67 206f 6620 796f 7572 2073 toring.of.your.s - 0x1020: 6572 7665 7220 7769 6c6c 2070 726f 7669 erver.will.provi - 0x1030: 6465 2061 2062 6574 7465 7220 676c 6f62 de.a.better.glob - 0x1040: 616c 206f 7665 7276 6965 770a 6f66 2077 al.overview.of.w - 0x1050: 686f 2069 7320 7573 696e 6720 7768 6174 ho.is.using.what - 0x1060: 2061 6e64 2077 6865 7265 2c20 616e 6420 .and.where,.and. - 0x1070: 6974 2077 6f75 6c64 2067 6976 6520 4465 it.would.give.De - 0x1080: 6269 616e 2061 2062 6574 7465 720a 6f76 bian.a.better.ov - 0x1090: 6572 7669 6577 206f 6620 7468 6520 6170 erview.of.the.ap - 0x10a0: 6163 6865 2070 6163 6b61 6765 2075 7361 ache.package.usa - 0x10b0: 6765 2e0a 0a3c 4832 3e41 626f 7574 2074 ge...

    About.t - 0x10c0: 6869 7320 7061 6765 3c2f 4832 3e0a 0a3c his.page

    ..< - 0x10d0: 494d 4720 414c 4947 4e3d 2272 6967 6874 IMG.ALIGN="right - 0x10e0: 2220 414c 543d 2222 2048 4549 4748 543d ".ALT="".HEIGHT= - 0x10f0: 2232 3437 2220 5749 4454 483d 2232 3738 "247".WIDTH="278 - 0x1100: 2220 5352 433d 2269 636f 6e73 2f6a 6865 ".SRC="icons/jhe - 0x1110: 3036 312e 706e 6722 3e0a 0a3c 503e 5468 061.png">..

    Th - 0x1120: 6973 2069 7320 6120 706c 6163 6568 6f6c is.is.a.placehol - 0x1130: 6465 7220 7061 6765 2069 6e73 7461 6c6c der.page.install - 0x1140: 6564 2062 7920 7468 6520 3c41 0a48 5245 ed.by.the.Debia - 0x1170: 6e3c 2f41 3e0a 7265 6c65 6173 6520 6f66 n.release.of - 0x1180: 2074 6865 2061 7061 6368 6520 5765 6220 .the.apache.Web. - 0x1190: 7365 7276 6572 2070 6163 6b61 6765 2e0a server.package.. - 0x11a0: 0a3c 503e 5468 6973 2063 6f6d 7075 7465 .

    This.compute - 0x11b0: 7220 6861 7320 696e 7374 616c 6c65 6420 r.has.installed. - 0x11c0: 7468 6520 4465 6269 616e 2047 4e55 2f4c the.Debian.GNU/L - 0x11d0: 696e 7578 206f 7065 7261 7469 6e67 2073 inux.operating.s - 0x11e0: 7973 7465 6d2c 0a62 7574 2069 7420 6861 ystem,.but.it.ha - 0x11f0: 7320 3c73 7472 6f6e 673e 6e6f 7468 696e s.nothin - 0x1200: 6720 746f 2064 6f20 7769 7468 2074 6865 g.to.do.with.the - 0x1210: 2044 6562 6961 6e0a 5072 6f6a 6563 743c .Debian.Project< - 0x1220: 2f73 7472 6f6e 673e 2e20 506c 6561 7365 /strong>..Please - 0x1230: 2064 6f20 3c73 7472 6f6e 673e 6e6f 743c .do.not< - 0x1240: 2f73 7472 6f6e 673e 2063 6f6e 7461 6374 /strong>.contact - 0x1250: 2074 6865 2044 6562 6961 6e0a 5072 6f6a .the.Debian.Proj - 0x1260: 6563 7420 6162 6f75 7420 6974 2e3c 2f50 ect.about.it.

    ..

    If.you.fin - 0x1280: 6420 6120 6275 6720 696e 2074 6869 7320 d.a.bug.in.this. - 0x1290: 6170 6163 6865 2070 6163 6b61 6765 2c20 apache.package,. - 0x12a0: 6f72 2069 6e20 4170 6163 6865 2069 7473 or.in.Apache.its - 0x12b0: 656c 662c 0a70 6c65 6173 6520 6669 6c65 elf,.please.file - 0x12c0: 2061 2062 7567 2072 6570 6f72 7420 6f6e .a.bug.report.on - 0x12d0: 2069 742e 2020 496e 7374 7275 6374 696f .it...Instructio - 0x12e0: 6e73 206f 6e20 646f 696e 6720 7468 6973 ns.on.doing.this - 0x12f0: 2c20 616e 6420 7468 650a 6c69 7374 206f ,.and.the.list.o - 0x1300: 6620 3c41 2048 5245 463d 2268 7474 703a f.kn - 0x1330: 6f77 6e20 6275 6773 3c2f 413e 206f 6620 own.bugs.of. - 0x1340: 7468 6973 0a70 6163 6b61 6765 2c20 6361 this.package,.ca - 0x1350: 6e20 6265 2066 6f75 6e64 2069 6e20 7468 n.be.found.in.th - 0x1360: 6520 0a3c 4120 4852 4546 3d22 6874 7470 e..Debian.Bug.Tra - 0x13a0: 636b 696e 6720 5379 7374 656d 3c2f 413e cking.System - 0x13b0: 2e0a 0a3c 503e 5468 616e 6b73 2066 6f72 ...

    Thanks.for - 0x13c0: 2075 7369 6e67 2074 6869 7320 7061 636b .using.this.pack - 0x13d0: 6167 652c 2061 6e64 2063 6f6e 6772 6174 age,.and.congrat - 0x13e0: 756c 6174 696f 6e73 2066 6f72 2079 6f75 ulations.for.you - 0x13f0: 7220 6368 6f69 6365 206f 660a 6120 4465 r.choice.of.a.De - 0x1400: 6269 616e 2073 7973 7465 6d21 3c2f 503e bian.system!

    - 0x1410: 0a0a 3c44 4956 2061 6c69 676e 3d22 6365 ........ - 0x1520: 3c2f 613e 0a3c 2f44 4956 3e0a 0a3c 212d ..... - 0x15f0: 0a3c 2f48 544d 4c3e 0a .. -IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [.], ack 5560, win 12383, options [nop,nop,TS val 1306300953 ecr 1306300953], length 0 - 0x0000: 0000 0000 0000 0000 0000 0000 0800 4500 ..............E. - 0x0010: 0034 1b6e 4000 4006 2154 7f00 0001 7f00 .4.n@.@.!T...... - 0x0020: 0001 da70 0050 3758 8a49 377a a3a9 8010 ...p.P7X.I7z.... - 0x0030: 305f 10ea 0000 0101 080a 4ddc 9219 4ddc 0_........M...M. - 0x0040: 9219 .. -IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [F.], seq 203, ack 5560, win 12383, options [nop,nop,TS val 1306302241 ecr 1306300953], length 0 - 0x0000: 0000 0000 0000 0000 0000 0000 0800 4500 ..............E. - 0x0010: 0034 1b70 4000 4006 2152 7f00 0001 7f00 .4.p@.@.!R...... - 0x0020: 0001 da70 0050 3758 8a49 377a a3a9 8011 ...p.P7X.I7z.... - 0x0030: 305f 0be1 0000 0101 080a 4ddc 9721 4ddc 0_........M..!M. - 0x0040: 9219 .. -IP 127.0.0.1.80 > 127.0.0.1.55920: Flags [F.], seq 5560, ack 204, win 8192, options [nop,nop,TS val 1306302243 ecr 1306302241], length 0 - 0x0000: 0000 0000 0000 0000 0000 0000 0800 4500 ..............E. - 0x0010: 0034 1fe8 4000 4006 1cda 7f00 0001 7f00 .4..@.@......... - 0x0020: 0001 0050 da70 377a a3a9 3758 8a4a 8011 ...P.p7z..7X.J.. - 0x0030: 2000 1735 0000 0101 080a 4ddc 9723 4ddc ...5......M..#M. - 0x0040: 9721 .! -IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [.], ack 5561, win 12383, options [nop,nop,TS val 1306302243 ecr 1306302243], length 0 - 0x0000: 0000 0000 0000 0000 0000 0000 0800 4500 ..............E. - 0x0010: 0034 1b72 4000 4006 2150 7f00 0001 7f00 .4.r@.@.!P...... - 0x0020: 0001 da70 0050 3758 8a4a 377a a3aa 8010 ...p.P7X.J7z.... - 0x0030: 305f 06d4 0000 0101 080a 4ddc 9723 4ddc 0_........M..#M. - 0x0040: 9723 .# diff --git a/tests/print-flags.pcap b/tests/print-flags.pcap deleted file mode 100644 index 8798c69..0000000 Binary files a/tests/print-flags.pcap and /dev/null differ diff --git a/tests/print-x.out b/tests/print-x.out deleted file mode 100644 index f2a4e2c..0000000 --- a/tests/print-x.out +++ /dev/null @@ -1,409 +0,0 @@ -IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [S], seq 928549246, win 32767, options [mss 16396,sackOK,TS val 1306300950 ecr 0,nop,wscale 2], length 0 - 0x0000: 4500 003c 1b68 4000 4006 2152 7f00 0001 - 0x0010: 7f00 0001 da70 0050 3758 897e 0000 0000 - 0x0020: a002 7fff 1421 0000 0204 400c 0402 080a - 0x0030: 4ddc 9216 0000 0000 0103 0302 -IP 127.0.0.1.80 > 127.0.0.1.55920: Flags [S.], seq 930778609, ack 928549247, win 32767, options [mss 16396,sackOK,TS val 1306300950 ecr 1306300950,nop,wscale 2], length 0 - 0x0000: 4500 003c 0000 4000 4006 3cba 7f00 0001 - 0x0010: 7f00 0001 0050 da70 377a 8df1 3758 897f - 0x0020: a012 7fff 6eb1 0000 0204 400c 0402 080a - 0x0030: 4ddc 9216 4ddc 9216 0103 0302 -IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [.], ack 1, win 8192, options [nop,nop,TS val 1306300950 ecr 1306300950], length 0 - 0x0000: 4500 0034 1b6a 4000 4006 2158 7f00 0001 - 0x0010: 7f00 0001 da70 0050 3758 897f 377a 8df2 - 0x0020: 8010 2000 37d0 0000 0101 080a 4ddc 9216 - 0x0030: 4ddc 9216 -IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [P.], seq 1:203, ack 1, win 8192, options [nop,nop,TS val 1306300951 ecr 1306300950], length 202: HTTP: GET / HTTP/1.1 - 0x0000: 4500 00fe 1b6c 4000 4006 208c 7f00 0001 - 0x0010: 7f00 0001 da70 0050 3758 897f 377a 8df2 - 0x0020: 8018 2000 fef2 0000 0101 080a 4ddc 9217 - 0x0030: 4ddc 9216 4745 5420 2f20 4854 5450 2f31 - 0x0040: 2e31 0d0a 486f 7374 3a20 6c6f 6361 6c68 - 0x0050: 6f73 740d 0a55 7365 722d 4167 656e 743a - 0x0060: 2045 4c69 6e6b 732f 302e 3130 2e34 2d37 - 0x0070: 2d64 6562 6961 6e20 2874 6578 746d 6f64 - 0x0080: 653b 204c 696e 7578 2032 2e36 2e31 312d - 0x0090: 312d 3638 362d 736d 7020 6936 3836 3b20 - 0x00a0: 3133 3278 3536 2d32 290d 0a41 6363 6570 - 0x00b0: 743a 202a 2f2a 0d0a 4163 6365 7074 2d45 - 0x00c0: 6e63 6f64 696e 673a 2067 7a69 700d 0a41 - 0x00d0: 6363 6570 742d 4c61 6e67 7561 6765 3a20 - 0x00e0: 656e 0d0a 436f 6e6e 6563 7469 6f6e 3a20 - 0x00f0: 4b65 6570 2d41 6c69 7665 0d0a 0d0a -IP 127.0.0.1.80 > 127.0.0.1.55920: Flags [.], ack 203, win 8192, options [nop,nop,TS val 1306300952 ecr 1306300951], length 0 - 0x0000: 4500 0034 1fe4 4000 4006 1cde 7f00 0001 - 0x0010: 7f00 0001 0050 da70 377a 8df2 3758 8a49 - 0x0020: 8010 2000 3703 0000 0101 080a 4ddc 9218 - 0x0030: 4ddc 9217 -IP 127.0.0.1.80 > 127.0.0.1.55920: Flags [P.], seq 1:5560, ack 203, win 8192, options [nop,nop,TS val 1306300953 ecr 1306300951], length 5559: HTTP: HTTP/1.1 200 OK - 0x0000: 4500 15eb 1fe6 4000 4006 0725 7f00 0001 - 0x0010: 7f00 0001 0050 da70 377a 8df2 3758 8a49 - 0x0020: 8018 2000 13e0 0000 0101 080a 4ddc 9219 - 0x0030: 4ddc 9217 4854 5450 2f31 2e31 2032 3030 - 0x0040: 204f 4b0d 0a44 6174 653a 2057 6564 2c20 - 0x0050: 3036 204a 756c 2032 3030 3520 3033 3a35 - 0x0060: 373a 3335 2047 4d54 0d0a 5365 7276 6572 - 0x0070: 3a20 4170 6163 6865 2f31 2e33 2e33 330d - 0x0080: 0a4c 6173 742d 4d6f 6469 6669 6564 3a20 - 0x0090: 5375 6e2c 2031 3520 4175 6720 3230 3034 - 0x00a0: 2030 303a 3433 3a34 3120 474d 540d 0a45 - 0x00b0: 5461 673a 2022 3665 3830 6630 2d31 3438 - 0x00c0: 612d 3431 3165 6231 6264 220d 0a41 6363 - 0x00d0: 6570 742d 5261 6e67 6573 3a20 6279 7465 - 0x00e0: 730d 0a43 6f6e 7465 6e74 2d4c 656e 6774 - 0x00f0: 683a 2035 3235 380d 0a4b 6565 702d 416c - 0x0100: 6976 653a 2074 696d 656f 7574 3d31 352c - 0x0110: 206d 6178 3d31 3030 0d0a 436f 6e6e 6563 - 0x0120: 7469 6f6e 3a20 4b65 6570 2d41 6c69 7665 - 0x0130: 0d0a 436f 6e74 656e 742d 5479 7065 3a20 - 0x0140: 7465 7874 2f68 746d 6c3b 2063 6861 7273 - 0x0150: 6574 3d69 736f 2d38 3835 392d 310d 0a0d - 0x0160: 0a3c 2144 4f43 5459 5045 2048 544d 4c20 - 0x0170: 5055 424c 4943 2022 2d2f 2f57 3343 2f2f - 0x0180: 4454 4420 4854 4d4c 2034 2e30 3120 5472 - 0x0190: 616e 7369 7469 6f6e 616c 2f2f 454e 223e - 0x01a0: 0a3c 4854 4d4c 3e0a 3c48 4541 443e 0a20 - 0x01b0: 2020 3c4d 4554 4120 4854 5450 2d45 5155 - 0x01c0: 4956 3d22 436f 6e74 656e 742d 5479 7065 - 0x01d0: 2220 434f 4e54 454e 543d 2274 6578 742f - 0x01e0: 6874 6d6c 3b20 6368 6172 7365 743d 6973 - 0x01f0: 6f2d 3838 3539 2d31 223e 0a20 2020 3c4d - 0x0200: 4554 4120 4e41 4d45 3d22 4465 7363 7269 - 0x0210: 7074 696f 6e22 2043 4f4e 5445 4e54 3d22 - 0x0220: 5468 6520 696e 6974 6961 6c20 696e 7374 - 0x0230: 616c 6c61 7469 6f6e 206f 6620 4465 6269 - 0x0240: 616e 2061 7061 6368 652e 223e 0a20 2020 - 0x0250: 3c54 4954 4c45 3e50 6c61 6365 686f 6c64 - 0x0260: 6572 2070 6167 653c 2f54 4954 4c45 3e0a - 0x0270: 3c2f 4845 4144 3e0a 3c42 4f44 5920 5445 - 0x0280: 5854 3d22 2330 3030 3030 3022 2042 4743 - 0x0290: 4f4c 4f52 3d22 2346 4646 4646 4622 204c - 0x02a0: 494e 4b3d 2223 3030 3030 4546 2220 564c - 0x02b0: 494e 4b3d 2223 3535 3138 3841 2220 414c - 0x02c0: 494e 4b3d 2223 4646 3030 3030 223e 0a0a - 0x02d0: 3c48 313e 506c 6163 6568 6f6c 6465 7220 - 0x02e0: 7061 6765 3c2f 4831 3e0a 3c48 323e 4966 - 0x02f0: 2079 6f75 2061 7265 206a 7573 7420 6272 - 0x0300: 6f77 7369 6e67 2074 6865 2077 6562 3c2f - 0x0310: 6832 3e0a 0a3c 503e 5468 6520 6f77 6e65 - 0x0320: 7220 6f66 2074 6869 7320 7765 6220 7369 - 0x0330: 7465 2068 6173 206e 6f74 2070 7574 2075 - 0x0340: 7020 616e 7920 7765 6220 7061 6765 7320 - 0x0350: 7965 742e 0a50 6c65 6173 6520 636f 6d65 - 0x0360: 2062 6163 6b20 6c61 7465 722e 3c2f 503e - 0x0370: 0a0a 3c50 3e3c 534d 414c 4c3e 3c43 4954 - 0x0380: 453e 4d6f 7665 2061 6c6f 6e67 2c20 6e6f - 0x0390: 7468 696e 6720 746f 2073 6565 2068 6572 - 0x03a0: 652e 2e2e 3c2f 4349 5445 3e20 3a2d 293c - 0x03b0: 2f53 4d41 4c4c 3e3c 2f50 3e0a 0a3c 4832 - 0x03c0: 3e49 6620 796f 7520 6172 6520 7472 7969 - 0x03d0: 6e67 2074 6f20 6c6f 6361 7465 2074 6865 - 0x03e0: 2061 646d 696e 6973 7472 6174 6f72 206f - 0x03f0: 6620 7468 6973 206d 6163 6869 6e65 3c2f - 0x0400: 4832 3e0a 0a3c 503e 4966 2079 6f75 2077 - 0x0410: 616e 7420 746f 2072 6570 6f72 7420 736f - 0x0420: 6d65 7468 696e 6720 6162 6f75 7420 7468 - 0x0430: 6973 2068 6f73 7427 7320 6265 6861 7669 - 0x0440: 6f72 2c20 706c 6561 7365 0a63 6f6e 7461 - 0x0450: 6374 2074 6865 2049 6e74 6572 6e65 7420 - 0x0460: 5365 7276 6963 6520 5072 6f76 6964 6572 - 0x0470: 2028 4953 5029 2069 6e76 6f6c 7665 6420 - 0x0480: 6469 7265 6374 6c79 2e3c 2f50 3e0a 0a3c - 0x0490: 503e 5365 6520 7468 6520 3c41 2068 7265 - 0x04a0: 663d 2268 7474 703a 2f2f 7777 772e 6162 - 0x04b0: 7573 652e 6e65 742f 223e 4e65 7477 6f72 - 0x04c0: 6b20 4162 7573 650a 436c 6561 7269 6e67 - 0x04d0: 686f 7573 653c 2f41 3e20 666f 7220 686f - 0x04e0: 7720 746f 2064 6f20 7468 6973 2e3c 2f50 - 0x04f0: 3e0a 0a3c 4832 3e49 6620 796f 7520 6172 - 0x0500: 6520 7468 6520 6164 6d69 6e69 7374 7261 - 0x0510: 746f 7220 6f66 2074 6869 7320 6d61 6368 - 0x0520: 696e 653c 2f48 323e 0a0a 3c50 3e54 6865 - 0x0530: 2069 6e69 7469 616c 2069 6e73 7461 6c6c - 0x0540: 6174 696f 6e20 6f66 203c 4120 6872 6566 - 0x0550: 3d22 6874 7470 3a2f 2f77 7777 2e64 6562 - 0x0560: 6961 6e2e 6f72 672f 223e 4465 6269 616e - 0x0570: 2773 0a61 7061 6368 653c 2f41 3e20 7765 - 0x0580: 6220 7365 7276 6572 2070 6163 6b61 6765 - 0x0590: 2077 6173 2073 7563 6365 7373 6675 6c2e - 0x05a0: 3c2f 503e 0a0a 3c50 3e3c 5354 524f 4e47 - 0x05b0: 3e59 6f75 2073 686f 756c 6420 7265 706c - 0x05c0: 6163 6520 7468 6973 2070 6167 6520 7769 - 0x05d0: 7468 2079 6f75 7220 6f77 6e20 7765 6220 - 0x05e0: 7061 6765 7320 6173 0a73 6f6f 6e20 6173 - 0x05f0: 2070 6f73 7369 626c 652e 3c2f 5354 524f - 0x0600: 4e47 3e3c 2f50 3e0a 0a3c 503e 556e 6c65 - 0x0610: 7373 2079 6f75 2063 6861 6e67 6564 2069 - 0x0620: 7473 2063 6f6e 6669 6775 7261 7469 6f6e - 0x0630: 2c20 796f 7572 206e 6577 2073 6572 7665 - 0x0640: 7220 6973 2063 6f6e 6669 6775 7265 6420 - 0x0650: 6173 2066 6f6c 6c6f 7773 3a0a 3c55 4c3e - 0x0660: 0a3c 4c49 3e0a 436f 6e66 6967 7572 6174 - 0x0670: 696f 6e20 6669 6c65 7320 6361 6e20 6265 - 0x0680: 2066 6f75 6e64 2069 6e20 3c54 543e 2f65 - 0x0690: 7463 2f61 7061 6368 653c 2f54 543e 2e3c - 0x06a0: 2f4c 493e 0a0a 3c4c 493e 0a54 6865 203c - 0x06b0: 5454 3e44 6f63 756d 656e 7452 6f6f 743c - 0x06c0: 2f54 543e 2c20 7768 6963 6820 6973 2074 - 0x06d0: 6865 2064 6972 6563 746f 7279 2075 6e64 - 0x06e0: 6572 2077 6869 6368 2061 6c6c 2079 6f75 - 0x06f0: 720a 4854 4d4c 2066 696c 6573 2073 686f - 0x0700: 756c 6420 6578 6973 742c 2069 7320 7365 - 0x0710: 7420 746f 203c 5454 3e2f 7661 722f 7777 - 0x0720: 773c 2f54 543e 2e3c 2f4c 493e 0a0a 3c4c - 0x0730: 493e 0a43 4749 2073 6372 6970 7473 2061 - 0x0740: 7265 206c 6f6f 6b65 6420 666f 7220 696e - 0x0750: 203c 5454 3e2f 7573 722f 6c69 622f 6367 - 0x0760: 692d 6269 6e3c 2f54 543e 2c20 7768 6963 - 0x0770: 6820 6973 2077 6865 7265 0a44 6562 6961 - 0x0780: 6e20 7061 636b 6167 6573 2077 696c 6c20 - 0x0790: 706c 6163 6520 7468 6569 7220 7363 7269 - 0x07a0: 7074 732e 3c2f 4c49 3e0a 0a3c 4c49 3e0a - 0x07b0: 4c6f 6720 6669 6c65 7320 6172 6520 706c - 0x07c0: 6163 6564 2069 6e20 3c54 543e 2f76 6172 - 0x07d0: 2f6c 6f67 2f61 7061 6368 653c 2f54 543e - 0x07e0: 2c20 616e 6420 7769 6c6c 2062 6520 726f - 0x07f0: 7461 7465 640a 7765 656b 6c79 2e20 2054 - 0x0800: 6865 2066 7265 7175 656e 6379 206f 6620 - 0x0810: 726f 7461 7469 6f6e 2063 616e 2062 6520 - 0x0820: 6561 7369 6c79 2063 6861 6e67 6564 2062 - 0x0830: 7920 6564 6974 696e 670a 3c54 543e 2f65 - 0x0840: 7463 2f6c 6f67 726f 7461 7465 2e64 2f61 - 0x0850: 7061 6368 653c 2f54 543e 2e3c 2f4c 493e - 0x0860: 0a0a 3c4c 493e 0a54 6865 2064 6566 6175 - 0x0870: 6c74 2064 6972 6563 746f 7279 2069 6e64 - 0x0880: 6578 2069 7320 3c54 543e 696e 6465 782e - 0x0890: 6874 6d6c 3c2f 5454 3e2c 206d 6561 6e69 - 0x08a0: 6e67 2074 6861 7420 7265 7175 6573 7473 - 0x08b0: 0a66 6f72 2061 2064 6972 6563 746f 7279 - 0x08c0: 203c 5454 3e2f 666f 6f2f 6261 722f 3c2f - 0x08d0: 5454 3e20 7769 6c6c 2067 6976 6520 7468 - 0x08e0: 6520 636f 6e74 656e 7473 206f 6620 7468 - 0x08f0: 6520 6669 6c65 203c 5454 3e2f 7661 722f - 0x0900: 7777 772f 666f 6f2f 6261 722f 696e 6465 - 0x0910: 782e 6874 6d6c 3c2f 5454 3e0a 6966 2069 - 0x0920: 7420 6578 6973 7473 2028 6173 7375 6d69 - 0x0930: 6e67 2074 6861 7420 3c54 543e 2f76 6172 - 0x0940: 2f77 7777 3c2f 5454 3e20 6973 2079 6f75 - 0x0950: 7220 3c54 543e 446f 6375 6d65 6e74 526f - 0x0960: 6f74 3c2f 5454 3e29 2e3c 2f4c 493e 0a0a - 0x0970: 3c4c 493e 0a55 7365 7220 6469 7265 6374 - 0x0980: 6f72 6965 7320 6172 6520 656e 6162 6c65 - 0x0990: 642c 2061 6e64 2075 7365 7220 646f 6375 - 0x09a0: 6d65 6e74 7320 7769 6c6c 2062 6520 6c6f - 0x09b0: 6f6b 6564 2066 6f72 0a69 6e20 7468 6520 - 0x09c0: 3c54 543e 7075 626c 6963 5f68 746d 6c3c - 0x09d0: 2f54 543e 2064 6972 6563 746f 7279 206f - 0x09e0: 6620 7468 6520 7573 6572 7327 2068 6f6d - 0x09f0: 6573 2e20 2054 6865 7365 2064 6972 730a - 0x0a00: 7368 6f75 6c64 2062 6520 756e 6465 7220 - 0x0a10: 3c54 543e 2f68 6f6d 653c 2f54 543e 2c20 - 0x0a20: 616e 6420 7573 6572 7320 7769 6c6c 206e - 0x0a30: 6f74 2062 6520 6162 6c65 2074 6f20 7379 - 0x0a40: 6d6c 696e 6b0a 746f 2066 696c 6573 2074 - 0x0a50: 6865 7920 646f 6e27 7420 6f77 6e2e 3c2f - 0x0a60: 4c49 3e0a 0a3c 2f55 4c3e 0a41 6c6c 2074 - 0x0a70: 6865 2073 7461 6e64 6172 6420 6170 6163 - 0x0a80: 6865 206d 6f64 756c 6573 2061 7265 2061 - 0x0a90: 7661 696c 6162 6c65 2077 6974 6820 7468 - 0x0aa0: 6973 2072 656c 6561 7365 2061 6e64 2061 - 0x0ab0: 7265 0a6e 6f77 206d 616e 6167 6564 2077 - 0x0ac0: 6974 6820 6465 6263 6f6e 662e 2020 5479 - 0x0ad0: 7065 203c 5454 3e64 706b 672d 7265 636f - 0x0ae0: 6e66 6967 7572 6520 6170 6163 6865 3c2f - 0x0af0: 5454 3e20 746f 0a73 656c 6563 7420 7768 - 0x0b00: 6963 6820 6d6f 6475 6c65 7320 796f 7520 - 0x0b10: 7761 6e74 2065 6e61 626c 6564 2e20 204d - 0x0b20: 616e 7920 6f74 6865 7220 6d6f 6475 6c65 - 0x0b30: 7320 6172 6520 6176 6169 6c61 626c 650a - 0x0b40: 7468 726f 7567 6820 7468 6520 4465 6269 - 0x0b50: 616e 2070 6163 6b61 6765 2073 7973 7465 - 0x0b60: 6d20 7769 7468 2074 6865 206e 616d 6573 - 0x0b70: 203c 5454 3e6c 6962 6170 6163 6865 2d6d - 0x0b80: 6f64 2d2a 3c2f 5454 3e2e 0a49 6620 796f - 0x0b90: 7520 6e65 6564 2074 6f20 636f 6d70 696c - 0x0ba0: 6520 6120 6d6f 6475 6c65 2079 6f75 7273 - 0x0bb0: 656c 662c 2079 6f75 2077 696c 6c20 6e65 - 0x0bc0: 6564 2074 6f20 696e 7374 616c 6c20 7468 - 0x0bd0: 650a 3c54 543e 6170 6163 6865 2d64 6576 - 0x0be0: 3c2f 5454 3e20 7061 636b 6167 652e 0a0a - 0x0bf0: 3c50 3e4d 6f72 6520 646f 6375 6d65 6e74 - 0x0c00: 6174 696f 6e20 6f6e 2041 7061 6368 6520 - 0x0c10: 6361 6e20 6265 2066 6f75 6e64 206f 6e3a - 0x0c20: 0a3c 554c 3e0a 3c4c 493e 0a54 6865 203c - 0x0c30: 4120 4852 4546 3d22 2f64 6f63 2f61 7061 - 0x0c40: 6368 652d 646f 632f 6d61 6e75 616c 2f22 - 0x0c50: 3e41 7061 6368 6520 646f 6375 6d65 6e74 - 0x0c60: 6174 696f 6e3c 2f41 3e20 7374 6f72 6564 - 0x0c70: 206f 6e20 796f 7572 2073 6572 7665 722e - 0x0c80: 3c2f 4c49 3e0a 0a3c 4c49 3e0a 5468 6520 - 0x0c90: 3c41 2048 5245 463d 2268 7474 703a 2f2f - 0x0ca0: 7777 772e 6170 6163 6865 2e6f 7267 2f22 - 0x0cb0: 3e41 7061 6368 6520 5072 6f6a 6563 743c - 0x0cc0: 2f41 3e20 686f 6d65 2073 6974 652e 3c2f - 0x0cd0: 4c49 3e0a 0a3c 4c49 3e0a 5468 6520 3c41 - 0x0ce0: 2048 5245 463d 2268 7474 703a 2f2f 7777 - 0x0cf0: 772e 6170 6163 6865 2d73 736c 2e6f 7267 - 0x0d00: 2f22 3e41 7061 6368 652d 5353 4c3c 2f41 - 0x0d10: 3e20 686f 6d65 2073 6974 652e 3c2f 4c49 - 0x0d20: 3e0a 0a3c 4c49 3e0a 5468 6520 3c41 2048 - 0x0d30: 5245 463d 2268 7474 703a 2f2f 7065 726c - 0x0d40: 2e61 7061 6368 652e 6f72 672f 223e 6d6f - 0x0d50: 6420 7065 726c 3c2f 413e 2068 6f6d 6520 - 0x0d60: 7369 7465 2e3c 2f4c 493e 0a0a 3c4c 493e - 0x0d70: 0a54 6865 203c 4120 4852 4546 3d22 6874 - 0x0d80: 7470 3a2f 2f77 7777 2e61 7061 6368 6577 - 0x0d90: 6565 6b2e 636f 6d2f 223e 4170 6163 6865 - 0x0da0: 5765 656b 3c2f 413e 206e 6577 736c 6574 - 0x0db0: 7465 722e 3c2f 4c49 3e0a 0a3c 4c49 3e0a - 0x0dc0: 5468 6520 3c41 2048 5245 463d 2268 7474 - 0x0dd0: 703a 2f2f 7777 772e 6465 6269 616e 2e6f - 0x0de0: 7267 2f64 6f63 2f22 3e44 6562 6961 6e20 - 0x0df0: 5072 6f6a 6563 740a 446f 6375 6d65 6e74 - 0x0e00: 6174 696f 6e3c 2f41 3e20 7768 6963 6820 - 0x0e10: 636f 6e74 6169 6e73 2048 4f57 544f 732c - 0x0e20: 2046 4151 732c 2061 6e64 2073 6f66 7477 - 0x0e30: 6172 6520 7570 6461 7465 732e 3c2f 4c49 - 0x0e40: 3e0a 3c2f 554c 3e0a 0a3c 503e 596f 7520 - 0x0e50: 6361 6e20 616c 736f 2063 6f6e 7375 6c74 - 0x0e60: 2074 6865 206c 6973 7420 6f66 203c 4120 - 0x0e70: 4852 4546 3d22 6874 7470 3a2f 2f77 7777 - 0x0e80: 2e62 6f75 7465 6c6c 2e63 6f6d 2f66 6171 - 0x0e90: 2f22 3e57 6f72 6c64 0a57 6964 6520 5765 - 0x0ea0: 6220 4672 6571 7565 6e74 6c79 2041 736b - 0x0eb0: 6564 2051 7565 7374 696f 6e73 3c2f 413e - 0x0ec0: 2066 6f72 2069 6e66 6f72 6d61 7469 6f6e - 0x0ed0: 2e0a 0a3c 4832 3e4c 6574 206f 7468 6572 - 0x0ee0: 2070 656f 706c 6520 6b6e 6f77 2061 626f - 0x0ef0: 7574 2074 6869 7320 7365 7276 6572 3c2f - 0x0f00: 4832 3e0a 0a3c 4120 4852 4546 3d22 6874 - 0x0f10: 7470 3a2f 2f6e 6574 6372 6166 742e 636f - 0x0f20: 6d2f 223e 4e65 7463 7261 6674 3c2f 413e - 0x0f30: 2070 726f 7669 6465 7320 616e 2069 6e74 - 0x0f40: 6572 6573 7469 6e67 2066 7265 650a 7365 - 0x0f50: 7276 6963 6520 666f 7220 7765 6220 7369 - 0x0f60: 7465 206d 6f6e 6974 6f72 696e 6720 616e - 0x0f70: 6420 7374 6174 6973 7469 6320 636f 6c6c - 0x0f80: 6563 7469 6f6e 2e0a 596f 7520 6361 6e20 - 0x0f90: 6c65 7420 7468 656d 206b 6e6f 7720 6162 - 0x0fa0: 6f75 7420 796f 7572 2073 6572 7665 7220 - 0x0fb0: 7573 696e 6720 7468 6569 720a 3c41 2048 - 0x0fc0: 5245 463d 2268 7474 703a 2f2f 7570 7469 - 0x0fd0: 6d65 2e6e 6574 6372 6166 742e 636f 6d2f - 0x0fe0: 223e 696e 7465 7266 6163 653c 2f41 3e2e - 0x0ff0: 0a45 6e61 626c 696e 6720 7468 6520 6d6f - 0x1000: 6e69 746f 7269 6e67 206f 6620 796f 7572 - 0x1010: 2073 6572 7665 7220 7769 6c6c 2070 726f - 0x1020: 7669 6465 2061 2062 6574 7465 7220 676c - 0x1030: 6f62 616c 206f 7665 7276 6965 770a 6f66 - 0x1040: 2077 686f 2069 7320 7573 696e 6720 7768 - 0x1050: 6174 2061 6e64 2077 6865 7265 2c20 616e - 0x1060: 6420 6974 2077 6f75 6c64 2067 6976 6520 - 0x1070: 4465 6269 616e 2061 2062 6574 7465 720a - 0x1080: 6f76 6572 7669 6577 206f 6620 7468 6520 - 0x1090: 6170 6163 6865 2070 6163 6b61 6765 2075 - 0x10a0: 7361 6765 2e0a 0a3c 4832 3e41 626f 7574 - 0x10b0: 2074 6869 7320 7061 6765 3c2f 4832 3e0a - 0x10c0: 0a3c 494d 4720 414c 4947 4e3d 2272 6967 - 0x10d0: 6874 2220 414c 543d 2222 2048 4549 4748 - 0x10e0: 543d 2232 3437 2220 5749 4454 483d 2232 - 0x10f0: 3738 2220 5352 433d 2269 636f 6e73 2f6a - 0x1100: 6865 3036 312e 706e 6722 3e0a 0a3c 503e - 0x1110: 5468 6973 2069 7320 6120 706c 6163 6568 - 0x1120: 6f6c 6465 7220 7061 6765 2069 6e73 7461 - 0x1130: 6c6c 6564 2062 7920 7468 6520 3c41 0a48 - 0x1140: 5245 463d 2268 7474 703a 2f2f 7777 772e - 0x1150: 6465 6269 616e 2e6f 7267 2f22 3e44 6562 - 0x1160: 6961 6e3c 2f41 3e0a 7265 6c65 6173 6520 - 0x1170: 6f66 2074 6865 2061 7061 6368 6520 5765 - 0x1180: 6220 7365 7276 6572 2070 6163 6b61 6765 - 0x1190: 2e0a 0a3c 503e 5468 6973 2063 6f6d 7075 - 0x11a0: 7465 7220 6861 7320 696e 7374 616c 6c65 - 0x11b0: 6420 7468 6520 4465 6269 616e 2047 4e55 - 0x11c0: 2f4c 696e 7578 206f 7065 7261 7469 6e67 - 0x11d0: 2073 7973 7465 6d2c 0a62 7574 2069 7420 - 0x11e0: 6861 7320 3c73 7472 6f6e 673e 6e6f 7468 - 0x11f0: 696e 6720 746f 2064 6f20 7769 7468 2074 - 0x1200: 6865 2044 6562 6961 6e0a 5072 6f6a 6563 - 0x1210: 743c 2f73 7472 6f6e 673e 2e20 506c 6561 - 0x1220: 7365 2064 6f20 3c73 7472 6f6e 673e 6e6f - 0x1230: 743c 2f73 7472 6f6e 673e 2063 6f6e 7461 - 0x1240: 6374 2074 6865 2044 6562 6961 6e0a 5072 - 0x1250: 6f6a 6563 7420 6162 6f75 7420 6974 2e3c - 0x1260: 2f50 3e0a 0a3c 503e 4966 2079 6f75 2066 - 0x1270: 696e 6420 6120 6275 6720 696e 2074 6869 - 0x1280: 7320 6170 6163 6865 2070 6163 6b61 6765 - 0x1290: 2c20 6f72 2069 6e20 4170 6163 6865 2069 - 0x12a0: 7473 656c 662c 0a70 6c65 6173 6520 6669 - 0x12b0: 6c65 2061 2062 7567 2072 6570 6f72 7420 - 0x12c0: 6f6e 2069 742e 2020 496e 7374 7275 6374 - 0x12d0: 696f 6e73 206f 6e20 646f 696e 6720 7468 - 0x12e0: 6973 2c20 616e 6420 7468 650a 6c69 7374 - 0x12f0: 206f 6620 3c41 2048 5245 463d 2268 7474 - 0x1300: 703a 2f2f 6275 6773 2e64 6562 6961 6e2e - 0x1310: 6f72 672f 7372 633a 6170 6163 6865 223e - 0x1320: 6b6e 6f77 6e20 6275 6773 3c2f 413e 206f - 0x1330: 6620 7468 6973 0a70 6163 6b61 6765 2c20 - 0x1340: 6361 6e20 6265 2066 6f75 6e64 2069 6e20 - 0x1350: 7468 6520 0a3c 4120 4852 4546 3d22 6874 - 0x1360: 7470 3a2f 2f77 7777 2e64 6562 6961 6e2e - 0x1370: 6f72 672f 4275 6773 2f52 6570 6f72 7469 - 0x1380: 6e67 223e 4465 6269 616e 2042 7567 2054 - 0x1390: 7261 636b 696e 6720 5379 7374 656d 3c2f - 0x13a0: 413e 2e0a 0a3c 503e 5468 616e 6b73 2066 - 0x13b0: 6f72 2075 7369 6e67 2074 6869 7320 7061 - 0x13c0: 636b 6167 652c 2061 6e64 2063 6f6e 6772 - 0x13d0: 6174 756c 6174 696f 6e73 2066 6f72 2079 - 0x13e0: 6f75 7220 6368 6f69 6365 206f 660a 6120 - 0x13f0: 4465 6269 616e 2073 7973 7465 6d21 3c2f - 0x1400: 503e 0a0a 3c44 4956 2061 6c69 676e 3d22 - 0x1410: 6365 6e74 6572 223e 0a3c 6120 6872 6566 - 0x1420: 3d22 6874 7470 3a2f 2f77 7777 2e64 6562 - 0x1430: 6961 6e2e 6f72 672f 223e 0a3c 494d 4720 - 0x1440: 616c 6967 6e3d 226d 6964 646c 6522 2068 - 0x1450: 6569 6768 743d 2233 3022 2077 6964 7468 - 0x1460: 3d22 3235 2220 7372 633d 2269 636f 6e73 - 0x1470: 2f64 6562 6961 6e2f 6f70 656e 6c6f 676f - 0x1480: 2d32 352e 6a70 6722 2061 6c74 3d22 4465 - 0x1490: 6269 616e 223e 0a3c 2f61 3e0a 3c61 2068 - 0x14a0: 7265 663d 2268 7474 703a 2f2f 7777 772e - 0x14b0: 6170 6163 6865 2e6f 7267 2f22 3e0a 3c49 - 0x14c0: 4d47 2061 6c69 676e 3d22 6d69 6464 6c65 - 0x14d0: 2220 6865 6967 6874 3d22 3332 2220 7769 - 0x14e0: 6474 683d 2232 3539 2220 7372 633d 2269 - 0x14f0: 636f 6e73 2f61 7061 6368 655f 7062 2e70 - 0x1500: 6e67 2220 616c 743d 2241 7061 6368 6522 - 0x1510: 3e0a 3c2f 613e 0a3c 2f44 4956 3e0a 0a3c - 0x1520: 212d 2d0a 2020 5468 6973 2070 6167 6520 - 0x1530: 7761 7320 696e 6974 6961 6c6c 7920 6372 - 0x1540: 6561 7465 6420 6279 204a 6f68 6e69 6520 - 0x1550: 496e 6772 616d 2028 6874 7470 3a2f 2f6e - 0x1560: 6574 676f 642e 6e65 742f 290a 2020 4974 - 0x1570: 2077 6173 206c 6174 6572 2065 6469 7465 - 0x1580: 6420 6279 204d 6174 7468 6577 2057 696c - 0x1590: 636f 7820 616e 6420 4a6f 7369 7020 526f - 0x15a0: 6469 6e2e 0a20 204c 6173 7420 6d6f 6469 - 0x15b0: 6669 6564 3a20 2444 6174 653a 2032 3030 - 0x15c0: 342f 3036 2f32 3020 3135 3a33 333a 3537 - 0x15d0: 2024 2e0a 2020 2d2d 3e0a 0a3c 2f42 4f44 - 0x15e0: 593e 0a3c 2f48 544d 4c3e 0a -IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [.], ack 5560, win 12383, options [nop,nop,TS val 1306300953 ecr 1306300953], length 0 - 0x0000: 4500 0034 1b6e 4000 4006 2154 7f00 0001 - 0x0010: 7f00 0001 da70 0050 3758 8a49 377a a3a9 - 0x0020: 8010 305f 10ea 0000 0101 080a 4ddc 9219 - 0x0030: 4ddc 9219 -IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [F.], seq 203, ack 5560, win 12383, options [nop,nop,TS val 1306302241 ecr 1306300953], length 0 - 0x0000: 4500 0034 1b70 4000 4006 2152 7f00 0001 - 0x0010: 7f00 0001 da70 0050 3758 8a49 377a a3a9 - 0x0020: 8011 305f 0be1 0000 0101 080a 4ddc 9721 - 0x0030: 4ddc 9219 -IP 127.0.0.1.80 > 127.0.0.1.55920: Flags [F.], seq 5560, ack 204, win 8192, options [nop,nop,TS val 1306302243 ecr 1306302241], length 0 - 0x0000: 4500 0034 1fe8 4000 4006 1cda 7f00 0001 - 0x0010: 7f00 0001 0050 da70 377a a3a9 3758 8a4a - 0x0020: 8011 2000 1735 0000 0101 080a 4ddc 9723 - 0x0030: 4ddc 9721 -IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [.], ack 5561, win 12383, options [nop,nop,TS val 1306302243 ecr 1306302243], length 0 - 0x0000: 4500 0034 1b72 4000 4006 2150 7f00 0001 - 0x0010: 7f00 0001 da70 0050 3758 8a4a 377a a3aa - 0x0020: 8010 305f 06d4 0000 0101 080a 4ddc 9723 - 0x0030: 4ddc 9723 diff --git a/tests/print-xx.out b/tests/print-xx.out deleted file mode 100644 index 542fdc3..0000000 --- a/tests/print-xx.out +++ /dev/null @@ -1,419 +0,0 @@ -IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [S], seq 928549246, win 32767, options [mss 16396,sackOK,TS val 1306300950 ecr 0,nop,wscale 2], length 0 - 0x0000: 0000 0000 0000 0000 0000 0000 0800 4500 - 0x0010: 003c 1b68 4000 4006 2152 7f00 0001 7f00 - 0x0020: 0001 da70 0050 3758 897e 0000 0000 a002 - 0x0030: 7fff 1421 0000 0204 400c 0402 080a 4ddc - 0x0040: 9216 0000 0000 0103 0302 -IP 127.0.0.1.80 > 127.0.0.1.55920: Flags [S.], seq 930778609, ack 928549247, win 32767, options [mss 16396,sackOK,TS val 1306300950 ecr 1306300950,nop,wscale 2], length 0 - 0x0000: 0000 0000 0000 0000 0000 0000 0800 4500 - 0x0010: 003c 0000 4000 4006 3cba 7f00 0001 7f00 - 0x0020: 0001 0050 da70 377a 8df1 3758 897f a012 - 0x0030: 7fff 6eb1 0000 0204 400c 0402 080a 4ddc - 0x0040: 9216 4ddc 9216 0103 0302 -IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [.], ack 1, win 8192, options [nop,nop,TS val 1306300950 ecr 1306300950], length 0 - 0x0000: 0000 0000 0000 0000 0000 0000 0800 4500 - 0x0010: 0034 1b6a 4000 4006 2158 7f00 0001 7f00 - 0x0020: 0001 da70 0050 3758 897f 377a 8df2 8010 - 0x0030: 2000 37d0 0000 0101 080a 4ddc 9216 4ddc - 0x0040: 9216 -IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [P.], seq 1:203, ack 1, win 8192, options [nop,nop,TS val 1306300951 ecr 1306300950], length 202: HTTP: GET / HTTP/1.1 - 0x0000: 0000 0000 0000 0000 0000 0000 0800 4500 - 0x0010: 00fe 1b6c 4000 4006 208c 7f00 0001 7f00 - 0x0020: 0001 da70 0050 3758 897f 377a 8df2 8018 - 0x0030: 2000 fef2 0000 0101 080a 4ddc 9217 4ddc - 0x0040: 9216 4745 5420 2f20 4854 5450 2f31 2e31 - 0x0050: 0d0a 486f 7374 3a20 6c6f 6361 6c68 6f73 - 0x0060: 740d 0a55 7365 722d 4167 656e 743a 2045 - 0x0070: 4c69 6e6b 732f 302e 3130 2e34 2d37 2d64 - 0x0080: 6562 6961 6e20 2874 6578 746d 6f64 653b - 0x0090: 204c 696e 7578 2032 2e36 2e31 312d 312d - 0x00a0: 3638 362d 736d 7020 6936 3836 3b20 3133 - 0x00b0: 3278 3536 2d32 290d 0a41 6363 6570 743a - 0x00c0: 202a 2f2a 0d0a 4163 6365 7074 2d45 6e63 - 0x00d0: 6f64 696e 673a 2067 7a69 700d 0a41 6363 - 0x00e0: 6570 742d 4c61 6e67 7561 6765 3a20 656e - 0x00f0: 0d0a 436f 6e6e 6563 7469 6f6e 3a20 4b65 - 0x0100: 6570 2d41 6c69 7665 0d0a 0d0a -IP 127.0.0.1.80 > 127.0.0.1.55920: Flags [.], ack 203, win 8192, options [nop,nop,TS val 1306300952 ecr 1306300951], length 0 - 0x0000: 0000 0000 0000 0000 0000 0000 0800 4500 - 0x0010: 0034 1fe4 4000 4006 1cde 7f00 0001 7f00 - 0x0020: 0001 0050 da70 377a 8df2 3758 8a49 8010 - 0x0030: 2000 3703 0000 0101 080a 4ddc 9218 4ddc - 0x0040: 9217 -IP 127.0.0.1.80 > 127.0.0.1.55920: Flags [P.], seq 1:5560, ack 203, win 8192, options [nop,nop,TS val 1306300953 ecr 1306300951], length 5559: HTTP: HTTP/1.1 200 OK - 0x0000: 0000 0000 0000 0000 0000 0000 0800 4500 - 0x0010: 15eb 1fe6 4000 4006 0725 7f00 0001 7f00 - 0x0020: 0001 0050 da70 377a 8df2 3758 8a49 8018 - 0x0030: 2000 13e0 0000 0101 080a 4ddc 9219 4ddc - 0x0040: 9217 4854 5450 2f31 2e31 2032 3030 204f - 0x0050: 4b0d 0a44 6174 653a 2057 6564 2c20 3036 - 0x0060: 204a 756c 2032 3030 3520 3033 3a35 373a - 0x0070: 3335 2047 4d54 0d0a 5365 7276 6572 3a20 - 0x0080: 4170 6163 6865 2f31 2e33 2e33 330d 0a4c - 0x0090: 6173 742d 4d6f 6469 6669 6564 3a20 5375 - 0x00a0: 6e2c 2031 3520 4175 6720 3230 3034 2030 - 0x00b0: 303a 3433 3a34 3120 474d 540d 0a45 5461 - 0x00c0: 673a 2022 3665 3830 6630 2d31 3438 612d - 0x00d0: 3431 3165 6231 6264 220d 0a41 6363 6570 - 0x00e0: 742d 5261 6e67 6573 3a20 6279 7465 730d - 0x00f0: 0a43 6f6e 7465 6e74 2d4c 656e 6774 683a - 0x0100: 2035 3235 380d 0a4b 6565 702d 416c 6976 - 0x0110: 653a 2074 696d 656f 7574 3d31 352c 206d - 0x0120: 6178 3d31 3030 0d0a 436f 6e6e 6563 7469 - 0x0130: 6f6e 3a20 4b65 6570 2d41 6c69 7665 0d0a - 0x0140: 436f 6e74 656e 742d 5479 7065 3a20 7465 - 0x0150: 7874 2f68 746d 6c3b 2063 6861 7273 6574 - 0x0160: 3d69 736f 2d38 3835 392d 310d 0a0d 0a3c - 0x0170: 2144 4f43 5459 5045 2048 544d 4c20 5055 - 0x0180: 424c 4943 2022 2d2f 2f57 3343 2f2f 4454 - 0x0190: 4420 4854 4d4c 2034 2e30 3120 5472 616e - 0x01a0: 7369 7469 6f6e 616c 2f2f 454e 223e 0a3c - 0x01b0: 4854 4d4c 3e0a 3c48 4541 443e 0a20 2020 - 0x01c0: 3c4d 4554 4120 4854 5450 2d45 5155 4956 - 0x01d0: 3d22 436f 6e74 656e 742d 5479 7065 2220 - 0x01e0: 434f 4e54 454e 543d 2274 6578 742f 6874 - 0x01f0: 6d6c 3b20 6368 6172 7365 743d 6973 6f2d - 0x0200: 3838 3539 2d31 223e 0a20 2020 3c4d 4554 - 0x0210: 4120 4e41 4d45 3d22 4465 7363 7269 7074 - 0x0220: 696f 6e22 2043 4f4e 5445 4e54 3d22 5468 - 0x0230: 6520 696e 6974 6961 6c20 696e 7374 616c - 0x0240: 6c61 7469 6f6e 206f 6620 4465 6269 616e - 0x0250: 2061 7061 6368 652e 223e 0a20 2020 3c54 - 0x0260: 4954 4c45 3e50 6c61 6365 686f 6c64 6572 - 0x0270: 2070 6167 653c 2f54 4954 4c45 3e0a 3c2f - 0x0280: 4845 4144 3e0a 3c42 4f44 5920 5445 5854 - 0x0290: 3d22 2330 3030 3030 3022 2042 4743 4f4c - 0x02a0: 4f52 3d22 2346 4646 4646 4622 204c 494e - 0x02b0: 4b3d 2223 3030 3030 4546 2220 564c 494e - 0x02c0: 4b3d 2223 3535 3138 3841 2220 414c 494e - 0x02d0: 4b3d 2223 4646 3030 3030 223e 0a0a 3c48 - 0x02e0: 313e 506c 6163 6568 6f6c 6465 7220 7061 - 0x02f0: 6765 3c2f 4831 3e0a 3c48 323e 4966 2079 - 0x0300: 6f75 2061 7265 206a 7573 7420 6272 6f77 - 0x0310: 7369 6e67 2074 6865 2077 6562 3c2f 6832 - 0x0320: 3e0a 0a3c 503e 5468 6520 6f77 6e65 7220 - 0x0330: 6f66 2074 6869 7320 7765 6220 7369 7465 - 0x0340: 2068 6173 206e 6f74 2070 7574 2075 7020 - 0x0350: 616e 7920 7765 6220 7061 6765 7320 7965 - 0x0360: 742e 0a50 6c65 6173 6520 636f 6d65 2062 - 0x0370: 6163 6b20 6c61 7465 722e 3c2f 503e 0a0a - 0x0380: 3c50 3e3c 534d 414c 4c3e 3c43 4954 453e - 0x0390: 4d6f 7665 2061 6c6f 6e67 2c20 6e6f 7468 - 0x03a0: 696e 6720 746f 2073 6565 2068 6572 652e - 0x03b0: 2e2e 3c2f 4349 5445 3e20 3a2d 293c 2f53 - 0x03c0: 4d41 4c4c 3e3c 2f50 3e0a 0a3c 4832 3e49 - 0x03d0: 6620 796f 7520 6172 6520 7472 7969 6e67 - 0x03e0: 2074 6f20 6c6f 6361 7465 2074 6865 2061 - 0x03f0: 646d 696e 6973 7472 6174 6f72 206f 6620 - 0x0400: 7468 6973 206d 6163 6869 6e65 3c2f 4832 - 0x0410: 3e0a 0a3c 503e 4966 2079 6f75 2077 616e - 0x0420: 7420 746f 2072 6570 6f72 7420 736f 6d65 - 0x0430: 7468 696e 6720 6162 6f75 7420 7468 6973 - 0x0440: 2068 6f73 7427 7320 6265 6861 7669 6f72 - 0x0450: 2c20 706c 6561 7365 0a63 6f6e 7461 6374 - 0x0460: 2074 6865 2049 6e74 6572 6e65 7420 5365 - 0x0470: 7276 6963 6520 5072 6f76 6964 6572 2028 - 0x0480: 4953 5029 2069 6e76 6f6c 7665 6420 6469 - 0x0490: 7265 6374 6c79 2e3c 2f50 3e0a 0a3c 503e - 0x04a0: 5365 6520 7468 6520 3c41 2068 7265 663d - 0x04b0: 2268 7474 703a 2f2f 7777 772e 6162 7573 - 0x04c0: 652e 6e65 742f 223e 4e65 7477 6f72 6b20 - 0x04d0: 4162 7573 650a 436c 6561 7269 6e67 686f - 0x04e0: 7573 653c 2f41 3e20 666f 7220 686f 7720 - 0x04f0: 746f 2064 6f20 7468 6973 2e3c 2f50 3e0a - 0x0500: 0a3c 4832 3e49 6620 796f 7520 6172 6520 - 0x0510: 7468 6520 6164 6d69 6e69 7374 7261 746f - 0x0520: 7220 6f66 2074 6869 7320 6d61 6368 696e - 0x0530: 653c 2f48 323e 0a0a 3c50 3e54 6865 2069 - 0x0540: 6e69 7469 616c 2069 6e73 7461 6c6c 6174 - 0x0550: 696f 6e20 6f66 203c 4120 6872 6566 3d22 - 0x0560: 6874 7470 3a2f 2f77 7777 2e64 6562 6961 - 0x0570: 6e2e 6f72 672f 223e 4465 6269 616e 2773 - 0x0580: 0a61 7061 6368 653c 2f41 3e20 7765 6220 - 0x0590: 7365 7276 6572 2070 6163 6b61 6765 2077 - 0x05a0: 6173 2073 7563 6365 7373 6675 6c2e 3c2f - 0x05b0: 503e 0a0a 3c50 3e3c 5354 524f 4e47 3e59 - 0x05c0: 6f75 2073 686f 756c 6420 7265 706c 6163 - 0x05d0: 6520 7468 6973 2070 6167 6520 7769 7468 - 0x05e0: 2079 6f75 7220 6f77 6e20 7765 6220 7061 - 0x05f0: 6765 7320 6173 0a73 6f6f 6e20 6173 2070 - 0x0600: 6f73 7369 626c 652e 3c2f 5354 524f 4e47 - 0x0610: 3e3c 2f50 3e0a 0a3c 503e 556e 6c65 7373 - 0x0620: 2079 6f75 2063 6861 6e67 6564 2069 7473 - 0x0630: 2063 6f6e 6669 6775 7261 7469 6f6e 2c20 - 0x0640: 796f 7572 206e 6577 2073 6572 7665 7220 - 0x0650: 6973 2063 6f6e 6669 6775 7265 6420 6173 - 0x0660: 2066 6f6c 6c6f 7773 3a0a 3c55 4c3e 0a3c - 0x0670: 4c49 3e0a 436f 6e66 6967 7572 6174 696f - 0x0680: 6e20 6669 6c65 7320 6361 6e20 6265 2066 - 0x0690: 6f75 6e64 2069 6e20 3c54 543e 2f65 7463 - 0x06a0: 2f61 7061 6368 653c 2f54 543e 2e3c 2f4c - 0x06b0: 493e 0a0a 3c4c 493e 0a54 6865 203c 5454 - 0x06c0: 3e44 6f63 756d 656e 7452 6f6f 743c 2f54 - 0x06d0: 543e 2c20 7768 6963 6820 6973 2074 6865 - 0x06e0: 2064 6972 6563 746f 7279 2075 6e64 6572 - 0x06f0: 2077 6869 6368 2061 6c6c 2079 6f75 720a - 0x0700: 4854 4d4c 2066 696c 6573 2073 686f 756c - 0x0710: 6420 6578 6973 742c 2069 7320 7365 7420 - 0x0720: 746f 203c 5454 3e2f 7661 722f 7777 773c - 0x0730: 2f54 543e 2e3c 2f4c 493e 0a0a 3c4c 493e - 0x0740: 0a43 4749 2073 6372 6970 7473 2061 7265 - 0x0750: 206c 6f6f 6b65 6420 666f 7220 696e 203c - 0x0760: 5454 3e2f 7573 722f 6c69 622f 6367 692d - 0x0770: 6269 6e3c 2f54 543e 2c20 7768 6963 6820 - 0x0780: 6973 2077 6865 7265 0a44 6562 6961 6e20 - 0x0790: 7061 636b 6167 6573 2077 696c 6c20 706c - 0x07a0: 6163 6520 7468 6569 7220 7363 7269 7074 - 0x07b0: 732e 3c2f 4c49 3e0a 0a3c 4c49 3e0a 4c6f - 0x07c0: 6720 6669 6c65 7320 6172 6520 706c 6163 - 0x07d0: 6564 2069 6e20 3c54 543e 2f76 6172 2f6c - 0x07e0: 6f67 2f61 7061 6368 653c 2f54 543e 2c20 - 0x07f0: 616e 6420 7769 6c6c 2062 6520 726f 7461 - 0x0800: 7465 640a 7765 656b 6c79 2e20 2054 6865 - 0x0810: 2066 7265 7175 656e 6379 206f 6620 726f - 0x0820: 7461 7469 6f6e 2063 616e 2062 6520 6561 - 0x0830: 7369 6c79 2063 6861 6e67 6564 2062 7920 - 0x0840: 6564 6974 696e 670a 3c54 543e 2f65 7463 - 0x0850: 2f6c 6f67 726f 7461 7465 2e64 2f61 7061 - 0x0860: 6368 653c 2f54 543e 2e3c 2f4c 493e 0a0a - 0x0870: 3c4c 493e 0a54 6865 2064 6566 6175 6c74 - 0x0880: 2064 6972 6563 746f 7279 2069 6e64 6578 - 0x0890: 2069 7320 3c54 543e 696e 6465 782e 6874 - 0x08a0: 6d6c 3c2f 5454 3e2c 206d 6561 6e69 6e67 - 0x08b0: 2074 6861 7420 7265 7175 6573 7473 0a66 - 0x08c0: 6f72 2061 2064 6972 6563 746f 7279 203c - 0x08d0: 5454 3e2f 666f 6f2f 6261 722f 3c2f 5454 - 0x08e0: 3e20 7769 6c6c 2067 6976 6520 7468 6520 - 0x08f0: 636f 6e74 656e 7473 206f 6620 7468 6520 - 0x0900: 6669 6c65 203c 5454 3e2f 7661 722f 7777 - 0x0910: 772f 666f 6f2f 6261 722f 696e 6465 782e - 0x0920: 6874 6d6c 3c2f 5454 3e0a 6966 2069 7420 - 0x0930: 6578 6973 7473 2028 6173 7375 6d69 6e67 - 0x0940: 2074 6861 7420 3c54 543e 2f76 6172 2f77 - 0x0950: 7777 3c2f 5454 3e20 6973 2079 6f75 7220 - 0x0960: 3c54 543e 446f 6375 6d65 6e74 526f 6f74 - 0x0970: 3c2f 5454 3e29 2e3c 2f4c 493e 0a0a 3c4c - 0x0980: 493e 0a55 7365 7220 6469 7265 6374 6f72 - 0x0990: 6965 7320 6172 6520 656e 6162 6c65 642c - 0x09a0: 2061 6e64 2075 7365 7220 646f 6375 6d65 - 0x09b0: 6e74 7320 7769 6c6c 2062 6520 6c6f 6f6b - 0x09c0: 6564 2066 6f72 0a69 6e20 7468 6520 3c54 - 0x09d0: 543e 7075 626c 6963 5f68 746d 6c3c 2f54 - 0x09e0: 543e 2064 6972 6563 746f 7279 206f 6620 - 0x09f0: 7468 6520 7573 6572 7327 2068 6f6d 6573 - 0x0a00: 2e20 2054 6865 7365 2064 6972 730a 7368 - 0x0a10: 6f75 6c64 2062 6520 756e 6465 7220 3c54 - 0x0a20: 543e 2f68 6f6d 653c 2f54 543e 2c20 616e - 0x0a30: 6420 7573 6572 7320 7769 6c6c 206e 6f74 - 0x0a40: 2062 6520 6162 6c65 2074 6f20 7379 6d6c - 0x0a50: 696e 6b0a 746f 2066 696c 6573 2074 6865 - 0x0a60: 7920 646f 6e27 7420 6f77 6e2e 3c2f 4c49 - 0x0a70: 3e0a 0a3c 2f55 4c3e 0a41 6c6c 2074 6865 - 0x0a80: 2073 7461 6e64 6172 6420 6170 6163 6865 - 0x0a90: 206d 6f64 756c 6573 2061 7265 2061 7661 - 0x0aa0: 696c 6162 6c65 2077 6974 6820 7468 6973 - 0x0ab0: 2072 656c 6561 7365 2061 6e64 2061 7265 - 0x0ac0: 0a6e 6f77 206d 616e 6167 6564 2077 6974 - 0x0ad0: 6820 6465 6263 6f6e 662e 2020 5479 7065 - 0x0ae0: 203c 5454 3e64 706b 672d 7265 636f 6e66 - 0x0af0: 6967 7572 6520 6170 6163 6865 3c2f 5454 - 0x0b00: 3e20 746f 0a73 656c 6563 7420 7768 6963 - 0x0b10: 6820 6d6f 6475 6c65 7320 796f 7520 7761 - 0x0b20: 6e74 2065 6e61 626c 6564 2e20 204d 616e - 0x0b30: 7920 6f74 6865 7220 6d6f 6475 6c65 7320 - 0x0b40: 6172 6520 6176 6169 6c61 626c 650a 7468 - 0x0b50: 726f 7567 6820 7468 6520 4465 6269 616e - 0x0b60: 2070 6163 6b61 6765 2073 7973 7465 6d20 - 0x0b70: 7769 7468 2074 6865 206e 616d 6573 203c - 0x0b80: 5454 3e6c 6962 6170 6163 6865 2d6d 6f64 - 0x0b90: 2d2a 3c2f 5454 3e2e 0a49 6620 796f 7520 - 0x0ba0: 6e65 6564 2074 6f20 636f 6d70 696c 6520 - 0x0bb0: 6120 6d6f 6475 6c65 2079 6f75 7273 656c - 0x0bc0: 662c 2079 6f75 2077 696c 6c20 6e65 6564 - 0x0bd0: 2074 6f20 696e 7374 616c 6c20 7468 650a - 0x0be0: 3c54 543e 6170 6163 6865 2d64 6576 3c2f - 0x0bf0: 5454 3e20 7061 636b 6167 652e 0a0a 3c50 - 0x0c00: 3e4d 6f72 6520 646f 6375 6d65 6e74 6174 - 0x0c10: 696f 6e20 6f6e 2041 7061 6368 6520 6361 - 0x0c20: 6e20 6265 2066 6f75 6e64 206f 6e3a 0a3c - 0x0c30: 554c 3e0a 3c4c 493e 0a54 6865 203c 4120 - 0x0c40: 4852 4546 3d22 2f64 6f63 2f61 7061 6368 - 0x0c50: 652d 646f 632f 6d61 6e75 616c 2f22 3e41 - 0x0c60: 7061 6368 6520 646f 6375 6d65 6e74 6174 - 0x0c70: 696f 6e3c 2f41 3e20 7374 6f72 6564 206f - 0x0c80: 6e20 796f 7572 2073 6572 7665 722e 3c2f - 0x0c90: 4c49 3e0a 0a3c 4c49 3e0a 5468 6520 3c41 - 0x0ca0: 2048 5245 463d 2268 7474 703a 2f2f 7777 - 0x0cb0: 772e 6170 6163 6865 2e6f 7267 2f22 3e41 - 0x0cc0: 7061 6368 6520 5072 6f6a 6563 743c 2f41 - 0x0cd0: 3e20 686f 6d65 2073 6974 652e 3c2f 4c49 - 0x0ce0: 3e0a 0a3c 4c49 3e0a 5468 6520 3c41 2048 - 0x0cf0: 5245 463d 2268 7474 703a 2f2f 7777 772e - 0x0d00: 6170 6163 6865 2d73 736c 2e6f 7267 2f22 - 0x0d10: 3e41 7061 6368 652d 5353 4c3c 2f41 3e20 - 0x0d20: 686f 6d65 2073 6974 652e 3c2f 4c49 3e0a - 0x0d30: 0a3c 4c49 3e0a 5468 6520 3c41 2048 5245 - 0x0d40: 463d 2268 7474 703a 2f2f 7065 726c 2e61 - 0x0d50: 7061 6368 652e 6f72 672f 223e 6d6f 6420 - 0x0d60: 7065 726c 3c2f 413e 2068 6f6d 6520 7369 - 0x0d70: 7465 2e3c 2f4c 493e 0a0a 3c4c 493e 0a54 - 0x0d80: 6865 203c 4120 4852 4546 3d22 6874 7470 - 0x0d90: 3a2f 2f77 7777 2e61 7061 6368 6577 6565 - 0x0da0: 6b2e 636f 6d2f 223e 4170 6163 6865 5765 - 0x0db0: 656b 3c2f 413e 206e 6577 736c 6574 7465 - 0x0dc0: 722e 3c2f 4c49 3e0a 0a3c 4c49 3e0a 5468 - 0x0dd0: 6520 3c41 2048 5245 463d 2268 7474 703a - 0x0de0: 2f2f 7777 772e 6465 6269 616e 2e6f 7267 - 0x0df0: 2f64 6f63 2f22 3e44 6562 6961 6e20 5072 - 0x0e00: 6f6a 6563 740a 446f 6375 6d65 6e74 6174 - 0x0e10: 696f 6e3c 2f41 3e20 7768 6963 6820 636f - 0x0e20: 6e74 6169 6e73 2048 4f57 544f 732c 2046 - 0x0e30: 4151 732c 2061 6e64 2073 6f66 7477 6172 - 0x0e40: 6520 7570 6461 7465 732e 3c2f 4c49 3e0a - 0x0e50: 3c2f 554c 3e0a 0a3c 503e 596f 7520 6361 - 0x0e60: 6e20 616c 736f 2063 6f6e 7375 6c74 2074 - 0x0e70: 6865 206c 6973 7420 6f66 203c 4120 4852 - 0x0e80: 4546 3d22 6874 7470 3a2f 2f77 7777 2e62 - 0x0e90: 6f75 7465 6c6c 2e63 6f6d 2f66 6171 2f22 - 0x0ea0: 3e57 6f72 6c64 0a57 6964 6520 5765 6220 - 0x0eb0: 4672 6571 7565 6e74 6c79 2041 736b 6564 - 0x0ec0: 2051 7565 7374 696f 6e73 3c2f 413e 2066 - 0x0ed0: 6f72 2069 6e66 6f72 6d61 7469 6f6e 2e0a - 0x0ee0: 0a3c 4832 3e4c 6574 206f 7468 6572 2070 - 0x0ef0: 656f 706c 6520 6b6e 6f77 2061 626f 7574 - 0x0f00: 2074 6869 7320 7365 7276 6572 3c2f 4832 - 0x0f10: 3e0a 0a3c 4120 4852 4546 3d22 6874 7470 - 0x0f20: 3a2f 2f6e 6574 6372 6166 742e 636f 6d2f - 0x0f30: 223e 4e65 7463 7261 6674 3c2f 413e 2070 - 0x0f40: 726f 7669 6465 7320 616e 2069 6e74 6572 - 0x0f50: 6573 7469 6e67 2066 7265 650a 7365 7276 - 0x0f60: 6963 6520 666f 7220 7765 6220 7369 7465 - 0x0f70: 206d 6f6e 6974 6f72 696e 6720 616e 6420 - 0x0f80: 7374 6174 6973 7469 6320 636f 6c6c 6563 - 0x0f90: 7469 6f6e 2e0a 596f 7520 6361 6e20 6c65 - 0x0fa0: 7420 7468 656d 206b 6e6f 7720 6162 6f75 - 0x0fb0: 7420 796f 7572 2073 6572 7665 7220 7573 - 0x0fc0: 696e 6720 7468 6569 720a 3c41 2048 5245 - 0x0fd0: 463d 2268 7474 703a 2f2f 7570 7469 6d65 - 0x0fe0: 2e6e 6574 6372 6166 742e 636f 6d2f 223e - 0x0ff0: 696e 7465 7266 6163 653c 2f41 3e2e 0a45 - 0x1000: 6e61 626c 696e 6720 7468 6520 6d6f 6e69 - 0x1010: 746f 7269 6e67 206f 6620 796f 7572 2073 - 0x1020: 6572 7665 7220 7769 6c6c 2070 726f 7669 - 0x1030: 6465 2061 2062 6574 7465 7220 676c 6f62 - 0x1040: 616c 206f 7665 7276 6965 770a 6f66 2077 - 0x1050: 686f 2069 7320 7573 696e 6720 7768 6174 - 0x1060: 2061 6e64 2077 6865 7265 2c20 616e 6420 - 0x1070: 6974 2077 6f75 6c64 2067 6976 6520 4465 - 0x1080: 6269 616e 2061 2062 6574 7465 720a 6f76 - 0x1090: 6572 7669 6577 206f 6620 7468 6520 6170 - 0x10a0: 6163 6865 2070 6163 6b61 6765 2075 7361 - 0x10b0: 6765 2e0a 0a3c 4832 3e41 626f 7574 2074 - 0x10c0: 6869 7320 7061 6765 3c2f 4832 3e0a 0a3c - 0x10d0: 494d 4720 414c 4947 4e3d 2272 6967 6874 - 0x10e0: 2220 414c 543d 2222 2048 4549 4748 543d - 0x10f0: 2232 3437 2220 5749 4454 483d 2232 3738 - 0x1100: 2220 5352 433d 2269 636f 6e73 2f6a 6865 - 0x1110: 3036 312e 706e 6722 3e0a 0a3c 503e 5468 - 0x1120: 6973 2069 7320 6120 706c 6163 6568 6f6c - 0x1130: 6465 7220 7061 6765 2069 6e73 7461 6c6c - 0x1140: 6564 2062 7920 7468 6520 3c41 0a48 5245 - 0x1150: 463d 2268 7474 703a 2f2f 7777 772e 6465 - 0x1160: 6269 616e 2e6f 7267 2f22 3e44 6562 6961 - 0x1170: 6e3c 2f41 3e0a 7265 6c65 6173 6520 6f66 - 0x1180: 2074 6865 2061 7061 6368 6520 5765 6220 - 0x1190: 7365 7276 6572 2070 6163 6b61 6765 2e0a - 0x11a0: 0a3c 503e 5468 6973 2063 6f6d 7075 7465 - 0x11b0: 7220 6861 7320 696e 7374 616c 6c65 6420 - 0x11c0: 7468 6520 4465 6269 616e 2047 4e55 2f4c - 0x11d0: 696e 7578 206f 7065 7261 7469 6e67 2073 - 0x11e0: 7973 7465 6d2c 0a62 7574 2069 7420 6861 - 0x11f0: 7320 3c73 7472 6f6e 673e 6e6f 7468 696e - 0x1200: 6720 746f 2064 6f20 7769 7468 2074 6865 - 0x1210: 2044 6562 6961 6e0a 5072 6f6a 6563 743c - 0x1220: 2f73 7472 6f6e 673e 2e20 506c 6561 7365 - 0x1230: 2064 6f20 3c73 7472 6f6e 673e 6e6f 743c - 0x1240: 2f73 7472 6f6e 673e 2063 6f6e 7461 6374 - 0x1250: 2074 6865 2044 6562 6961 6e0a 5072 6f6a - 0x1260: 6563 7420 6162 6f75 7420 6974 2e3c 2f50 - 0x1270: 3e0a 0a3c 503e 4966 2079 6f75 2066 696e - 0x1280: 6420 6120 6275 6720 696e 2074 6869 7320 - 0x1290: 6170 6163 6865 2070 6163 6b61 6765 2c20 - 0x12a0: 6f72 2069 6e20 4170 6163 6865 2069 7473 - 0x12b0: 656c 662c 0a70 6c65 6173 6520 6669 6c65 - 0x12c0: 2061 2062 7567 2072 6570 6f72 7420 6f6e - 0x12d0: 2069 742e 2020 496e 7374 7275 6374 696f - 0x12e0: 6e73 206f 6e20 646f 696e 6720 7468 6973 - 0x12f0: 2c20 616e 6420 7468 650a 6c69 7374 206f - 0x1300: 6620 3c41 2048 5245 463d 2268 7474 703a - 0x1310: 2f2f 6275 6773 2e64 6562 6961 6e2e 6f72 - 0x1320: 672f 7372 633a 6170 6163 6865 223e 6b6e - 0x1330: 6f77 6e20 6275 6773 3c2f 413e 206f 6620 - 0x1340: 7468 6973 0a70 6163 6b61 6765 2c20 6361 - 0x1350: 6e20 6265 2066 6f75 6e64 2069 6e20 7468 - 0x1360: 6520 0a3c 4120 4852 4546 3d22 6874 7470 - 0x1370: 3a2f 2f77 7777 2e64 6562 6961 6e2e 6f72 - 0x1380: 672f 4275 6773 2f52 6570 6f72 7469 6e67 - 0x1390: 223e 4465 6269 616e 2042 7567 2054 7261 - 0x13a0: 636b 696e 6720 5379 7374 656d 3c2f 413e - 0x13b0: 2e0a 0a3c 503e 5468 616e 6b73 2066 6f72 - 0x13c0: 2075 7369 6e67 2074 6869 7320 7061 636b - 0x13d0: 6167 652c 2061 6e64 2063 6f6e 6772 6174 - 0x13e0: 756c 6174 696f 6e73 2066 6f72 2079 6f75 - 0x13f0: 7220 6368 6f69 6365 206f 660a 6120 4465 - 0x1400: 6269 616e 2073 7973 7465 6d21 3c2f 503e - 0x1410: 0a0a 3c44 4956 2061 6c69 676e 3d22 6365 - 0x1420: 6e74 6572 223e 0a3c 6120 6872 6566 3d22 - 0x1430: 6874 7470 3a2f 2f77 7777 2e64 6562 6961 - 0x1440: 6e2e 6f72 672f 223e 0a3c 494d 4720 616c - 0x1450: 6967 6e3d 226d 6964 646c 6522 2068 6569 - 0x1460: 6768 743d 2233 3022 2077 6964 7468 3d22 - 0x1470: 3235 2220 7372 633d 2269 636f 6e73 2f64 - 0x1480: 6562 6961 6e2f 6f70 656e 6c6f 676f 2d32 - 0x1490: 352e 6a70 6722 2061 6c74 3d22 4465 6269 - 0x14a0: 616e 223e 0a3c 2f61 3e0a 3c61 2068 7265 - 0x14b0: 663d 2268 7474 703a 2f2f 7777 772e 6170 - 0x14c0: 6163 6865 2e6f 7267 2f22 3e0a 3c49 4d47 - 0x14d0: 2061 6c69 676e 3d22 6d69 6464 6c65 2220 - 0x14e0: 6865 6967 6874 3d22 3332 2220 7769 6474 - 0x14f0: 683d 2232 3539 2220 7372 633d 2269 636f - 0x1500: 6e73 2f61 7061 6368 655f 7062 2e70 6e67 - 0x1510: 2220 616c 743d 2241 7061 6368 6522 3e0a - 0x1520: 3c2f 613e 0a3c 2f44 4956 3e0a 0a3c 212d - 0x1530: 2d0a 2020 5468 6973 2070 6167 6520 7761 - 0x1540: 7320 696e 6974 6961 6c6c 7920 6372 6561 - 0x1550: 7465 6420 6279 204a 6f68 6e69 6520 496e - 0x1560: 6772 616d 2028 6874 7470 3a2f 2f6e 6574 - 0x1570: 676f 642e 6e65 742f 290a 2020 4974 2077 - 0x1580: 6173 206c 6174 6572 2065 6469 7465 6420 - 0x1590: 6279 204d 6174 7468 6577 2057 696c 636f - 0x15a0: 7820 616e 6420 4a6f 7369 7020 526f 6469 - 0x15b0: 6e2e 0a20 204c 6173 7420 6d6f 6469 6669 - 0x15c0: 6564 3a20 2444 6174 653a 2032 3030 342f - 0x15d0: 3036 2f32 3020 3135 3a33 333a 3537 2024 - 0x15e0: 2e0a 2020 2d2d 3e0a 0a3c 2f42 4f44 593e - 0x15f0: 0a3c 2f48 544d 4c3e 0a -IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [.], ack 5560, win 12383, options [nop,nop,TS val 1306300953 ecr 1306300953], length 0 - 0x0000: 0000 0000 0000 0000 0000 0000 0800 4500 - 0x0010: 0034 1b6e 4000 4006 2154 7f00 0001 7f00 - 0x0020: 0001 da70 0050 3758 8a49 377a a3a9 8010 - 0x0030: 305f 10ea 0000 0101 080a 4ddc 9219 4ddc - 0x0040: 9219 -IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [F.], seq 203, ack 5560, win 12383, options [nop,nop,TS val 1306302241 ecr 1306300953], length 0 - 0x0000: 0000 0000 0000 0000 0000 0000 0800 4500 - 0x0010: 0034 1b70 4000 4006 2152 7f00 0001 7f00 - 0x0020: 0001 da70 0050 3758 8a49 377a a3a9 8011 - 0x0030: 305f 0be1 0000 0101 080a 4ddc 9721 4ddc - 0x0040: 9219 -IP 127.0.0.1.80 > 127.0.0.1.55920: Flags [F.], seq 5560, ack 204, win 8192, options [nop,nop,TS val 1306302243 ecr 1306302241], length 0 - 0x0000: 0000 0000 0000 0000 0000 0000 0800 4500 - 0x0010: 0034 1fe8 4000 4006 1cda 7f00 0001 7f00 - 0x0020: 0001 0050 da70 377a a3a9 3758 8a4a 8011 - 0x0030: 2000 1735 0000 0101 080a 4ddc 9723 4ddc - 0x0040: 9721 -IP 127.0.0.1.55920 > 127.0.0.1.80: Flags [.], ack 5561, win 12383, options [nop,nop,TS val 1306302243 ecr 1306302243], length 0 - 0x0000: 0000 0000 0000 0000 0000 0000 0800 4500 - 0x0010: 0034 1b72 4000 4006 2150 7f00 0001 7f00 - 0x0020: 0001 da70 0050 3758 8a4a 377a a3aa 8010 - 0x0030: 305f 06d4 0000 0101 080a 4ddc 9723 4ddc - 0x0040: 9723 diff --git a/tests/radius-port1700-v.out b/tests/radius-port1700-v.out deleted file mode 100644 index 389c763..0000000 --- a/tests/radius-port1700-v.out +++ /dev/null @@ -1,4 +0,0 @@ -IP (tos 0x0, ttl 64, id 44978, offset 0, flags [none], proto UDP (17), length 53) - 127.0.0.1.42172 > 127.0.0.1.1700: RADIUS, length: 25 - CoA-Request (43), id: 0xa6, Authenticator: 7fbf02c6662b5990838a5e6e331b3ff0 - User-Name Attribute (1), length: 5, Value: bob diff --git a/tests/radius-rfc4675-v.out b/tests/radius-rfc4675-v.out deleted file mode 100644 index c1cea56..0000000 --- a/tests/radius-rfc4675-v.out +++ /dev/null @@ -1,43 +0,0 @@ -IP (tos 0x0, ttl 64, id 20820, offset 0, flags [none], proto UDP (17), length 108) - 127.0.0.1.53334 > 127.0.0.1.1812: RADIUS, length: 80 - Access-Request (1), id: 0x46, Authenticator: f44757bc498c3393763a27d0b2393702 - User-Name Attribute (1), length: 12, Value: bob-tagged - User-Password Attribute (2), length: 18, Value: - NAS-IP-Address Attribute (4), length: 6, Value: 127.0.0.1 - NAS-Port Attribute (5), length: 6, Value: 1 - Message-Authenticator Attribute (80), length: 18, Value: .....b..7-....b. -IP (tos 0x0, ttl 64, id 20821, offset 0, flags [none], proto UDP (17), length 81) - 127.0.0.1.1812 > 127.0.0.1.53334: RADIUS, length: 53 - Access-Accept (2), id: 0x46, Authenticator: 766a0314eaf4b95f1ec271ae19cb3bdc - Egress-VLANID Attribute (56), length: 6, Value: Tagged (0x31) 123 - Ingress-Filters Attribute (57), length: 6, Value: Enabled - Egress-VLAN-Name Attribute (58), length: 11, Value: Tagged (0x31) vlanname - User-Priority-Table Attribute (59), length: 10, Value: -IP (tos 0x0, ttl 64, id 21127, offset 0, flags [none], proto UDP (17), length 110) - 127.0.0.1.46281 > 127.0.0.1.1812: RADIUS, length: 82 - Access-Request (1), id: 0xb5, Authenticator: 11851d8b1b483f54a864b703ea21f4dc - User-Name Attribute (1), length: 14, Value: bob-untagged - User-Password Attribute (2), length: 18, Value: - NAS-IP-Address Attribute (4), length: 6, Value: 127.0.0.1 - NAS-Port Attribute (5), length: 6, Value: 1 - Message-Authenticator Attribute (80), length: 18, Value: ..o..}f..d.;..R[ -IP (tos 0x0, ttl 64, id 21128, offset 0, flags [none], proto UDP (17), length 71) - 127.0.0.1.1812 > 127.0.0.1.46281: RADIUS, length: 43 - Access-Accept (2), id: 0xb5, Authenticator: e223a663823b20ccc18bcf90c3ecbe27 - Egress-VLANID Attribute (56), length: 6, Value: Untagged (0x32) 123 - Ingress-Filters Attribute (57), length: 6, Value: Disabled - Egress-VLAN-Name Attribute (58), length: 11, Value: Untagged (0x32) vlanname -IP (tos 0x0, ttl 64, id 21190, offset 0, flags [none], proto UDP (17), length 109) - 127.0.0.1.39300 > 127.0.0.1.1812: RADIUS, length: 81 - Access-Request (1), id: 0x5a, Authenticator: 8dd685f50f837e8ad29e9cc095261172 - User-Name Attribute (1), length: 13, Value: bob-invalid - User-Password Attribute (2), length: 18, Value: - NAS-IP-Address Attribute (4), length: 6, Value: 127.0.0.1 - NAS-Port Attribute (5), length: 6, Value: 1 - Message-Authenticator Attribute (80), length: 18, Value: ....(..^A.f..... -IP (tos 0x0, ttl 64, id 21191, offset 0, flags [none], proto UDP (17), length 71) - 127.0.0.1.1812 > 127.0.0.1.39300: RADIUS, length: 43 - Access-Accept (2), id: 0x5a, Authenticator: fbaa7d05d009953514d00697da4d1dfc - Egress-VLANID Attribute (56), length: 6, Value: Unknown tag (0x33) 123 - Ingress-Filters Attribute (57), length: 6, Value: #3 - Egress-VLAN-Name Attribute (58), length: 11, Value: Unknown tag (0x33) vlanname diff --git a/tests/radius-rfc5176-v.out b/tests/radius-rfc5176-v.out deleted file mode 100644 index aa3210d..0000000 --- a/tests/radius-rfc5176-v.out +++ /dev/null @@ -1,24 +0,0 @@ -IP (tos 0x0, ttl 4, id 29161, offset 0, flags [none], proto UDP (17), length 66) - 10.0.0.10.12345 > 10.0.0.1.3799: RADIUS, length: 38 - Disconnect-Request (40), id: 0x01, Authenticator: e1792d2b4ab349f1a4c0fcc733d091c1 - Message-Authenticator Attribute (80), length: 18, Value: XQ=f(G..sJ0..... -IP (tos 0x0, ttl 4, id 18682, offset 0, flags [none], proto UDP (17), length 66) - 10.0.0.1.3799 > 10.0.0.10.12345: RADIUS, length: 38 - Disconnect-ACK (41), id: 0x02, Authenticator: 3bc9c343f689990756b96c583a56890a - Message-Authenticator Attribute (80), length: 18, Value: .O........iC,'}. -IP (tos 0x0, ttl 4, id 22542, offset 0, flags [none], proto UDP (17), length 66) - 10.0.0.1.3799 > 10.0.0.10.12345: RADIUS, length: 38 - Disconnect-NAK (42), id: 0x03, Authenticator: d867c308c9c43112b3a669a0e8c0ab8c - Message-Authenticator Attribute (80), length: 18, Value: ...p.I...(.".... -IP (tos 0x0, ttl 4, id 16413, offset 0, flags [none], proto UDP (17), length 66) - 10.0.0.10.12345 > 10.0.0.1.3799: RADIUS, length: 38 - CoA-Request (43), id: 0x04, Authenticator: 5f18309be67cd6150fe4c3a0b93536c9 - Message-Authenticator Attribute (80), length: 18, Value: '..6|.F..._...[. -IP (tos 0x0, ttl 4, id 170, offset 0, flags [none], proto UDP (17), length 66) - 10.0.0.1.3799 > 10.0.0.10.12345: RADIUS, length: 38 - CoA-ACK (44), id: 0x05, Authenticator: 55ab6cb78aa161d692753fa9130c5019 - Message-Authenticator Attribute (80), length: 18, Value: .........+.x...s -IP (tos 0x0, ttl 4, id 29645, offset 0, flags [none], proto UDP (17), length 66) - 10.0.0.1.3799 > 10.0.0.10.12345: RADIUS, length: 38 - CoA-NAK (45), id: 0x06, Authenticator: 40f21bdee27a87a5d757a30bfed62f28 - Message-Authenticator Attribute (80), length: 18, Value: .%y.....x...&j.. diff --git a/tests/radius-v.out b/tests/radius-v.out deleted file mode 100644 index 6aae418..0000000 --- a/tests/radius-v.out +++ /dev/null @@ -1,47 +0,0 @@ -IP (tos 0x0, ttl 255, id 70, offset 0, flags [none], proto UDP (17), length 167) - 10.0.0.1.1645 > 10.0.0.100.1812: RADIUS, length: 139 - Access-Request (1), id: 0x05, Authenticator: ecfe3d2fe4473ec6299095ee46aedf77 - NAS-IP-Address Attribute (4), length: 6, Value: 10.0.0.1 - NAS-Port Attribute (5), length: 6, Value: 50012 - NAS-Port-Type Attribute (61), length: 6, Value: Ethernet - User-Name Attribute (1), length: 14, Value: John.McGuirk - Called-Station-Id Attribute (30), length: 19, Value: 00-19-06-EA-B8-8C - Calling-Station-Id Attribute (31), length: 19, Value: 00-14-22-E9-54-5E - Service-Type Attribute (6), length: 6, Value: Framed - Framed-MTU Attribute (12), length: 6, Value: 1500 - EAP-Message Attribute (79), length: 19, Value: . - Message-Authenticator Attribute (80), length: 18, Value: (....$..p.Q1o.x. -IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto UDP (17), length 137) - 10.0.0.100.1812 > 10.0.0.1.1645: RADIUS, length: 109 - Access-Challenge (11), id: 0x05, Authenticator: f050649184625d36f14c9075b7a48b83 - Framed-IP-Address Attribute (8), length: 6, Value: NAS Select - Framed-MTU Attribute (12), length: 6, Value: 576 - Service-Type Attribute (6), length: 6, Value: Framed - Reply-Message Attribute (18), length: 11, Value: Hello, %u - EAP-Message Attribute (79), length: 24, Value: .. - Message-Authenticator Attribute (80), length: 18, Value: ...<.(.X.13..t4. - State Attribute (24), length: 18, Value: ..../.0$.s..1..w -IP (tos 0x0, ttl 255, id 71, offset 0, flags [none], proto UDP (17), length 202) - 10.0.0.1.1645 > 10.0.0.100.1812: RADIUS, length: 174 - Access-Request (1), id: 0x06, Authenticator: 6a6f38e6dae830304d2333e5d5364643 - NAS-IP-Address Attribute (4), length: 6, Value: 10.0.0.1 - NAS-Port Attribute (5), length: 6, Value: 50012 - NAS-Port-Type Attribute (61), length: 6, Value: Ethernet - User-Name Attribute (1), length: 14, Value: John.McGuirk - Called-Station-Id Attribute (30), length: 19, Value: 00-19-06-EA-B8-8C - Calling-Station-Id Attribute (31), length: 19, Value: 00-14-22-E9-54-5E - Service-Type Attribute (6), length: 6, Value: Framed - Framed-MTU Attribute (12), length: 6, Value: 1500 - State Attribute (24), length: 18, Value: ..../.0$.s..1..w - EAP-Message Attribute (79), length: 36, Value: .. - Message-Authenticator Attribute (80), length: 18, Value: '&.q1.....Ojb..8 -IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto UDP (17), length 125) - 10.0.0.100.1812 > 10.0.0.1.1645: RADIUS, length: 97 - Access-Accept (2), id: 0x06, Authenticator: fbba6a784c7decb314caf0f27944a37b - Framed-IP-Address Attribute (8), length: 6, Value: NAS Select - Framed-MTU Attribute (12), length: 6, Value: 576 - Service-Type Attribute (6), length: 6, Value: Framed - Reply-Message Attribute (18), length: 21, Value: Hello, John.McGuirk - EAP-Message Attribute (79), length: 6, Value: .. - Message-Authenticator Attribute (80), length: 18, Value: ...b...2.^..NLc` - User-Name Attribute (1), length: 14, Value: John.McGuirk diff --git a/tests/resp_1.out b/tests/resp_1.out deleted file mode 100644 index 88c9140..0000000 --- a/tests/resp_1.out +++ /dev/null @@ -1,150 +0,0 @@ -IP 127.0.0.1.35901 > 127.0.0.1.6379: Flags [S], seq 1159918511, win 43690, options [mss 65495,sackOK,TS val 2004405846 ecr 0,nop,wscale 7], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.35901: Flags [S.], seq 1309831771, ack 1159918512, win 43690, options [mss 65495,sackOK,TS val 2004405846 ecr 2004405846,nop,wscale 7], length 0 -IP 127.0.0.1.35901 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 0 -IP 127.0.0.1.35901 > 127.0.0.1.6379: Flags [P.], seq 1:7, ack 1, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 6: RESP "PING" -IP 127.0.0.1.6379 > 127.0.0.1.35901: Flags [.], ack 7, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.35901: Flags [P.], seq 1:8, ack 7, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 7: RESP "PONG" -IP 127.0.0.1.35901 > 127.0.0.1.6379: Flags [.], ack 8, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 0 -IP 127.0.0.1.35901 > 127.0.0.1.6379: Flags [F.], seq 7, ack 8, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.35901: Flags [F.], seq 8, ack 8, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 0 -IP 127.0.0.1.35901 > 127.0.0.1.6379: Flags [.], ack 9, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 0 -IP 127.0.0.1.35902 > 127.0.0.1.6379: Flags [S], seq 3880036895, win 43690, options [mss 65495,sackOK,TS val 2004405846 ecr 0,nop,wscale 7], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.35902: Flags [S.], seq 95825237, ack 3880036896, win 43690, options [mss 65495,sackOK,TS val 2004405846 ecr 2004405846,nop,wscale 7], length 0 -IP 127.0.0.1.35902 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 0 -IP 127.0.0.1.35902 > 127.0.0.1.6379: Flags [P.], seq 1:15, ack 1, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 14: RESP "PING" -IP 127.0.0.1.6379 > 127.0.0.1.35902: Flags [.], ack 15, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.35902: Flags [P.], seq 1:8, ack 15, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 7: RESP "PONG" -IP 127.0.0.1.35902 > 127.0.0.1.6379: Flags [.], ack 8, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 0 -IP 127.0.0.1.35902 > 127.0.0.1.6379: Flags [F.], seq 15, ack 8, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.35902: Flags [F.], seq 8, ack 16, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 0 -IP 127.0.0.1.35902 > 127.0.0.1.6379: Flags [.], ack 9, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 0 -IP 127.0.0.1.35903 > 127.0.0.1.6379: Flags [S], seq 3040658582, win 43690, options [mss 65495,sackOK,TS val 2004405846 ecr 0,nop,wscale 7], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.35903: Flags [S.], seq 2458684268, ack 3040658583, win 43690, options [mss 65495,sackOK,TS val 2004405846 ecr 2004405846,nop,wscale 7], length 0 -IP 127.0.0.1.35903 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 0 -IP 127.0.0.1.35903 > 127.0.0.1.6379: Flags [P.], seq 1:46, ack 1, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 45: RESP "SET" "key:000000000943" "xxx" -IP 127.0.0.1.6379 > 127.0.0.1.35903: Flags [.], ack 46, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.35903: Flags [P.], seq 1:6, ack 46, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 5: RESP "OK" -IP 127.0.0.1.35903 > 127.0.0.1.6379: Flags [.], ack 6, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 0 -IP 127.0.0.1.35903 > 127.0.0.1.6379: Flags [F.], seq 46, ack 6, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.35903: Flags [F.], seq 6, ack 47, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 0 -IP 127.0.0.1.35903 > 127.0.0.1.6379: Flags [.], ack 7, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 0 -IP 127.0.0.1.35904 > 127.0.0.1.6379: Flags [S], seq 2555867980, win 43690, options [mss 65495,sackOK,TS val 2004405846 ecr 0,nop,wscale 7], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.35904: Flags [S.], seq 4291997072, ack 2555867981, win 43690, options [mss 65495,sackOK,TS val 2004405846 ecr 2004405846,nop,wscale 7], length 0 -IP 127.0.0.1.35904 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 0 -IP 127.0.0.1.35904 > 127.0.0.1.6379: Flags [P.], seq 1:37, ack 1, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 36: RESP "GET" "key:000000000199" -IP 127.0.0.1.6379 > 127.0.0.1.35904: Flags [.], ack 37, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.35904: Flags [P.], seq 1:10, ack 37, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 9: RESP "xxx" -IP 127.0.0.1.35904 > 127.0.0.1.6379: Flags [.], ack 10, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 0 -IP 127.0.0.1.35904 > 127.0.0.1.6379: Flags [F.], seq 37, ack 10, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.35904: Flags [F.], seq 10, ack 38, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 0 -IP 127.0.0.1.35904 > 127.0.0.1.6379: Flags [.], ack 11, win 342, options [nop,nop,TS val 2004405846 ecr 2004405846], length 0 -IP 127.0.0.1.35905 > 127.0.0.1.6379: Flags [S], seq 2342248419, win 43690, options [mss 65495,sackOK,TS val 2004405846 ecr 0,nop,wscale 7], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.35905: Flags [S.], seq 2490886259, ack 2342248420, win 43690, options [mss 65495,sackOK,TS val 2004405847 ecr 2004405846,nop,wscale 7], length 0 -IP 127.0.0.1.35905 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 -IP 127.0.0.1.35905 > 127.0.0.1.6379: Flags [P.], seq 1:42, ack 1, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 41: RESP "INCR" "counter:000000000293" -IP 127.0.0.1.6379 > 127.0.0.1.35905: Flags [.], ack 42, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.35905: Flags [P.], seq 1:5, ack 42, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 4: RESP "3" -IP 127.0.0.1.35905 > 127.0.0.1.6379: Flags [.], ack 5, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 -IP 127.0.0.1.35905 > 127.0.0.1.6379: Flags [F.], seq 42, ack 5, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.35905: Flags [F.], seq 5, ack 43, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 -IP 127.0.0.1.35905 > 127.0.0.1.6379: Flags [.], ack 6, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 -IP 127.0.0.1.35906 > 127.0.0.1.6379: Flags [S], seq 131158412, win 43690, options [mss 65495,sackOK,TS val 2004405847 ecr 0,nop,wscale 7], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.35906: Flags [S.], seq 49781958, ack 131158413, win 43690, options [mss 65495,sackOK,TS val 2004405847 ecr 2004405847,nop,wscale 7], length 0 -IP 127.0.0.1.35906 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 -IP 127.0.0.1.35906 > 127.0.0.1.6379: Flags [P.], seq 1:37, ack 1, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 36: RESP "LPUSH" "mylist" "xxx" -IP 127.0.0.1.6379 > 127.0.0.1.35906: Flags [.], ack 37, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.35906: Flags [P.], seq 1:9, ack 37, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 8: RESP "47158" -IP 127.0.0.1.35906 > 127.0.0.1.6379: Flags [.], ack 9, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 -IP 127.0.0.1.35906 > 127.0.0.1.6379: Flags [F.], seq 37, ack 9, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.35906: Flags [F.], seq 9, ack 38, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 -IP 127.0.0.1.35906 > 127.0.0.1.6379: Flags [.], ack 10, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 -IP 127.0.0.1.35907 > 127.0.0.1.6379: Flags [S], seq 1454742392, win 43690, options [mss 65495,sackOK,TS val 2004405847 ecr 0,nop,wscale 7], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.35907: Flags [S.], seq 4166501195, ack 1454742393, win 43690, options [mss 65495,sackOK,TS val 2004405847 ecr 2004405847,nop,wscale 7], length 0 -IP 127.0.0.1.35907 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 -IP 127.0.0.1.35907 > 127.0.0.1.6379: Flags [P.], seq 1:27, ack 1, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 26: RESP "LPOP" "mylist" -IP 127.0.0.1.6379 > 127.0.0.1.35907: Flags [.], ack 27, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.35907: Flags [P.], seq 1:10, ack 27, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 9: RESP "xxx" -IP 127.0.0.1.35907 > 127.0.0.1.6379: Flags [.], ack 10, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 -IP 127.0.0.1.35907 > 127.0.0.1.6379: Flags [F.], seq 27, ack 10, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.35907: Flags [F.], seq 10, ack 28, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 -IP 127.0.0.1.35907 > 127.0.0.1.6379: Flags [.], ack 11, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 -IP 127.0.0.1.35908 > 127.0.0.1.6379: Flags [S], seq 545589487, win 43690, options [mss 65495,sackOK,TS val 2004405847 ecr 0,nop,wscale 7], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.35908: Flags [S.], seq 2823817844, ack 545589488, win 43690, options [mss 65495,sackOK,TS val 2004405847 ecr 2004405847,nop,wscale 7], length 0 -IP 127.0.0.1.35908 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 -IP 127.0.0.1.35908 > 127.0.0.1.6379: Flags [P.], seq 1:53, ack 1, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 52: RESP "SADD" "myset" "element:000000000063" -IP 127.0.0.1.6379 > 127.0.0.1.35908: Flags [.], ack 53, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.35908: Flags [P.], seq 1:5, ack 53, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 4: RESP "1" -IP 127.0.0.1.35908 > 127.0.0.1.6379: Flags [.], ack 5, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 -IP 127.0.0.1.35908 > 127.0.0.1.6379: Flags [F.], seq 53, ack 5, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.35908: Flags [F.], seq 5, ack 54, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 -IP 127.0.0.1.35908 > 127.0.0.1.6379: Flags [.], ack 6, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 -IP 127.0.0.1.35909 > 127.0.0.1.6379: Flags [S], seq 296698850, win 43690, options [mss 65495,sackOK,TS val 2004405847 ecr 0,nop,wscale 7], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.35909: Flags [S.], seq 3970806453, ack 296698851, win 43690, options [mss 65495,sackOK,TS val 2004405847 ecr 2004405847,nop,wscale 7], length 0 -IP 127.0.0.1.35909 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 -IP 127.0.0.1.35909 > 127.0.0.1.6379: Flags [P.], seq 1:26, ack 1, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 25: RESP "SPOP" "myset" -IP 127.0.0.1.6379 > 127.0.0.1.35909: Flags [.], ack 26, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.35909: Flags [P.], seq 1:28, ack 26, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 27: RESP "element:000000000063" -IP 127.0.0.1.35909 > 127.0.0.1.6379: Flags [.], ack 28, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 -IP 127.0.0.1.35909 > 127.0.0.1.6379: Flags [F.], seq 26, ack 28, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.35909: Flags [F.], seq 28, ack 27, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 -IP 127.0.0.1.35909 > 127.0.0.1.6379: Flags [.], ack 29, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 -IP 127.0.0.1.35910 > 127.0.0.1.6379: Flags [S], seq 2082555059, win 43690, options [mss 65495,sackOK,TS val 2004405847 ecr 0,nop,wscale 7], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.35910: Flags [S.], seq 1762470779, ack 2082555060, win 43690, options [mss 65495,sackOK,TS val 2004405847 ecr 2004405847,nop,wscale 7], length 0 -IP 127.0.0.1.35910 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 -IP 127.0.0.1.35910 > 127.0.0.1.6379: Flags [P.], seq 1:37, ack 1, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 36: RESP "LPUSH" "mylist" "xxx" -IP 127.0.0.1.6379 > 127.0.0.1.35910: Flags [.], ack 37, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.35910: Flags [P.], seq 1:9, ack 37, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 8: RESP "47158" -IP 127.0.0.1.35910 > 127.0.0.1.6379: Flags [.], ack 9, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 -IP 127.0.0.1.35910 > 127.0.0.1.6379: Flags [F.], seq 37, ack 9, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.35910: Flags [F.], seq 9, ack 38, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 -IP 127.0.0.1.35910 > 127.0.0.1.6379: Flags [.], ack 10, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 -IP 127.0.0.1.35911 > 127.0.0.1.6379: Flags [S], seq 823555559, win 43690, options [mss 65495,sackOK,TS val 2004405847 ecr 0,nop,wscale 7], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.35911: Flags [S.], seq 1343119127, ack 823555560, win 43690, options [mss 65495,sackOK,TS val 2004405847 ecr 2004405847,nop,wscale 7], length 0 -IP 127.0.0.1.35911 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 -IP 127.0.0.1.35911 > 127.0.0.1.6379: Flags [P.], seq 1:44, ack 1, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 43: RESP "LRANGE" "mylist" "0" "99" -IP 127.0.0.1.6379 > 127.0.0.1.35911: Flags [.], ack 44, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.35911: Flags [P.], seq 1:907, ack 44, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 906: RESP "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" -IP 127.0.0.1.35911 > 127.0.0.1.6379: Flags [.], ack 907, win 356, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 -IP 127.0.0.1.35911 > 127.0.0.1.6379: Flags [F.], seq 44, ack 907, win 356, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.35911: Flags [F.], seq 907, ack 45, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 -IP 127.0.0.1.35911 > 127.0.0.1.6379: Flags [.], ack 908, win 356, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 -IP 127.0.0.1.35912 > 127.0.0.1.6379: Flags [S], seq 2379661641, win 43690, options [mss 65495,sackOK,TS val 2004405847 ecr 0,nop,wscale 7], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.35912: Flags [S.], seq 1832740480, ack 2379661642, win 43690, options [mss 65495,sackOK,TS val 2004405847 ecr 2004405847,nop,wscale 7], length 0 -IP 127.0.0.1.35912 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 -IP 127.0.0.1.35912 > 127.0.0.1.6379: Flags [P.], seq 1:45, ack 1, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 44: RESP "LRANGE" "mylist" "0" "299" -IP 127.0.0.1.6379 > 127.0.0.1.35912: Flags [.], ack 45, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.35912: Flags [P.], seq 1:2707, ack 45, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 2706: RESP "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" -IP 127.0.0.1.35912 > 127.0.0.1.6379: Flags [.], ack 2707, win 1365, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 -IP 127.0.0.1.35912 > 127.0.0.1.6379: Flags [F.], seq 45, ack 2707, win 1365, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.35912: Flags [F.], seq 2707, ack 46, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 -IP 127.0.0.1.35912 > 127.0.0.1.6379: Flags [.], ack 2708, win 1365, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 -IP 127.0.0.1.35913 > 127.0.0.1.6379: Flags [S], seq 1669304377, win 43690, options [mss 65495,sackOK,TS val 2004405847 ecr 0,nop,wscale 7], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.35913: Flags [S.], seq 1910612537, ack 1669304378, win 43690, options [mss 65495,sackOK,TS val 2004405847 ecr 2004405847,nop,wscale 7], length 0 -IP 127.0.0.1.35913 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 0 -IP 127.0.0.1.35913 > 127.0.0.1.6379: Flags [P.], seq 1:45, ack 1, win 342, options [nop,nop,TS val 2004405848 ecr 2004405847], length 44: RESP "LRANGE" "mylist" "0" "449" -IP 127.0.0.1.6379 > 127.0.0.1.35913: Flags [.], ack 45, win 342, options [nop,nop,TS val 2004405848 ecr 2004405848], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.35913: Flags [P.], seq 1:4057, ack 45, win 342, options [nop,nop,TS val 2004405848 ecr 2004405848], length 4056: RESP "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" -IP 127.0.0.1.35913 > 127.0.0.1.6379: Flags [.], ack 4057, win 1365, options [nop,nop,TS val 2004405848 ecr 2004405848], length 0 -IP 127.0.0.1.35913 > 127.0.0.1.6379: Flags [F.], seq 45, ack 4057, win 1365, options [nop,nop,TS val 2004405848 ecr 2004405848], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.35913: Flags [F.], seq 4057, ack 46, win 342, options [nop,nop,TS val 2004405848 ecr 2004405848], length 0 -IP 127.0.0.1.35913 > 127.0.0.1.6379: Flags [.], ack 4058, win 1365, options [nop,nop,TS val 2004405848 ecr 2004405848], length 0 -IP 127.0.0.1.35914 > 127.0.0.1.6379: Flags [S], seq 1695153288, win 43690, options [mss 65495,sackOK,TS val 2004405848 ecr 0,nop,wscale 7], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.35914: Flags [S.], seq 488402032, ack 1695153289, win 43690, options [mss 65495,sackOK,TS val 2004405848 ecr 2004405848,nop,wscale 7], length 0 -IP 127.0.0.1.35914 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 2004405848 ecr 2004405848], length 0 -IP 127.0.0.1.35914 > 127.0.0.1.6379: Flags [P.], seq 1:45, ack 1, win 342, options [nop,nop,TS val 2004405848 ecr 2004405848], length 44: RESP "LRANGE" "mylist" "0" "599" -IP 127.0.0.1.6379 > 127.0.0.1.35914: Flags [.], ack 45, win 342, options [nop,nop,TS val 2004405848 ecr 2004405848], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.35914: Flags [P.], seq 1:5407, ack 45, win 342, options [nop,nop,TS val 2004405848 ecr 2004405848], length 5406: RESP "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" "xxx" -IP 127.0.0.1.35914 > 127.0.0.1.6379: Flags [.], ack 5407, win 1365, options [nop,nop,TS val 2004405848 ecr 2004405848], length 0 -IP 127.0.0.1.35914 > 127.0.0.1.6379: Flags [F.], seq 45, ack 5407, win 1365, options [nop,nop,TS val 2004405848 ecr 2004405848], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.35914: Flags [F.], seq 5407, ack 46, win 342, options [nop,nop,TS val 2004405848 ecr 2004405848], length 0 -IP 127.0.0.1.35914 > 127.0.0.1.6379: Flags [.], ack 5408, win 1365, options [nop,nop,TS val 2004405848 ecr 2004405848], length 0 -IP 127.0.0.1.35915 > 127.0.0.1.6379: Flags [S], seq 3952529642, win 43690, options [mss 65495,sackOK,TS val 2004405848 ecr 0,nop,wscale 7], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.35915: Flags [S.], seq 2079771045, ack 3952529643, win 43690, options [mss 65495,sackOK,TS val 2004405848 ecr 2004405848,nop,wscale 7], length 0 -IP 127.0.0.1.35915 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 2004405848 ecr 2004405848], length 0 -IP 127.0.0.1.35915 > 127.0.0.1.6379: Flags [P.], seq 1:336, ack 1, win 342, options [nop,nop,TS val 2004405848 ecr 2004405848], length 335: RESP "MSET" "key:000000000525" "xxx" "key:000000000050" "xxx" "key:000000000416" "xxx" "key:000000000263" "xxx" "key:000000000941" "xxx" "key:000000000148" "xxx" "key:000000000739" "xxx" "key:000000000571" "xxx" "key:000000000974" "xxx" "key:000000000495" "xxx" -IP 127.0.0.1.6379 > 127.0.0.1.35915: Flags [.], ack 336, win 350, options [nop,nop,TS val 2004405848 ecr 2004405848], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.35915: Flags [P.], seq 1:6, ack 336, win 350, options [nop,nop,TS val 2004405848 ecr 2004405848], length 5: RESP "OK" -IP 127.0.0.1.35915 > 127.0.0.1.6379: Flags [.], ack 6, win 342, options [nop,nop,TS val 2004405848 ecr 2004405848], length 0 -IP 127.0.0.1.35915 > 127.0.0.1.6379: Flags [F.], seq 336, ack 6, win 342, options [nop,nop,TS val 2004405848 ecr 2004405848], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.35915: Flags [F.], seq 6, ack 337, win 350, options [nop,nop,TS val 2004405848 ecr 2004405848], length 0 -IP 127.0.0.1.35915 > 127.0.0.1.6379: Flags [.], ack 7, win 342, options [nop,nop,TS val 2004405848 ecr 2004405848], length 0 diff --git a/tests/resp_1_benchmark.pcap b/tests/resp_1_benchmark.pcap deleted file mode 100644 index b746f1c..0000000 Binary files a/tests/resp_1_benchmark.pcap and /dev/null differ diff --git a/tests/resp_2.out b/tests/resp_2.out deleted file mode 100644 index 37333d7..0000000 --- a/tests/resp_2.out +++ /dev/null @@ -1,14 +0,0 @@ -IP 127.0.0.1.35934 > 127.0.0.1.6379: Flags [S], seq 270581733, win 43690, options [mss 65495,sackOK,TS val 2004413385 ecr 0,nop,wscale 7], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.35934: Flags [S.], seq 3524975383, ack 270581734, win 43690, options [mss 65495,sackOK,TS val 2004413385 ecr 2004413385,nop,wscale 7], length 0 -IP 127.0.0.1.35934 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 2004413385 ecr 2004413385], length 0 -IP 127.0.0.1.35934 > 127.0.0.1.6379: Flags [P.], seq 1:13, ack 1, win 342, options [nop,nop,TS val 2004413683 ecr 2004413385], length 12: RESP "set test 1" -IP 127.0.0.1.6379 > 127.0.0.1.35934: Flags [.], ack 13, win 342, options [nop,nop,TS val 2004413683 ecr 2004413683], length 0 -IP 127.0.0.1.35934 > 127.0.0.1.6379: Flags [P.], seq 13:157, ack 1, win 342, options [nop,nop,TS val 2004413683 ecr 2004413683], length 144: RESP "incr test" "set test2 redis" "get test2" "lpush test3 r" "lpush test3 e" "lpush test3 d" "lpush test3 i" "lpush test3 s" "lrange test3 0 -1" "del test4" -IP 127.0.0.1.6379 > 127.0.0.1.35934: Flags [.], ack 157, win 350, options [nop,nop,TS val 2004413683 ecr 2004413683], length 0 -IP 127.0.0.1.35934 > 127.0.0.1.6379: Flags [P.], seq 157:168, ack 1, win 342, options [nop,nop,TS val 2004413683 ecr 2004413683], length 11: RESP "get test4" -IP 127.0.0.1.6379 > 127.0.0.1.35934: Flags [.], ack 168, win 350, options [nop,nop,TS val 2004413683 ecr 2004413683], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.35934: Flags [P.], seq 1:1289, ack 168, win 350, options [nop,nop,TS val 2004413683 ecr 2004413683], length 1288: RESP "OK" "2" "OK" "redis" "170" "171" "172" "173" "174" "s" "i" "d" "e" "r" "s" "i" "d" "e" "r" "s" "i" "d" "e" "r" "s" "i" "d" "e" "r" "s" "i" "d" "e" "r" "s" "i" "d" "e" "r" "s" "i" "d" "e" "r" "s" "i" "d" "e" "r" "s" "i" "d" "e" "r" "s" "i" "d" "e" "r" "s" "i" "d" "e" "r" "s" "i" "d" "e" "r" "s" "i" "d" "e" "r" "s" "i" "d" "e" "r" "s" "i" "d" "e" "r" "s" "i" "d" "e" "r" "s" "i" "d" "e" "r" "s" "i" "d" "e" "r" "s" "i" "d" "e" "r" "s" "i" "d" "e" "r" "i" "r" "s" "i" "d" "e" "r" "s" "i" "d" "e" "r" "s" "i" "d" "e" "r" "s" "i" "d" "e" "r" "s" "i" "d" "e" "r" "s" "i" "d" "e" "r" "s" "i" "d" "e" "r" "d" "r" "s" "i" "d" "e" "r" "s" "i" "d" "e" "r" "s" "i" "d" "e" "r" "s" "i" "d" "e" "r" "s" "i" "d" "e" "r" "i" "s" "i" "e" "r" "s" "i" "d" "e" "r" "0" null -IP 127.0.0.1.35934 > 127.0.0.1.6379: Flags [.], ack 1289, win 1365, options [nop,nop,TS val 2004413683 ecr 2004413683], length 0 -IP 127.0.0.1.35934 > 127.0.0.1.6379: Flags [F.], seq 168, ack 1289, win 1365, options [nop,nop,TS val 2004413984 ecr 2004413683], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.35934: Flags [F.], seq 1289, ack 169, win 350, options [nop,nop,TS val 2004413984 ecr 2004413984], length 0 -IP 127.0.0.1.35934 > 127.0.0.1.6379: Flags [.], ack 1290, win 1365, options [nop,nop,TS val 2004413984 ecr 2004413984], length 0 diff --git a/tests/resp_2_inline.pcap b/tests/resp_2_inline.pcap deleted file mode 100644 index e22b5f2..0000000 Binary files a/tests/resp_2_inline.pcap and /dev/null differ diff --git a/tests/resp_3.out b/tests/resp_3.out deleted file mode 100644 index 8c63516..0000000 --- a/tests/resp_3.out +++ /dev/null @@ -1,163 +0,0 @@ -IP 127.0.0.1.52759 > 127.0.0.1.6379: Flags [F.], seq 2169831382, ack 489972337, win 342, options [nop,nop,TS val 1132418034 ecr 1132417734], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.52759: Flags [F.], seq 1, ack 1, win 342, options [nop,nop,TS val 1132418034 ecr 1132418034], length 0 -IP 127.0.0.1.52759 > 127.0.0.1.6379: Flags [.], ack 2, win 342, options [nop,nop,TS val 1132418034 ecr 1132418034], length 0 -IP 127.0.0.1.52760 > 127.0.0.1.6379: Flags [S], seq 264055152, win 43690, options [mss 65495,sackOK,TS val 1132418037 ecr 0,nop,wscale 7], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.52760: Flags [S.], seq 4227148888, ack 264055153, win 43690, options [mss 65495,sackOK,TS val 1132418037 ecr 1132418037,nop,wscale 7], length 0 -IP 127.0.0.1.52760 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 1132418037 ecr 1132418037], length 0 -IP 127.0.0.1.52760 > 127.0.0.1.6379: Flags [P.], seq 1:7, ack 1, win 342, options [nop,nop,TS val 1132418037 ecr 1132418037], length 6: RESP empty -IP 127.0.0.1.6379 > 127.0.0.1.52760: Flags [.], ack 7, win 342, options [nop,nop,TS val 1132418037 ecr 1132418037], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.52760: Flags [P.], seq 1:28, ack 7, win 342, options [nop,nop,TS val 1132418037 ecr 1132418037], length 27: RESP "ERR unknown command '$0'" -IP 127.0.0.1.52760 > 127.0.0.1.6379: Flags [.], ack 28, win 342, options [nop,nop,TS val 1132418037 ecr 1132418037], length 0 -IP 127.0.0.1.52760 > 127.0.0.1.6379: Flags [F.], seq 7, ack 28, win 342, options [nop,nop,TS val 1132418337 ecr 1132418037], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.52760: Flags [F.], seq 28, ack 8, win 342, options [nop,nop,TS val 1132418337 ecr 1132418337], length 0 -IP 127.0.0.1.52760 > 127.0.0.1.6379: Flags [.], ack 29, win 342, options [nop,nop,TS val 1132418337 ecr 1132418337], length 0 -IP 127.0.0.1.52763 > 127.0.0.1.6379: Flags [S], seq 4029577365, win 43690, options [mss 65495,sackOK,TS val 1132418340 ecr 0,nop,wscale 7], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.52763: Flags [S.], seq 365322185, ack 4029577366, win 43690, options [mss 65495,sackOK,TS val 1132418340 ecr 1132418340,nop,wscale 7], length 0 -IP 127.0.0.1.52763 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 1132418340 ecr 1132418340], length 0 -IP 127.0.0.1.52763 > 127.0.0.1.6379: Flags [P.], seq 1:4, ack 1, win 342, options [nop,nop,TS val 1132418340 ecr 1132418340], length 3: RESP "" -IP 127.0.0.1.6379 > 127.0.0.1.52763: Flags [.], ack 4, win 342, options [nop,nop,TS val 1132418340 ecr 1132418340], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.52763: Flags [P.], seq 1:27, ack 4, win 342, options [nop,nop,TS val 1132418340 ecr 1132418340], length 26: RESP "ERR unknown command '+'" -IP 127.0.0.1.52763 > 127.0.0.1.6379: Flags [.], ack 27, win 342, options [nop,nop,TS val 1132418340 ecr 1132418340], length 0 -IP 127.0.0.1.52763 > 127.0.0.1.6379: Flags [F.], seq 4, ack 27, win 342, options [nop,nop,TS val 1132418640 ecr 1132418340], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.52763: Flags [F.], seq 27, ack 5, win 342, options [nop,nop,TS val 1132418640 ecr 1132418640], length 0 -IP 127.0.0.1.52763 > 127.0.0.1.6379: Flags [.], ack 28, win 342, options [nop,nop,TS val 1132418640 ecr 1132418640], length 0 -IP 127.0.0.1.52764 > 127.0.0.1.6379: Flags [S], seq 3994485171, win 43690, options [mss 65495,sackOK,TS val 1132418642 ecr 0,nop,wscale 7], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.52764: Flags [S.], seq 3089553256, ack 3994485172, win 43690, options [mss 65495,sackOK,TS val 1132418642 ecr 1132418642,nop,wscale 7], length 0 -IP 127.0.0.1.52764 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 1132418642 ecr 1132418642], length 0 -IP 127.0.0.1.52764 > 127.0.0.1.6379: Flags [P.], seq 1:4, ack 1, win 342, options [nop,nop,TS val 1132418642 ecr 1132418642], length 3: RESP "" -IP 127.0.0.1.6379 > 127.0.0.1.52764: Flags [.], ack 4, win 342, options [nop,nop,TS val 1132418642 ecr 1132418642], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.52764: Flags [P.], seq 1:27, ack 4, win 342, options [nop,nop,TS val 1132418642 ecr 1132418642], length 26: RESP "ERR unknown command '-'" -IP 127.0.0.1.52764 > 127.0.0.1.6379: Flags [.], ack 27, win 342, options [nop,nop,TS val 1132418642 ecr 1132418642], length 0 -IP 127.0.0.1.52764 > 127.0.0.1.6379: Flags [F.], seq 4, ack 27, win 342, options [nop,nop,TS val 1132418942 ecr 1132418642], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.52764: Flags [F.], seq 27, ack 5, win 342, options [nop,nop,TS val 1132418942 ecr 1132418942], length 0 -IP 127.0.0.1.52764 > 127.0.0.1.6379: Flags [.], ack 28, win 342, options [nop,nop,TS val 1132418942 ecr 1132418942], length 0 -IP 127.0.0.1.52765 > 127.0.0.1.6379: Flags [S], seq 3235592213, win 43690, options [mss 65495,sackOK,TS val 1132418944 ecr 0,nop,wscale 7], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.52765: Flags [S.], seq 1213611847, ack 3235592214, win 43690, options [mss 65495,sackOK,TS val 1132418944 ecr 1132418944,nop,wscale 7], length 0 -IP 127.0.0.1.52765 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 1132418944 ecr 1132418944], length 0 -IP 127.0.0.1.52765 > 127.0.0.1.6379: Flags [P.], seq 1:4, ack 1, win 342, options [nop,nop,TS val 1132418944 ecr 1132418944], length 3: RESP "" -IP 127.0.0.1.6379 > 127.0.0.1.52765: Flags [.], ack 4, win 342, options [nop,nop,TS val 1132418944 ecr 1132418944], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.52765: Flags [P.], seq 1:27, ack 4, win 342, options [nop,nop,TS val 1132418945 ecr 1132418944], length 26: RESP "ERR unknown command ':'" -IP 127.0.0.1.52765 > 127.0.0.1.6379: Flags [.], ack 27, win 342, options [nop,nop,TS val 1132418945 ecr 1132418945], length 0 -IP 127.0.0.1.52765 > 127.0.0.1.6379: Flags [F.], seq 4, ack 27, win 342, options [nop,nop,TS val 1132419244 ecr 1132418945], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.52765: Flags [F.], seq 27, ack 5, win 342, options [nop,nop,TS val 1132419244 ecr 1132419244], length 0 -IP 127.0.0.1.52765 > 127.0.0.1.6379: Flags [.], ack 28, win 342, options [nop,nop,TS val 1132419244 ecr 1132419244], length 0 -IP 127.0.0.1.52766 > 127.0.0.1.6379: Flags [S], seq 1161779316, win 43690, options [mss 65495,sackOK,TS val 1132419247 ecr 0,nop,wscale 7], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.52766: Flags [S.], seq 1206331179, ack 1161779317, win 43690, options [mss 65495,sackOK,TS val 1132419247 ecr 1132419247,nop,wscale 7], length 0 -IP 127.0.0.1.52766 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 1132419247 ecr 1132419247], length 0 -IP 127.0.0.1.52766 > 127.0.0.1.6379: Flags [P.], seq 1:89, ack 1, win 342, options [nop,nop,TS val 1132419247 ecr 1132419247], length 88: RESP "0392049029024920492304923049032940329402394092304932049230492034932094032940234902340" -IP 127.0.0.1.6379 > 127.0.0.1.52766: Flags [.], ack 89, win 342, options [nop,nop,TS val 1132419247 ecr 1132419247], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.52766: Flags [P.], seq 1:112, ack 89, win 342, options [nop,nop,TS val 1132419247 ecr 1132419247], length 111: RESP "ERR unknown command ':0392049029024920492304923049032940329402394092304932049230492034932094032940234902340'" -IP 127.0.0.1.52766 > 127.0.0.1.6379: Flags [.], ack 112, win 342, options [nop,nop,TS val 1132419247 ecr 1132419247], length 0 -IP 127.0.0.1.52766 > 127.0.0.1.6379: Flags [F.], seq 89, ack 112, win 342, options [nop,nop,TS val 1132419547 ecr 1132419247], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.52766: Flags [F.], seq 112, ack 90, win 342, options [nop,nop,TS val 1132419547 ecr 1132419547], length 0 -IP 127.0.0.1.52766 > 127.0.0.1.6379: Flags [.], ack 113, win 342, options [nop,nop,TS val 1132419547 ecr 1132419547], length 0 -IP 127.0.0.1.52767 > 127.0.0.1.6379: Flags [S], seq 3453687710, win 43690, options [mss 65495,sackOK,TS val 1132419549 ecr 0,nop,wscale 7], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.52767: Flags [S.], seq 4076862539, ack 3453687711, win 43690, options [mss 65495,sackOK,TS val 1132419549 ecr 1132419549,nop,wscale 7], length 0 -IP 127.0.0.1.52767 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 1132419549 ecr 1132419549], length 0 -IP 127.0.0.1.52767 > 127.0.0.1.6379: Flags [P.], seq 1:39, ack 1, win 342, options [nop,nop,TS val 1132419549 ecr 1132419549], length 38: RESP invalid -IP 127.0.0.1.6379 > 127.0.0.1.52767: Flags [.], ack 39, win 342, options [nop,nop,TS val 1132419549 ecr 1132419549], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.52767: Flags [P.], seq 1:48, ack 39, win 342, options [nop,nop,TS val 1132419549 ecr 1132419549], length 47: RESP "ERR Protocol error: invalid multibulk length" -IP 127.0.0.1.52767 > 127.0.0.1.6379: Flags [.], ack 48, win 342, options [nop,nop,TS val 1132419549 ecr 1132419549], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.52767: Flags [F.], seq 48, ack 39, win 342, options [nop,nop,TS val 1132419549 ecr 1132419549], length 0 -IP 127.0.0.1.52767 > 127.0.0.1.6379: Flags [F.], seq 39, ack 49, win 342, options [nop,nop,TS val 1132419549 ecr 1132419549], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.52767: Flags [.], ack 40, win 342, options [nop,nop,TS val 1132419549 ecr 1132419549], length 0 -IP 127.0.0.1.52768 > 127.0.0.1.6379: Flags [S], seq 3109305893, win 43690, options [mss 65495,sackOK,TS val 1132419852 ecr 0,nop,wscale 7], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.52768: Flags [S.], seq 4202059680, ack 3109305894, win 43690, options [mss 65495,sackOK,TS val 1132419852 ecr 1132419852,nop,wscale 7], length 0 -IP 127.0.0.1.52768 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 1132419852 ecr 1132419852], length 0 -IP 127.0.0.1.52768 > 127.0.0.1.6379: Flags [P.], seq 1:7, ack 1, win 342, options [nop,nop,TS val 1132419852 ecr 1132419852], length 6: RESP invalid -IP 127.0.0.1.6379 > 127.0.0.1.52768: Flags [.], ack 7, win 342, options [nop,nop,TS val 1132419852 ecr 1132419852], length 0 -IP 127.0.0.1.52768 > 127.0.0.1.6379: Flags [F.], seq 7, ack 1, win 342, options [nop,nop,TS val 1132420152 ecr 1132419852], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.52768: Flags [F.], seq 1, ack 8, win 342, options [nop,nop,TS val 1132420152 ecr 1132420152], length 0 -IP 127.0.0.1.52768 > 127.0.0.1.6379: Flags [.], ack 2, win 342, options [nop,nop,TS val 1132420152 ecr 1132420152], length 0 -IP 127.0.0.1.52769 > 127.0.0.1.6379: Flags [S], seq 4072438166, win 43690, options [mss 65495,sackOK,TS val 1132420154 ecr 0,nop,wscale 7], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.52769: Flags [S.], seq 156730490, ack 4072438167, win 43690, options [mss 65495,sackOK,TS val 1132420154 ecr 1132420154,nop,wscale 7], length 0 -IP 127.0.0.1.52769 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 1132420154 ecr 1132420154], length 0 -IP 127.0.0.1.52769 > 127.0.0.1.6379: Flags [P.], seq 1:11, ack 1, win 342, options [nop,nop,TS val 1132420154 ecr 1132420154], length 10: RESP invalid [|RESP] -IP 127.0.0.1.6379 > 127.0.0.1.52769: Flags [.], ack 11, win 342, options [nop,nop,TS val 1132420154 ecr 1132420154], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.52769: Flags [P.], seq 1:57, ack 11, win 342, options [nop,nop,TS val 1132420154 ecr 1132420154], length 56: RESP "ERR unknown command '$-20'" "ERR unknown command 'hi'" -IP 127.0.0.1.52769 > 127.0.0.1.6379: Flags [.], ack 57, win 342, options [nop,nop,TS val 1132420154 ecr 1132420154], length 0 -IP 127.0.0.1.52769 > 127.0.0.1.6379: Flags [F.], seq 11, ack 57, win 342, options [nop,nop,TS val 1132420454 ecr 1132420154], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.52769: Flags [F.], seq 57, ack 12, win 342, options [nop,nop,TS val 1132420454 ecr 1132420454], length 0 -IP 127.0.0.1.52769 > 127.0.0.1.6379: Flags [.], ack 58, win 342, options [nop,nop,TS val 1132420454 ecr 1132420454], length 0 -IP 127.0.0.1.52770 > 127.0.0.1.6379: Flags [S], seq 374549345, win 43690, options [mss 65495,sackOK,TS val 1132420457 ecr 0,nop,wscale 7], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.52770: Flags [S.], seq 1146630634, ack 374549346, win 43690, options [mss 65495,sackOK,TS val 1132420457 ecr 1132420457,nop,wscale 7], length 0 -IP 127.0.0.1.52770 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 1132420457 ecr 1132420457], length 0 -IP 127.0.0.1.52770 > 127.0.0.1.6379: Flags [P.], seq 1:7, ack 1, win 342, options [nop,nop,TS val 1132420457 ecr 1132420457], length 6: RESP [|RESP] -IP 127.0.0.1.6379 > 127.0.0.1.52770: Flags [.], ack 7, win 342, options [nop,nop,TS val 1132420457 ecr 1132420457], length 0 -IP 127.0.0.1.52770 > 127.0.0.1.6379: Flags [F.], seq 7, ack 1, win 342, options [nop,nop,TS val 1132420757 ecr 1132420457], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.52770: Flags [F.], seq 1, ack 8, win 342, options [nop,nop,TS val 1132420757 ecr 1132420757], length 0 -IP 127.0.0.1.52770 > 127.0.0.1.6379: Flags [.], ack 2, win 342, options [nop,nop,TS val 1132420757 ecr 1132420757], length 0 -IP 127.0.0.1.52771 > 127.0.0.1.6379: Flags [S], seq 2541241523, win 43690, options [mss 65495,sackOK,TS val 1132420760 ecr 0,nop,wscale 7], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.52771: Flags [S.], seq 3482468888, ack 2541241524, win 43690, options [mss 65495,sackOK,TS val 1132420760 ecr 1132420760,nop,wscale 7], length 0 -IP 127.0.0.1.52771 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 1132420760 ecr 1132420760], length 0 -IP 127.0.0.1.52771 > 127.0.0.1.6379: Flags [P.], seq 1:7, ack 1, win 342, options [nop,nop,TS val 1132420760 ecr 1132420760], length 6: RESP [|RESP] -IP 127.0.0.1.6379 > 127.0.0.1.52771: Flags [.], ack 7, win 342, options [nop,nop,TS val 1132420760 ecr 1132420760], length 0 -IP 127.0.0.1.52771 > 127.0.0.1.6379: Flags [F.], seq 7, ack 1, win 342, options [nop,nop,TS val 1132421059 ecr 1132420760], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.52771: Flags [F.], seq 1, ack 8, win 342, options [nop,nop,TS val 1132421059 ecr 1132421059], length 0 -IP 127.0.0.1.52771 > 127.0.0.1.6379: Flags [.], ack 2, win 342, options [nop,nop,TS val 1132421059 ecr 1132421059], length 0 -IP 127.0.0.1.52772 > 127.0.0.1.6379: Flags [S], seq 3376019145, win 43690, options [mss 65495,sackOK,TS val 1132421060 ecr 0,nop,wscale 7], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.52772: Flags [S.], seq 2449011991, ack 3376019146, win 43690, options [mss 65495,sackOK,TS val 1132421060 ecr 1132421060,nop,wscale 7], length 0 -IP 127.0.0.1.52772 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 1132421060 ecr 1132421060], length 0 -IP 127.0.0.1.52772 > 127.0.0.1.6379: Flags [P.], seq 1:7, ack 1, win 342, options [nop,nop,TS val 1132421060 ecr 1132421060], length 6: RESP [|RESP] -IP 127.0.0.1.6379 > 127.0.0.1.52772: Flags [.], ack 7, win 342, options [nop,nop,TS val 1132421060 ecr 1132421060], length 0 -IP 127.0.0.1.52772 > 127.0.0.1.6379: Flags [F.], seq 7, ack 1, win 342, options [nop,nop,TS val 1132421360 ecr 1132421060], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.52772: Flags [F.], seq 1, ack 8, win 342, options [nop,nop,TS val 1132421360 ecr 1132421360], length 0 -IP 127.0.0.1.52772 > 127.0.0.1.6379: Flags [.], ack 2, win 342, options [nop,nop,TS val 1132421360 ecr 1132421360], length 0 -IP 127.0.0.1.52773 > 127.0.0.1.6379: Flags [S], seq 3567970909, win 43690, options [mss 65495,sackOK,TS val 1132421363 ecr 0,nop,wscale 7], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.52773: Flags [S.], seq 3366370739, ack 3567970910, win 43690, options [mss 65495,sackOK,TS val 1132421363 ecr 1132421363,nop,wscale 7], length 0 -IP 127.0.0.1.52773 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 1132421363 ecr 1132421363], length 0 -IP 127.0.0.1.52773 > 127.0.0.1.6379: Flags [P.], seq 1:6, ack 1, win 342, options [nop,nop,TS val 1132421363 ecr 1132421363], length 5: RESP null -IP 127.0.0.1.6379 > 127.0.0.1.52773: Flags [.], ack 6, win 342, options [nop,nop,TS val 1132421363 ecr 1132421363], length 0 -IP 127.0.0.1.52773 > 127.0.0.1.6379: Flags [F.], seq 6, ack 1, win 342, options [nop,nop,TS val 1132421663 ecr 1132421363], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.52773: Flags [F.], seq 1, ack 7, win 342, options [nop,nop,TS val 1132421663 ecr 1132421663], length 0 -IP 127.0.0.1.52773 > 127.0.0.1.6379: Flags [.], ack 2, win 342, options [nop,nop,TS val 1132421663 ecr 1132421663], length 0 -IP 127.0.0.1.52775 > 127.0.0.1.6379: Flags [S], seq 3374943379, win 43690, options [mss 65495,sackOK,TS val 1132421665 ecr 0,nop,wscale 7], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.52775: Flags [S.], seq 363870070, ack 3374943380, win 43690, options [mss 65495,sackOK,TS val 1132421665 ecr 1132421665,nop,wscale 7], length 0 -IP 127.0.0.1.52775 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 1132421665 ecr 1132421665], length 0 -IP 127.0.0.1.52775 > 127.0.0.1.6379: Flags [P.], seq 1:6, ack 1, win 342, options [nop,nop,TS val 1132421665 ecr 1132421665], length 5: RESP null -IP 127.0.0.1.6379 > 127.0.0.1.52775: Flags [.], ack 6, win 342, options [nop,nop,TS val 1132421665 ecr 1132421665], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.52775: Flags [P.], seq 1:29, ack 6, win 342, options [nop,nop,TS val 1132421665 ecr 1132421665], length 28: RESP "ERR unknown command '$-1'" -IP 127.0.0.1.52775 > 127.0.0.1.6379: Flags [.], ack 29, win 342, options [nop,nop,TS val 1132421665 ecr 1132421665], length 0 -IP 127.0.0.1.52775 > 127.0.0.1.6379: Flags [F.], seq 6, ack 29, win 342, options [nop,nop,TS val 1132421965 ecr 1132421665], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.52775: Flags [F.], seq 29, ack 7, win 342, options [nop,nop,TS val 1132421965 ecr 1132421965], length 0 -IP 127.0.0.1.52775 > 127.0.0.1.6379: Flags [.], ack 30, win 342, options [nop,nop,TS val 1132421965 ecr 1132421965], length 0 -IP 127.0.0.1.52776 > 127.0.0.1.6379: Flags [S], seq 2780863902, win 43690, options [mss 65495,sackOK,TS val 1132421969 ecr 0,nop,wscale 7], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.52776: Flags [S.], seq 2789065616, ack 2780863903, win 43690, options [mss 65495,sackOK,TS val 1132421969 ecr 1132421969,nop,wscale 7], length 0 -IP 127.0.0.1.52776 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 1132421969 ecr 1132421969], length 0 -IP 127.0.0.1.52776 > 127.0.0.1.6379: Flags [P.], seq 1:64, ack 1, win 342, options [nop,nop,TS val 1132421969 ecr 1132421969], length 63: RESP "INCR" "z" "INCR" "z" "INCR" "z" -IP 127.0.0.1.6379 > 127.0.0.1.52776: Flags [.], ack 64, win 342, options [nop,nop,TS val 1132421969 ecr 1132421969], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.52776: Flags [P.], seq 1:16, ack 64, win 342, options [nop,nop,TS val 1132421969 ecr 1132421969], length 15: RESP "69" "70" "71" -IP 127.0.0.1.52776 > 127.0.0.1.6379: Flags [.], ack 16, win 342, options [nop,nop,TS val 1132421969 ecr 1132421969], length 0 -IP 127.0.0.1.52776 > 127.0.0.1.6379: Flags [F.], seq 64, ack 16, win 342, options [nop,nop,TS val 1132422270 ecr 1132421969], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.52776: Flags [F.], seq 16, ack 65, win 342, options [nop,nop,TS val 1132422270 ecr 1132422270], length 0 -IP 127.0.0.1.52776 > 127.0.0.1.6379: Flags [.], ack 17, win 342, options [nop,nop,TS val 1132422270 ecr 1132422270], length 0 -IP 127.0.0.1.52777 > 127.0.0.1.6379: Flags [S], seq 357339476, win 43690, options [mss 65495,sackOK,TS val 1132422271 ecr 0,nop,wscale 7], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.52777: Flags [S.], seq 3123925211, ack 357339477, win 43690, options [mss 65495,sackOK,TS val 1132422271 ecr 1132422271,nop,wscale 7], length 0 -IP 127.0.0.1.52777 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 1132422271 ecr 1132422271], length 0 -IP 127.0.0.1.52777 > 127.0.0.1.6379: Flags [P.], seq 1:21, ack 1, win 342, options [nop,nop,TS val 1132422271 ecr 1132422271], length 20: RESP "PING" "PING" "PING" [|RESP] -IP 127.0.0.1.6379 > 127.0.0.1.52777: Flags [.], ack 21, win 342, options [nop,nop,TS val 1132422271 ecr 1132422271], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.52777: Flags [P.], seq 1:22, ack 21, win 342, options [nop,nop,TS val 1132422271 ecr 1132422271], length 21: RESP "PONG" "PONG" "PONG" -IP 127.0.0.1.52777 > 127.0.0.1.6379: Flags [.], ack 22, win 342, options [nop,nop,TS val 1132422271 ecr 1132422271], length 0 -IP 127.0.0.1.52777 > 127.0.0.1.6379: Flags [F.], seq 21, ack 22, win 342, options [nop,nop,TS val 1132422571 ecr 1132422271], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.52777: Flags [F.], seq 22, ack 22, win 342, options [nop,nop,TS val 1132422571 ecr 1132422571], length 0 -IP 127.0.0.1.52777 > 127.0.0.1.6379: Flags [.], ack 23, win 342, options [nop,nop,TS val 1132422571 ecr 1132422571], length 0 -IP 127.0.0.1.52778 > 127.0.0.1.6379: Flags [S], seq 2069568772, win 43690, options [mss 65495,sackOK,TS val 1132422573 ecr 0,nop,wscale 7], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.52778: Flags [S.], seq 1085796497, ack 2069568773, win 43690, options [mss 65495,sackOK,TS val 1132422573 ecr 1132422573,nop,wscale 7], length 0 -IP 127.0.0.1.52778 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 1132422573 ecr 1132422573], length 0 -IP 127.0.0.1.52778 > 127.0.0.1.6379: Flags [P.], seq 1:21, ack 1, win 342, options [nop,nop,TS val 1132422573 ecr 1132422573], length 20: RESP "PING" "PING" "PING" [|RESP] -IP 127.0.0.1.6379 > 127.0.0.1.52778: Flags [.], ack 21, win 342, options [nop,nop,TS val 1132422573 ecr 1132422573], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.52778: Flags [P.], seq 1:22, ack 21, win 342, options [nop,nop,TS val 1132422573 ecr 1132422573], length 21: RESP "PONG" "PONG" "PONG" -IP 127.0.0.1.52778 > 127.0.0.1.6379: Flags [.], ack 22, win 342, options [nop,nop,TS val 1132422573 ecr 1132422573], length 0 -IP 127.0.0.1.52778 > 127.0.0.1.6379: Flags [F.], seq 21, ack 22, win 342, options [nop,nop,TS val 1132422873 ecr 1132422573], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.52778: Flags [F.], seq 22, ack 22, win 342, options [nop,nop,TS val 1132422873 ecr 1132422873], length 0 -IP 127.0.0.1.52778 > 127.0.0.1.6379: Flags [.], ack 23, win 342, options [nop,nop,TS val 1132422873 ecr 1132422873], length 0 -IP 127.0.0.1.52779 > 127.0.0.1.6379: Flags [S], seq 1578479120, win 43690, options [mss 65495,sackOK,TS val 1132422875 ecr 0,nop,wscale 7], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.52779: Flags [S.], seq 2529957046, ack 1578479121, win 43690, options [mss 65495,sackOK,TS val 1132422875 ecr 1132422875,nop,wscale 7], length 0 -IP 127.0.0.1.52779 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 1132422875 ecr 1132422875], length 0 -IP 127.0.0.1.52779 > 127.0.0.1.6379: Flags [P.], seq 1:24, ack 1, win 342, options [nop,nop,TS val 1132422875 ecr 1132422875], length 23: RESP "PING" "PING" "PING" [|RESP] -IP 127.0.0.1.6379 > 127.0.0.1.52779: Flags [.], ack 24, win 342, options [nop,nop,TS val 1132422875 ecr 1132422875], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.52779: Flags [P.], seq 1:22, ack 24, win 342, options [nop,nop,TS val 1132422875 ecr 1132422875], length 21: RESP "PONG" "PONG" "PONG" -IP 127.0.0.1.52779 > 127.0.0.1.6379: Flags [.], ack 22, win 342, options [nop,nop,TS val 1132422875 ecr 1132422875], length 0 -IP 127.0.0.1.52779 > 127.0.0.1.6379: Flags [F.], seq 24, ack 22, win 342, options [nop,nop,TS val 1132423175 ecr 1132422875], length 0 -IP 127.0.0.1.6379 > 127.0.0.1.52779: Flags [F.], seq 22, ack 25, win 342, options [nop,nop,TS val 1132423175 ecr 1132423175], length 0 -IP 127.0.0.1.52779 > 127.0.0.1.6379: Flags [.], ack 23, win 342, options [nop,nop,TS val 1132423175 ecr 1132423175], length 0 diff --git a/tests/resp_3_malicious.pcap b/tests/resp_3_malicious.pcap deleted file mode 100644 index 02cd53f..0000000 Binary files a/tests/resp_3_malicious.pcap and /dev/null differ diff --git a/tests/ripv1v2.out b/tests/ripv1v2.out deleted file mode 100644 index 65243d8..0000000 --- a/tests/ripv1v2.out +++ /dev/null @@ -1,16 +0,0 @@ -IP (tos 0xc0, ttl 64, id 0, offset 0, flags [DF], proto UDP (17), length 52) - 10.0.0.20.520 > 10.0.0.255.520: - RIPv1, Request, length: 24, routes: 1 - AFI 0, 0.0.0.0, metric: 16 -IP (tos 0xc0, ttl 64, id 0, offset 0, flags [DF], proto UDP (17), length 52) - 10.0.0.20.520 > 10.0.0.255.520: - RIPv1, Response, length: 24, routes: 1 - 10.70.178.0, metric: 1 -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [DF], proto UDP (17), length 52) - 10.0.0.20.520 > 224.0.0.9.520: - RIPv2, Request, length: 24, routes: 1 or less - AFI 0, 0.0.0.0/0 , tag 0x0000, metric: 16, next-hop: self -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [DF], proto UDP (17), length 52) - 10.0.0.20.520 > 224.0.0.9.520: - RIPv2, Response, length: 24, routes: 1 or less - AFI IPv4, 10.70.178.0/24, tag 0x0000, metric: 1, next-hop: self diff --git a/tests/ripv1v2.pcap b/tests/ripv1v2.pcap deleted file mode 100644 index b98056f..0000000 Binary files a/tests/ripv1v2.pcap and /dev/null differ diff --git a/tests/ripv2_auth.out b/tests/ripv2_auth.out deleted file mode 100644 index 618e4a7..0000000 --- a/tests/ripv2_auth.out +++ /dev/null @@ -1,94 +0,0 @@ -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [DF], proto UDP (17), length 72) - 10.0.0.20.520 > 224.0.0.9.520: - RIPv2, Request, length: 44, routes: 2 or less - Simple Text Authentication data: abcdefghijklmnop - AFI 0, 0.0.0.0/0 , tag 0x0000, metric: 16, next-hop: self -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [DF], proto UDP (17), length 72) - 10.0.0.20.520 > 224.0.0.9.520: - RIPv2, Response, length: 44, routes: 2 or less - Simple Text Authentication data: abcdefghijklmnop - AFI IPv4, 10.70.178.0/24, tag 0x0000, metric: 1, next-hop: self -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [DF], proto UDP (17), length 92) - 10.0.0.20.520 > 224.0.0.9.520: - RIPv2, Request, length: 64, routes: 3 or less - Auth header: Packet Len 44, Key-ID 45, Auth Data Len 16, SeqNo 1339429688, MBZ 0, MBZ 0 - AFI 0, 0.0.0.0/0 , tag 0x0000, metric: 16, next-hop: self - Auth trailer: - 0x0000: a2fe c865 f120 8808 2326 1369 d6c2 3593 -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [DF], proto UDP (17), length 92) - 10.0.0.20.520 > 224.0.0.9.520: - RIPv2, Response, length: 64, routes: 3 or less - Auth header: Packet Len 44, Key-ID 45, Auth Data Len 16, SeqNo 1339429692, MBZ 0, MBZ 0 - AFI IPv4, 10.70.178.0/24, tag 0x0000, metric: 1, next-hop: self - Auth trailer: - 0x0000: 6d21 5dd5 6d27 a6f4 8a51 e2c2 fcc2 af0f -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [DF], proto UDP (17), length 96) - 10.0.0.20.520 > 224.0.0.9.520: - RIPv2, Request, length: 68, routes: 3 or less - Auth header: Packet Len 44, Key-ID 45, Auth Data Len 20, SeqNo 1339429713, MBZ 0, MBZ 0 - AFI 0, 0.0.0.0/0 , tag 0x0000, metric: 16, next-hop: self - Auth trailer: - 0x0000: 728c 5b16 9a1b 3913 0021 a73f 7a73 bc1b - 0x0010: eee0 e6a2 -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [DF], proto UDP (17), length 96) - 10.0.0.20.520 > 224.0.0.9.520: - RIPv2, Response, length: 68, routes: 3 or less - Auth header: Packet Len 44, Key-ID 45, Auth Data Len 20, SeqNo 1339429716, MBZ 0, MBZ 0 - AFI IPv4, 10.70.178.0/24, tag 0x0000, metric: 1, next-hop: self - Auth trailer: - 0x0000: 375c 8a50 f77f 543b 2425 a695 a27d 6b95 - 0x0010: 3375 fc89 -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [DF], proto UDP (17), length 108) - 10.0.0.20.520 > 224.0.0.9.520: - RIPv2, Request, length: 80, routes: 4 or less - Auth header: Packet Len 44, Key-ID 45, Auth Data Len 32, SeqNo 1339429740, MBZ 0, MBZ 0 - AFI 0, 0.0.0.0/0 , tag 0x0000, metric: 16, next-hop: self - Auth trailer: - 0x0000: 4ae5 fb9c 9702 03b8 5a93 812d 0258 6740 - 0x0010: 451a bd20 cee4 8a3d a466 17a0 e550 5b4b -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [DF], proto UDP (17), length 108) - 10.0.0.20.520 > 224.0.0.9.520: - RIPv2, Response, length: 80, routes: 4 or less - Auth header: Packet Len 44, Key-ID 45, Auth Data Len 32, SeqNo 1339429744, MBZ 0, MBZ 0 - AFI IPv4, 10.70.178.0/24, tag 0x0000, metric: 1, next-hop: self - Auth trailer: - 0x0000: 3965 b755 535a 3375 e83a 973c 60c9 1693 - 0x0010: f2de 8132 9e87 3f7f b763 3cb0 b3dc 3ba2 -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [DF], proto UDP (17), length 124) - 10.0.0.20.520 > 224.0.0.9.520: - RIPv2, Request, length: 96, routes: 4 or less - Auth header: Packet Len 44, Key-ID 45, Auth Data Len 48, SeqNo 1339429761, MBZ 0, MBZ 0 - AFI 0, 0.0.0.0/0 , tag 0x0000, metric: 16, next-hop: self - Auth trailer: - 0x0000: a1f2 20f6 6f72 f45b e8e0 291f 2322 a198 - 0x0010: 1b6b 67bc 9279 7d3b 8e05 c683 8b7e 05bc - 0x0020: 230c abc8 1470 8e30 5470 fb27 6fe3 4506 -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [DF], proto UDP (17), length 124) - 10.0.0.20.520 > 224.0.0.9.520: - RIPv2, Response, length: 96, routes: 4 or less - Auth header: Packet Len 44, Key-ID 45, Auth Data Len 48, SeqNo 1339429765, MBZ 0, MBZ 0 - AFI IPv4, 10.70.178.0/24, tag 0x0000, metric: 1, next-hop: self - Auth trailer: - 0x0000: 64de 1dec 3632 e210 0258 2404 0b32 a947 - 0x0010: aa86 59a1 fef3 9248 3115 c266 0386 f183 - 0x0020: 4f31 1df0 0681 e1cc ba10 b4c1 7795 9773 -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [DF], proto UDP (17), length 140) - 10.0.0.20.520 > 224.0.0.9.520: - RIPv2, Request, length: 112, routes: 5 or less - Auth header: Packet Len 44, Key-ID 45, Auth Data Len 64, SeqNo 1339429781, MBZ 0, MBZ 0 - AFI 0, 0.0.0.0/0 , tag 0x0000, metric: 16, next-hop: self - Auth trailer: - 0x0000: 73ad b6e3 5fe6 07bd 0bc5 ca25 41cc 63ec - 0x0010: bd06 55b1 77a4 e223 ef52 8ea2 7480 e39c - 0x0020: ee51 96bd 4e35 8cb7 f185 ba49 9892 e683 - 0x0030: e756 788d aa23 bf90 0b01 5c2d 241d 2d8e -IP (tos 0xc0, ttl 1, id 0, offset 0, flags [DF], proto UDP (17), length 140) - 10.0.0.20.520 > 224.0.0.9.520: - RIPv2, Response, length: 112, routes: 5 or less - Auth header: Packet Len 44, Key-ID 45, Auth Data Len 64, SeqNo 1339429785, MBZ 0, MBZ 0 - AFI IPv4, 10.70.178.0/24, tag 0x0000, metric: 1, next-hop: self - Auth trailer: - 0x0000: ad5a 5d8a a1a8 b023 1ec3 5c1c ba6a 45fb - 0x0010: bee1 5584 6b1c 724d b1b7 f02e 7365 f038 - 0x0020: 7558 0914 6762 00d1 a92f d499 5da2 43ad - 0x0030: 202c 7a9b 8065 49ad 260b 2142 0f8d d83f diff --git a/tests/ripv2_auth.pcap b/tests/ripv2_auth.pcap deleted file mode 100644 index 57b5a41..0000000 Binary files a/tests/ripv2_auth.pcap and /dev/null differ diff --git a/tests/rpl-14-dao.pcap b/tests/rpl-14-dao.pcap deleted file mode 100644 index 9a164e4..0000000 Binary files a/tests/rpl-14-dao.pcap and /dev/null differ diff --git a/tests/rpl-14-daovvv.out b/tests/rpl-14-daovvv.out deleted file mode 100644 index 7e4b8a5..0000000 --- a/tests/rpl-14-daovvv.out +++ /dev/null @@ -1 +0,0 @@ -IP6 (hlim 64, next-header ICMPv6 (58) payload length: 24) fe80::216:3eff:fe11:3424 > ff02::1: [icmp6 sum ok] ICMP6, RPL, (CLR)Destination Advertisement Object [dagid:7061:6e64:6f72:6120:6973:2066:756e:a6c,seq:1,instance:1,Dagid,40] diff --git a/tests/rpl-19-pickdag.out b/tests/rpl-19-pickdag.out deleted file mode 100644 index d3c41ee..0000000 --- a/tests/rpl-19-pickdag.out +++ /dev/null @@ -1 +0,0 @@ -IP6 (hlim 64, next-header ICMPv6 (58) payload length: 56) fe80::216:3eff:fe11:3424 > fe80::216:3eff:fe11:3424: [icmp6 sum ok] ICMP6, RPL, (CLR)Destination Advertisement Object [dagid:5431::,seq:10,instance:42,Dagid,40] opt:rpltarget len:25 opt:pad0 opt:pad0 opt:pad0 opt:pad0 opt:pad0 opt:pad0 opt:pad0 diff --git a/tests/rpl-19-pickdag.pcap b/tests/rpl-19-pickdag.pcap deleted file mode 100644 index 3eca6c9..0000000 Binary files a/tests/rpl-19-pickdag.pcap and /dev/null differ diff --git a/tests/rpl-19-pickdagvvv.out b/tests/rpl-19-pickdagvvv.out deleted file mode 100644 index deee033..0000000 --- a/tests/rpl-19-pickdagvvv.out +++ /dev/null @@ -1 +0,0 @@ -IP6 (hlim 64, next-header ICMPv6 (58) payload length: 56) fe80::216:3eff:fe11:3424 > fe80::216:3eff:fe11:3424: [icmp6 sum ok] ICMP6, RPL, (CLR)Destination Advertisement Object [dagid:5431::,seq:10,instance:42,Dagid,40] opt:rpltarget len:25 0x0000: 0080 2001 0db8 0001 0000 0216 3eff fe11 0x0010: 3424 0000 0000 00 opt:pad0 opt:pad0 opt:pad0 opt:pad0 opt:pad0 opt:pad0 opt:pad0 diff --git a/tests/rpl-26-senddaoack.pcap b/tests/rpl-26-senddaoack.pcap deleted file mode 100644 index fd397a4..0000000 Binary files a/tests/rpl-26-senddaoack.pcap and /dev/null differ diff --git a/tests/rpl-26-senddaovv.out b/tests/rpl-26-senddaovv.out deleted file mode 100644 index 1b642bb..0000000 --- a/tests/rpl-26-senddaovv.out +++ /dev/null @@ -1 +0,0 @@ -IP6 (hlim 64, next-header ICMPv6 (58) payload length: 24) fe80::216:3eff:fe11:3424 > ff02::1: [icmp6 sum ok] ICMP6, RPL, (CLR)Destination Advertisement Object Ack [dagid:7468:6973:6973:6d79:6469:6365:6461:6732,seq:11,instance:43,status:0] diff --git a/tests/rpvst-v.out b/tests/rpvst-v.out deleted file mode 100644 index c55c1eb..0000000 --- a/tests/rpvst-v.out +++ /dev/null @@ -1,68 +0,0 @@ -DTPv1, length 38 - Domain TLV (0x0001) TLV, length 10, cisco - Status TLV (0x0002) TLV, length 5, 0x81 - DTP type TLV (0x0003) TLV, length 5, 0xa5 - Neighbor TLV (0x0004) TLV, length 10, 00:1f:6d:96:ec:04 -DTPv1, length 38 - Domain TLV (0x0001) TLV, length 10, cisco - Status TLV (0x0002) TLV, length 5, 0x81 - DTP type TLV (0x0003) TLV, length 5, 0xa5 - Neighbor TLV (0x0004) TLV, length 10, 00:1f:6d:96:ec:04 -STP 802.1w, Rapid STP, Flags [Proposal], bridge-id 8001.00:1f:6d:96:ec:00.8004, length 42 - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - root-id 8001.00:1f:6d:96:ec:00, root-pathcost 0, port-role Designated -STP 802.1w, Rapid STP, Flags [Proposal], bridge-id 8001.00:1f:6d:96:ec:00.8004, length 43 - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - root-id 8001.00:1f:6d:96:ec:00, root-pathcost 0, port-role Designated -STP 802.1w, Rapid STP, Flags [Proposal], bridge-id 8005.00:1f:6d:96:ec:00.8004, length 42 - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - root-id 8005.00:1f:6d:96:ec:00, root-pathcost 0, port-role Designated -STP 802.1w, Rapid STP, Flags [Proposal], bridge-id 8001.00:1f:6d:96:ec:00.8004, length 42 - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - root-id 8001.00:1f:6d:96:ec:00, root-pathcost 0, port-role Designated -STP 802.1w, Rapid STP, Flags [Proposal], bridge-id 8001.00:1f:6d:96:ec:00.8004, length 43 - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - root-id 8001.00:1f:6d:96:ec:00, root-pathcost 0, port-role Designated -STP 802.1w, Rapid STP, Flags [Proposal], bridge-id 8005.00:1f:6d:96:ec:00.8004, length 42 - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - root-id 8005.00:1f:6d:96:ec:00, root-pathcost 0, port-role Designated -STP 802.1w, Rapid STP, Flags [Proposal], bridge-id 8001.00:1f:6d:96:ec:00.8004, length 42 - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - root-id 8001.00:1f:6d:96:ec:00, root-pathcost 0, port-role Designated -STP 802.1w, Rapid STP, Flags [Proposal], bridge-id 8001.00:1f:6d:96:ec:00.8004, length 43 - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - root-id 8001.00:1f:6d:96:ec:00, root-pathcost 0, port-role Designated -STP 802.1w, Rapid STP, Flags [Proposal], bridge-id 8005.00:1f:6d:96:ec:00.8004, length 42 - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - root-id 8005.00:1f:6d:96:ec:00, root-pathcost 0, port-role Designated -VTPv1, Message Summary advertisement (0x01), length 77 - Domain name: cisco, Followers: 0 - Config Rev 2, Updater 155.1.37.7, Timestamp 0x39333033 0x30313030 0x30393030, MD5 digest: fb393cf67014e50aa79c7c5b193f6fe1 -STP 802.1w, Rapid STP, Flags [Proposal], bridge-id 8001.00:1f:6d:96:ec:00.8004, length 42 - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - root-id 8001.00:1f:6d:96:ec:00, root-pathcost 0, port-role Designated -STP 802.1w, Rapid STP, Flags [Proposal], bridge-id 8001.00:1f:6d:96:ec:00.8004, length 43 - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - root-id 8001.00:1f:6d:96:ec:00, root-pathcost 0, port-role Designated -STP 802.1w, Rapid STP, Flags [Proposal], bridge-id 8005.00:1f:6d:96:ec:00.8004, length 42 - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - root-id 8005.00:1f:6d:96:ec:00, root-pathcost 0, port-role Designated -STP 802.1w, Rapid STP, Flags [Proposal], bridge-id 8001.00:1f:6d:96:ec:00.8004, length 42 - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - root-id 8001.00:1f:6d:96:ec:00, root-pathcost 0, port-role Designated -STP 802.1w, Rapid STP, Flags [Proposal], bridge-id 8001.00:1f:6d:96:ec:00.8004, length 43 - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - root-id 8001.00:1f:6d:96:ec:00, root-pathcost 0, port-role Designated -STP 802.1w, Rapid STP, Flags [Proposal], bridge-id 8005.00:1f:6d:96:ec:00.8004, length 42 - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - root-id 8005.00:1f:6d:96:ec:00, root-pathcost 0, port-role Designated -STP 802.1w, Rapid STP, Flags [Proposal], bridge-id 8001.00:1f:6d:96:ec:00.8004, length 42 - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - root-id 8001.00:1f:6d:96:ec:00, root-pathcost 0, port-role Designated -STP 802.1w, Rapid STP, Flags [Proposal], bridge-id 8001.00:1f:6d:96:ec:00.8004, length 43 - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - root-id 8001.00:1f:6d:96:ec:00, root-pathcost 0, port-role Designated -STP 802.1w, Rapid STP, Flags [Proposal], bridge-id 8005.00:1f:6d:96:ec:00.8004, length 42 - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - root-id 8005.00:1f:6d:96:ec:00, root-pathcost 0, port-role Designated -Loopback, skipCount 0, Reply, receipt number 0, data (40 octets) diff --git a/tests/rpvstp-trunk-native-vid5.pcap b/tests/rpvstp-trunk-native-vid5.pcap deleted file mode 100644 index 4c9908b..0000000 Binary files a/tests/rpvstp-trunk-native-vid5.pcap and /dev/null differ diff --git a/tests/rstp-v.out b/tests/rstp-v.out deleted file mode 100644 index 318b450..0000000 --- a/tests/rstp-v.out +++ /dev/null @@ -1,90 +0,0 @@ -STP 802.1w, Rapid STP, Flags [Proposal], bridge-id 8001.00:19:06:ea:b8:80.800c, length 43 - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - root-id 8001.00:19:06:ea:b8:80, root-pathcost 0, port-role Designated -STP 802.1w, Rapid STP, Flags [Proposal], bridge-id 8001.00:19:06:ea:b8:80.800c, length 43 - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - root-id 8001.00:19:06:ea:b8:80, root-pathcost 0, port-role Designated -STP 802.1w, Rapid STP, Flags [Proposal], bridge-id 8001.00:19:06:ea:b8:80.800c, length 43 - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - root-id 8001.00:19:06:ea:b8:80, root-pathcost 0, port-role Designated -STP 802.1w, Rapid STP, Flags [Proposal], bridge-id 8001.00:19:06:ea:b8:80.800c, length 43 - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - root-id 8001.00:19:06:ea:b8:80, root-pathcost 0, port-role Designated -STP 802.1w, Rapid STP, Flags [Proposal], bridge-id 8001.00:19:06:ea:b8:80.800c, length 43 - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - root-id 8001.00:19:06:ea:b8:80, root-pathcost 0, port-role Designated -STP 802.1w, Rapid STP, Flags [Proposal], bridge-id 8001.00:19:06:ea:b8:80.800c, length 43 - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - root-id 8001.00:19:06:ea:b8:80, root-pathcost 0, port-role Designated -STP 802.1w, Rapid STP, Flags [Proposal], bridge-id 8001.00:19:06:ea:b8:80.800c, length 43 - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - root-id 8001.00:19:06:ea:b8:80, root-pathcost 0, port-role Designated -STP 802.1w, Rapid STP, Flags [Proposal], bridge-id 8001.00:19:06:ea:b8:80.800c, length 43 - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - root-id 8001.00:19:06:ea:b8:80, root-pathcost 0, port-role Designated -STP 802.1w, Rapid STP, Flags [Proposal, Learn], bridge-id 8001.00:19:06:ea:b8:80.800c, length 43 - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - root-id 8001.00:19:06:ea:b8:80, root-pathcost 0, port-role Designated -STP 802.1w, Rapid STP, Flags [Proposal, Learn], bridge-id 8001.00:19:06:ea:b8:80.800c, length 43 - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - root-id 8001.00:19:06:ea:b8:80, root-pathcost 0, port-role Designated -STP 802.1w, Rapid STP, Flags [Proposal, Learn], bridge-id 8001.00:19:06:ea:b8:80.800c, length 43 - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - root-id 8001.00:19:06:ea:b8:80, root-pathcost 0, port-role Designated -STP 802.1w, Rapid STP, Flags [Proposal, Learn], bridge-id 8001.00:19:06:ea:b8:80.800c, length 43 - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - root-id 8001.00:19:06:ea:b8:80, root-pathcost 0, port-role Designated -STP 802.1w, Rapid STP, Flags [Proposal, Learn], bridge-id 8001.00:19:06:ea:b8:80.800c, length 43 - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - root-id 8001.00:19:06:ea:b8:80, root-pathcost 0, port-role Designated -STP 802.1w, Rapid STP, Flags [Proposal, Learn], bridge-id 8001.00:19:06:ea:b8:80.800c, length 43 - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - root-id 8001.00:19:06:ea:b8:80, root-pathcost 0, port-role Designated -STP 802.1w, Rapid STP, Flags [Proposal, Learn], bridge-id 8001.00:19:06:ea:b8:80.800c, length 43 - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - root-id 8001.00:19:06:ea:b8:80, root-pathcost 0, port-role Designated -STP 802.1w, Rapid STP, Flags [Topology change, Learn, Forward], bridge-id 8001.00:19:06:ea:b8:80.800c, length 43 - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - root-id 8001.00:19:06:ea:b8:80, root-pathcost 0, port-role Designated -STP 802.1w, Rapid STP, Flags [Topology change, Learn, Forward], bridge-id 8001.00:19:06:ea:b8:80.800c, length 43 - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - root-id 8001.00:19:06:ea:b8:80, root-pathcost 0, port-role Designated -STP 802.1w, Rapid STP, Flags [Topology change, Learn, Forward], bridge-id 8001.00:19:06:ea:b8:80.800c, length 43 - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - root-id 8001.00:19:06:ea:b8:80, root-pathcost 0, port-role Designated -STP 802.1w, Rapid STP, Flags [Learn, Forward], bridge-id 8001.00:19:06:ea:b8:80.800c, length 43 - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - root-id 8001.00:19:06:ea:b8:80, root-pathcost 0, port-role Designated -STP 802.1w, Rapid STP, Flags [Learn, Forward], bridge-id 8001.00:19:06:ea:b8:80.800c, length 43 - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - root-id 8001.00:19:06:ea:b8:80, root-pathcost 0, port-role Designated -STP 802.1w, Rapid STP, Flags [Learn, Forward], bridge-id 8001.00:19:06:ea:b8:80.800c, length 43 - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - root-id 8001.00:19:06:ea:b8:80, root-pathcost 0, port-role Designated -STP 802.1w, Rapid STP, Flags [Learn, Forward], bridge-id 8001.00:19:06:ea:b8:80.800c, length 43 - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - root-id 8001.00:19:06:ea:b8:80, root-pathcost 0, port-role Designated -STP 802.1w, Rapid STP, Flags [Learn, Forward], bridge-id 8001.00:19:06:ea:b8:80.800c, length 43 - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - root-id 8001.00:19:06:ea:b8:80, root-pathcost 0, port-role Designated -STP 802.1w, Rapid STP, Flags [Learn, Forward], bridge-id 8001.00:19:06:ea:b8:80.800c, length 43 - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - root-id 8001.00:19:06:ea:b8:80, root-pathcost 0, port-role Designated -STP 802.1w, Rapid STP, Flags [Learn, Forward], bridge-id 8001.00:19:06:ea:b8:80.800c, length 43 - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - root-id 8001.00:19:06:ea:b8:80, root-pathcost 0, port-role Designated -STP 802.1w, Rapid STP, Flags [Learn, Forward], bridge-id 8001.00:19:06:ea:b8:80.800c, length 43 - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - root-id 8001.00:19:06:ea:b8:80, root-pathcost 0, port-role Designated -STP 802.1w, Rapid STP, Flags [Learn, Forward], bridge-id 8001.00:19:06:ea:b8:80.800c, length 43 - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - root-id 8001.00:19:06:ea:b8:80, root-pathcost 0, port-role Designated -STP 802.1w, Rapid STP, Flags [Learn, Forward], bridge-id 8001.00:19:06:ea:b8:80.800c, length 43 - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - root-id 8001.00:19:06:ea:b8:80, root-pathcost 0, port-role Designated -STP 802.1w, Rapid STP, Flags [Learn, Forward], bridge-id 8001.00:19:06:ea:b8:80.800c, length 43 - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - root-id 8001.00:19:06:ea:b8:80, root-pathcost 0, port-role Designated -STP 802.1w, Rapid STP, Flags [Learn, Forward], bridge-id 8001.00:19:06:ea:b8:80.800c, length 43 - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - root-id 8001.00:19:06:ea:b8:80, root-pathcost 0, port-role Designated diff --git a/tests/rsvp-infinite-loop.pcap b/tests/rsvp-infinite-loop.pcap deleted file mode 100644 index dc03dac..0000000 Binary files a/tests/rsvp-infinite-loop.pcap and /dev/null differ diff --git a/tests/rsvp_infloop-v.out b/tests/rsvp_infloop-v.out deleted file mode 100644 index 9084e15..0000000 --- a/tests/rsvp_infloop-v.out +++ /dev/null @@ -1,35 +0,0 @@ -IP (tos 0x0, ttl 128, id 0, offset 0, flags [DF], proto RSVP (46), length 40) - 208.208.77.43 > 192.168.1.1: - RSVPv1 Hello Message (20), Flags: [none], length: 20, ttl: 64, checksum: 0x98ce - ERO Object (20) Flags: [reject if unknown], Class-Type: IPv4 (1), length: 8 - Subobject Type: Label, length 0 - ERROR: zero length ERO subtype - ERROR: object header too short 0 < 4 -IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto RSVP (46), length 40) - 199.106.167.61 > 192.168.1.1: - RSVPv1 Hello Message (20), Flags: [none], length: 20, ttl: 64, checksum: 0x98ce - ERO Object (20) Flags: [reject if unknown], Class-Type: IPv4 (1), length: 8 - Subobject Type: Label, length 0 - ERROR: zero length ERO subtype - ERROR: object header too short 0 < 4 -IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto RSVP (46), length 40) - 179.9.22.16 > 192.168.1.1: - RSVPv1 Hello Message (20), Flags: [none], length: 20, ttl: 128, checksum: 0x58ce - ERO Object (20) Flags: [reject if unknown], Class-Type: IPv4 (1), length: 8 - Subobject Type: Label, length 0 - ERROR: zero length ERO subtype - ERROR: object header too short 0 < 4 -IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto RSVP (46), length 40) - 99.107.153.33 > 192.168.1.1: - RSVPv1 Hello Message (20), Flags: [none], length: 20, ttl: 128, checksum: 0x58ce - ERO Object (20) Flags: [reject if unknown], Class-Type: IPv4 (1), length: 8 - Subobject Type: Label, length 0 - ERROR: zero length ERO subtype - ERROR: object header too short 0 < 4 -IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto RSVP (46), length 40) - 188.46.23.116 > 192.168.1.1: - RSVPv1 Hello Message (20), Flags: [none], length: 20, ttl: 128, checksum: 0x58ce - ERO Object (20) Flags: [reject if unknown], Class-Type: IPv4 (1), length: 8 - Subobject Type: Label, length 0 - ERROR: zero length ERO subtype - ERROR: object header too short 0 < 4 diff --git a/tests/sflow_multiple_counter_30_pdus-nv.out b/tests/sflow_multiple_counter_30_pdus-nv.out deleted file mode 100644 index 45a2d90..0000000 --- a/tests/sflow_multiple_counter_30_pdus-nv.out +++ /dev/null @@ -1,30 +0,0 @@ -IP 15.184.1.76.40948 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.8.4, agent-id 2, length 1288 -IP 15.184.1.195.4942 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.195, agent-id 1, length 1288 -IP 15.184.1.195.4942 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.195, agent-id 1, length 1288 -IP 15.184.1.195.4942 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.195, agent-id 1, length 1288 -IP 15.184.1.195.4942 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.195, agent-id 1, length 1288 -IP 15.184.1.195.4942 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.195, agent-id 1, length 1108 -IP 15.184.1.76.40948 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.8.4, agent-id 2, length 208 -IP 15.184.1.194.3099 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.194, agent-id 1, length 1288 -IP 15.184.1.194.3099 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.194, agent-id 1, length 1288 -IP 15.184.1.194.3099 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.194, agent-id 1, length 1288 -IP 15.184.1.194.3099 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.194, agent-id 1, length 1288 -IP 15.184.4.165.49408 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.4.165, agent-id 100, length 460 -IP 168.87.240.2.40000 > 15.184.3.9.6343: sFlow version 327681 packet not supported -IP 15.184.3.1.41024 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.129, agent-id 2, length 1288 -IP 15.184.3.1.41024 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.129, agent-id 2, length 568 -IP 168.87.240.3.50340 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.129, agent-id 6, length 928 -IP 15.184.1.194.3099 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.194, agent-id 1, length 1108 -IP 15.184.13.248.50229 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.13.52, agent-id 100, length 424 -IP 168.87.240.1.40000 > 15.184.3.9.6343: sFlow version 327681 packet not supported -IP 168.87.240.1.40000 > 15.184.3.9.6343: sFlow version 327682 packet not supported -IP 168.87.240.1.40000 > 15.184.3.9.6343: sFlow version 327681 packet not supported -IP 168.87.240.2.40000 > 15.184.3.9.6343: sFlow version 327682 packet not supported -IP 168.87.240.3.50340 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.129, agent-id 6, length 568 -IP 15.184.1.195.4942 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.195, agent-id 1, length 1288 -IP 15.184.1.195.4942 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.195, agent-id 1, length 1288 -IP 15.184.1.195.4942 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.195, agent-id 1, length 1288 -IP 15.184.1.195.4942 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.195, agent-id 1, length 1288 -IP 15.184.1.195.4942 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.195, agent-id 1, length 1108 -IP 15.184.1.194.3099 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.194, agent-id 1, length 1288 -IP 15.184.1.194.3099 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.194, agent-id 1, length 1288 diff --git a/tests/sflow_multiple_counter_30_pdus.out b/tests/sflow_multiple_counter_30_pdus.out deleted file mode 100644 index 1b1938e..0000000 --- a/tests/sflow_multiple_counter_30_pdus.out +++ /dev/null @@ -1,1828 +0,0 @@ -IP (tos 0x0, ttl 253, id 23654, offset 0, flags [none], proto UDP (17), length 1316) - 15.184.1.76.40948 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.8.4, agent-id 2, seqnum 204720, uptime 2612972293, samples 7, length 1288 - expanded counter sample (4), length 172, seqnum 87096, type 0, idx 55, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 55, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 820721, unicast pkts 9601, multicast pkts 0, broadcast pkts 1302, discards 0 - In errors 0, unknown protos 0 - Out octets 178785248, unicast pkts 9736, multicast pkts 132958, broadcast pkts 2213534, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 87096, type 0, idx 56, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 56, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 156084746, unicast pkts 473593, multicast pkts 0, broadcast pkts 1862745, discards 0 - In errors 0, unknown protos 0 - Out octets 59635889, unicast pkts 8834, multicast pkts 132958, broadcast pkts 352092, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 87099, type 0, idx 57, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 57, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 3051593057, unicast pkts 52919488, multicast pkts 1491, broadcast pkts 956, discards 0 - In errors 0, unknown protos 0 - Out octets 1525716840, unicast pkts 30013667, multicast pkts 131467, broadcast pkts 2213880, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 87096, type 0, idx 60, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 60, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 0, unicast pkts 0, multicast pkts 0, broadcast pkts 0, discards 0 - In errors 0, unknown protos 0 - Out octets 178404732, unicast pkts 3035, multicast pkts 132958, broadcast pkts 2214836, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 87016, type 0, idx 61, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 61, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 0, unicast pkts 0, multicast pkts 0, broadcast pkts 0, discards 0 - In errors 0, unknown protos 0 - Out octets 178368955, unicast pkts 3031, multicast pkts 132840, broadcast pkts 2214791, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 87096, type 0, idx 62, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 62, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 0, unicast pkts 0, multicast pkts 0, broadcast pkts 0, discards 0 - In errors 0, unknown protos 0 - Out octets 178404650, unicast pkts 3034, multicast pkts 132958, broadcast pkts 2214836, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 87096, type 0, idx 63, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 63, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 0, unicast pkts 0, multicast pkts 0, broadcast pkts 0, discards 0 - In errors 0, unknown protos 0 - Out octets 178404732, unicast pkts 3035, multicast pkts 132958, broadcast pkts 2214836, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 -IP (tos 0x0, ttl 253, id 12208, offset 0, flags [none], proto UDP (17), length 1316) - 15.184.1.195.4942 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.195, agent-id 1, seqnum 10499682, uptime 12973660, samples 7, length 1288 - expanded counter sample (4), length 172, seqnum 2007195, type 0, idx 1, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 1, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 2460750, unicast pkts 22544, multicast pkts 5, broadcast pkts 6408, discards 0 - In errors 0, unknown protos 0 - Out octets 3991394888, unicast pkts 131978, multicast pkts 2198965, broadcast pkts 48358863, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2006745, type 0, idx 2, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 2, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 122196260, unicast pkts 82823825, multicast pkts 710, broadcast pkts 38540, discards 0 - In errors 2, unknown protos 0 - Out octets 3744715166, unicast pkts 93942161, multicast pkts 2218252, broadcast pkts 48317917, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 2, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2007118, type 0, idx 3, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 3, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 87175881, unicast pkts 11173387, multicast pkts 1312, broadcast pkts 7310, discards 0 - In errors 0, unknown protos 0 - Out octets 2575091711, unicast pkts 8663056, multicast pkts 1949260, broadcast pkts 8701202, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2007648, type 0, idx 4, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 4, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 3013636604, unicast pkts 424917316, multicast pkts 1216, broadcast pkts 196654, discards 0 - In errors 0, unknown protos 0 - Out octets 584566587, unicast pkts 294167676, multicast pkts 1948957, broadcast pkts 8512276, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 1832884, type 0, idx 5, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 5, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 3835856598, unicast pkts 6812799, multicast pkts 1145, broadcast pkts 705277, discards 0 - In errors 0, unknown protos 0 - Out octets 2182764482, unicast pkts 8284848, multicast pkts 2738770, broadcast pkts 7987023, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2007139, type 0, idx 6, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 6, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 21722, unicast pkts 0, multicast pkts 12, broadcast pkts 37, discards 0 - In errors 0, unknown protos 0 - Out octets 1874046310, unicast pkts 98496, multicast pkts 1955062, broadcast pkts 20311831, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2006986, type 0, idx 7, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 7, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 3474926128, unicast pkts 10088201, multicast pkts 1463, broadcast pkts 14105, discards 0 - In errors 0, unknown protos 0 - Out octets 831378523, unicast pkts 12805926, multicast pkts 1954494, broadcast pkts 20293366, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 -IP (tos 0x0, ttl 253, id 12209, offset 0, flags [none], proto UDP (17), length 1316) - 15.184.1.195.4942 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.195, agent-id 1, seqnum 10499683, uptime 12973661, samples 7, length 1288 - expanded counter sample (4), length 172, seqnum 2007114, type 0, idx 8, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 8, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 3858988244, unicast pkts 13191097, multicast pkts 1215, broadcast pkts 24593, discards 0 - In errors 0, unknown protos 0 - Out octets 2559231968, unicast pkts 16126546, multicast pkts 1954848, broadcast pkts 20284429, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2007001, type 0, idx 9, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 9, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 3386316332, unicast pkts 14360061, multicast pkts 1244, broadcast pkts 16485, discards 0 - In errors 0, unknown protos 0 - Out octets 1675798901, unicast pkts 15790519, multicast pkts 1954451, broadcast pkts 20291225, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2005309, type 0, idx 10, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 10, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 1558898282, unicast pkts 162603641, multicast pkts 1331, broadcast pkts 188407, discards 0 - In errors 0, unknown protos 0 - Out octets 3568458580, unicast pkts 162582480, multicast pkts 1953553, broadcast pkts 20106780, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2007256, type 0, idx 11, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 11, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 125808339, unicast pkts 691735, multicast pkts 2539, broadcast pkts 22184, discards 0 - In errors 0, unknown protos 0 - Out octets 1249750181, unicast pkts 33020559, multicast pkts 2196657, broadcast pkts 48342104, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2007178, type 0, idx 12, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 12, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 45949249, unicast pkts 205456, multicast pkts 1743, broadcast pkts 8308, discards 0 - In errors 0, unknown protos 0 - Out octets 4019313234, unicast pkts 210496, multicast pkts 2197587, broadcast pkts 48353561, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2007155, type 0, idx 13, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 13, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 32111027, unicast pkts 143922, multicast pkts 1193, broadcast pkts 5276, discards 0 - In errors 0, unknown protos 0 - Out octets 4050797426, unicast pkts 198665, multicast pkts 2197850, broadcast pkts 48353779, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2006875, type 0, idx 14, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 14, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 19576, unicast pkts 19, multicast pkts 5, broadcast pkts 30, discards 0 - In errors 0, unknown protos 0 - Out octets 3990801228, unicast pkts 107683, multicast pkts 2199048, broadcast pkts 48364452, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 -IP (tos 0x0, ttl 253, id 12210, offset 0, flags [none], proto UDP (17), length 1316) - 15.184.1.195.4942 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.195, agent-id 1, seqnum 10499684, uptime 12973663, samples 7, length 1288 - expanded counter sample (4), length 172, seqnum 2007174, type 0, idx 15, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 15, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 96700793, unicast pkts 453020, multicast pkts 2568, broadcast pkts 22804, discards 0 - In errors 0, unknown protos 0 - Out octets 4042743345, unicast pkts 379591, multicast pkts 2196676, broadcast pkts 48338646, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2007085, type 0, idx 16, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 16, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 289703711, unicast pkts 1654844, multicast pkts 37302, broadcast pkts 22784, discards 0 - In errors 0, unknown protos 0 - Out octets 4098637095, unicast pkts 801788, multicast pkts 2166613, broadcast pkts 48320960, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2007171, type 0, idx 17, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 17, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 45204461, unicast pkts 194096, multicast pkts 1700, broadcast pkts 8788, discards 0 - In errors 0, unknown protos 0 - Out octets 4014792810, unicast pkts 198133, multicast pkts 2197652, broadcast pkts 48351768, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2007169, type 0, idx 18, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 18, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 95210366, unicast pkts 443561, multicast pkts 2169, broadcast pkts 24997, discards 0 - In errors 0, unknown protos 0 - Out octets 4035379503, unicast pkts 332327, multicast pkts 2196767, broadcast pkts 48336027, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2007264, type 0, idx 19, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 19, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 1379521296, unicast pkts 50010620, multicast pkts 1046, broadcast pkts 48921, discards 0 - In errors 0, unknown protos 0 - Out octets 435976335, unicast pkts 57993600, multicast pkts 2197958, broadcast pkts 48315375, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2007257, type 0, idx 20, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 20, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 312017292, unicast pkts 47238597, multicast pkts 1476, broadcast pkts 23377, discards 0 - In errors 0, unknown protos 0 - Out octets 3242136708, unicast pkts 57532634, multicast pkts 2198069, broadcast pkts 48339981, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2009604, type 0, idx 21, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 21, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 4127607826, unicast pkts 29906144, multicast pkts 1233, broadcast pkts 69575, discards 0 - In errors 0, unknown protos 0 - Out octets 2091792747, unicast pkts 3024931093, multicast pkts 2198065, broadcast pkts 48294332, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 -IP (tos 0x0, ttl 253, id 12211, offset 0, flags [none], proto UDP (17), length 1316) - 15.184.1.195.4942 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.195, agent-id 1, seqnum 10499685, uptime 12973664, samples 7, length 1288 - expanded counter sample (4), length 172, seqnum 2007104, type 0, idx 22, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 22, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 124432239, unicast pkts 511115, multicast pkts 21969, broadcast pkts 120004, discards 0 - In errors 0, unknown protos 0 - Out octets 3066166092, unicast pkts 2595939, multicast pkts 2177143, broadcast pkts 48244891, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2008568, type 0, idx 23, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 23, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 142412715, unicast pkts 4067695849, multicast pkts 1301, broadcast pkts 59350, discards 0 - In errors 0, unknown protos 0 - Out octets 3335716564, unicast pkts 2083658988, multicast pkts 2198160, broadcast pkts 48304443, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2009649, type 0, idx 24, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 24, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 1376243919, unicast pkts 42736656, multicast pkts 1161, broadcast pkts 37177, discards 0 - In errors 0, unknown protos 0 - Out octets 3949008841, unicast pkts 3045234063, multicast pkts 2197974, broadcast pkts 48326808, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2009621, type 0, idx 25, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 25, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 1314601210, unicast pkts 4258058414, multicast pkts 1154, broadcast pkts 42425, discards 0 - In errors 0, unknown protos 0 - Out octets 2836953588, unicast pkts 2986750860, multicast pkts 2197982, broadcast pkts 48321714, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2007193, type 0, idx 26, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 26, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 2022052468, unicast pkts 13527038, multicast pkts 933, broadcast pkts 57921, discards 0 - In errors 0, unknown protos 0 - Out octets 620629707, unicast pkts 19469425, multicast pkts 2198358, broadcast pkts 48305869, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2007253, type 0, idx 27, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 27, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 3262458931, unicast pkts 47684835, multicast pkts 1039, broadcast pkts 5299, discards 0 - In errors 3, unknown protos 0 - Out octets 3900626480, unicast pkts 54120142, multicast pkts 2198706, broadcast pkts 48356894, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 2, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2005148, type 0, idx 28, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 28, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 259120552, unicast pkts 1107924, multicast pkts 198, broadcast pkts 3429, discards 0 - In errors 2, unknown protos 0 - Out octets 653805810, unicast pkts 4189777, multicast pkts 2198871, broadcast pkts 48346830, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 2, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 -IP (tos 0x0, ttl 253, id 12212, offset 0, flags [none], proto UDP (17), length 1136) - 15.184.1.195.4942 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.195, agent-id 1, seqnum 10499686, uptime 12973800, samples 6, length 1108 - expanded counter sample (4), length 172, seqnum 2007268, type 0, idx 29, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 29, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 1267844166, unicast pkts 49781127, multicast pkts 1368, broadcast pkts 40480, discards 0 - In errors 0, unknown protos 0 - Out octets 321243842, unicast pkts 57718818, multicast pkts 2197767, broadcast pkts 48323189, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2009633, type 0, idx 30, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 30, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 1960827113, unicast pkts 4258067543, multicast pkts 1249, broadcast pkts 60280, discards 0 - In errors 0, unknown protos 0 - Out octets 3144893898, unicast pkts 3032873251, multicast pkts 2198370, broadcast pkts 48301571, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2017264, type 0, idx 50, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 50, iftype 117, ifspeed 10000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 4161963595, unicast pkts 3263163886, multicast pkts 1151176, broadcast pkts 287880328, discards 0 - In errors 0, unknown protos 0 - Out octets 296840057, unicast pkts 1684325909, multicast pkts 1126235, broadcast pkts 1405132663, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2017179, type 0, idx 51, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 51, iftype 117, ifspeed 10000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 2214905605, unicast pkts 2466386895, multicast pkts 5276601, broadcast pkts 1225128676, discards 0 - In errors 0, unknown protos 0 - Out octets 3025945518, unicast pkts 2183065991, multicast pkts 899419, broadcast pkts 2308600565, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 1220659, type 0, idx 52, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 52, iftype 117, ifspeed 10000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 3618900052, unicast pkts 334487763, multicast pkts 651947, broadcast pkts 3712423535, discards 0 - In errors 1, unknown protos 0 - Out octets 697413100, unicast pkts 537120139, multicast pkts 163886, broadcast pkts 4083094099, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 1, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 1 - expanded counter sample (4), length 172, seqnum 1220562, type 0, idx 53, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 53, iftype 117, ifspeed 10000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 851207797, unicast pkts 325440428, multicast pkts 164171, broadcast pkts 21946044, discards 0 - In errors 0, unknown protos 0 - Out octets 1855403849, unicast pkts 517660679, multicast pkts 163669, broadcast pkts 21301, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 -IP (tos 0x0, ttl 253, id 23656, offset 0, flags [none], proto UDP (17), length 236) - 15.184.1.76.40948 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.8.4, agent-id 2, seqnum 204721, uptime 2612972594, samples 1, length 208 - expanded counter sample (4), length 172, seqnum 87243, type 0, idx 105, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 105, iftype 117, ifspeed 10000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 1063772406, unicast pkts 81120, multicast pkts 174318, broadcast pkts 3847558651, discards 0 - In errors 6, unknown protos 0 - Out octets 3728106697, unicast pkts 53832149, multicast pkts 218554, broadcast pkts 2160868, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 6, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 4 -IP (tos 0x0, ttl 253, id 27097, offset 0, flags [none], proto UDP (17), length 1316) - 15.184.1.194.3099 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.194, agent-id 1, seqnum 10354082, uptime 15617401, samples 7, length 1288 - expanded counter sample (4), length 172, seqnum 2007459, type 0, idx 1, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 1, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 398, unicast pkts 0, multicast pkts 5, broadcast pkts 0, discards 0 - In errors 0, unknown protos 0 - Out octets 3980656605, unicast pkts 65082, multicast pkts 2199480, broadcast pkts 48372199, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2007455, type 0, idx 2, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 2, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 1444442513, unicast pkts 69372226, multicast pkts 1207, broadcast pkts 31114, discards 0 - In errors 0, unknown protos 0 - Out octets 1845546441, unicast pkts 41823689, multicast pkts 2201740, broadcast pkts 48335077, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2007396, type 0, idx 3, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 3, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 200763454, unicast pkts 891785, multicast pkts 982, broadcast pkts 13320, discards 0 - In errors 1, unknown protos 0 - Out octets 3317395016, unicast pkts 5225674, multicast pkts 1949791, broadcast pkts 8711770, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 1, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2007402, type 0, idx 4, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 4, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 165801154, unicast pkts 662297, multicast pkts 491, broadcast pkts 15752, discards 0 - In errors 0, unknown protos 0 - Out octets 2164450538, unicast pkts 1115261, multicast pkts 1949901, broadcast pkts 8709518, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 1993492, type 0, idx 5, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 5, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 198991268, unicast pkts 941829, multicast pkts 664, broadcast pkts 33726, discards 0 - In errors 1, unknown protos 0 - Out octets 4052534333, unicast pkts 2591418, multicast pkts 1994963, broadcast pkts 8691000, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 1, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 1, frames too long 0, mac receive errors 0, symbol errors 1 - expanded counter sample (4), length 172, seqnum 2007737, type 0, idx 6, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 6, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 561751280, unicast pkts 575605209, multicast pkts 1250, broadcast pkts 15322854, discards 0 - In errors 1, unknown protos 0 - Out octets 1513353683, unicast pkts 602598577, multicast pkts 1954404, broadcast pkts 4990177, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2008403, type 0, idx 7, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 7, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 3193665198, unicast pkts 642460773, multicast pkts 1401, broadcast pkts 219741, discards 0 - In errors 0, unknown protos 0 - Out octets 2913194238, unicast pkts 390983681, multicast pkts 1955407, broadcast pkts 20090610, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 -IP (tos 0x0, ttl 253, id 27098, offset 0, flags [none], proto UDP (17), length 1316) - 15.184.1.194.3099 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.194, agent-id 1, seqnum 10354083, uptime 15617403, samples 7, length 1288 - expanded counter sample (4), length 172, seqnum 2008394, type 0, idx 8, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 8, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 1089063112, unicast pkts 559652885, multicast pkts 634, broadcast pkts 224712, discards 0 - In errors 0, unknown protos 0 - Out octets 3489201031, unicast pkts 383200930, multicast pkts 1955795, broadcast pkts 20085985, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2008429, type 0, idx 9, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 9, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 2436646808, unicast pkts 568003495, multicast pkts 906, broadcast pkts 16545, discards 0 - In errors 0, unknown protos 0 - Out octets 1717246279, unicast pkts 389888234, multicast pkts 1955669, broadcast pkts 20294132, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2005878, type 0, idx 10, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 10, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 105616289, unicast pkts 531333, multicast pkts 768, broadcast pkts 9159, discards 0 - In errors 0, unknown protos 0 - Out octets 10387408, unicast pkts 2209569, multicast pkts 1954606, broadcast pkts 20288646, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2007661, type 0, idx 11, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 11, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 1801369357, unicast pkts 137590483, multicast pkts 2109, broadcast pkts 55528, discards 0 - In errors 0, unknown protos 0 - Out octets 1769140298, unicast pkts 113363667, multicast pkts 2197521, broadcast pkts 48315560, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2007552, type 0, idx 12, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 12, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 4201581256, unicast pkts 45842890, multicast pkts 1610, broadcast pkts 22730, discards 0 - In errors 0, unknown protos 0 - Out octets 1948082196, unicast pkts 53163690, multicast pkts 2198297, broadcast pkts 48348226, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2007540, type 0, idx 13, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 13, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 1019109063, unicast pkts 46613839, multicast pkts 1236, broadcast pkts 22226, discards 0 - In errors 0, unknown protos 0 - Out octets 2052469045, unicast pkts 53287225, multicast pkts 2198499, broadcast pkts 48348754, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2010424, type 0, idx 14, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 14, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 36138805, unicast pkts 2267783883, multicast pkts 298, broadcast pkts 38306126, discards 0 - In errors 2, unknown protos 0 - Out octets 614425293, unicast pkts 2014274284, multicast pkts 2199305, broadcast pkts 10065409, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 2, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 -IP (tos 0x0, ttl 253, id 27099, offset 0, flags [none], proto UDP (17), length 1316) - 15.184.1.194.3099 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.194, agent-id 1, seqnum 10354084, uptime 15617404, samples 7, length 1288 - expanded counter sample (4), length 172, seqnum 2009508, type 0, idx 15, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 15, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 601225935, unicast pkts 4276033652, multicast pkts 1612, broadcast pkts 34856, discards 0 - In errors 0, unknown protos 0 - Out octets 1981555755, unicast pkts 2886814164, multicast pkts 2198139, broadcast pkts 48336014, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2007691, type 0, idx 16, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 16, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 4196949353, unicast pkts 109362236, multicast pkts 10140, broadcast pkts 40757, discards 0 - In errors 0, unknown protos 0 - Out octets 703618451, unicast pkts 113710944, multicast pkts 2190477, broadcast pkts 48326386, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2007530, type 0, idx 17, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 17, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 4170852137, unicast pkts 45863536, multicast pkts 1559, broadcast pkts 27211, discards 0 - In errors 0, unknown protos 0 - Out octets 2026848065, unicast pkts 53131746, multicast pkts 2198420, broadcast pkts 48343547, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2009475, type 0, idx 18, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 18, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 125400617, unicast pkts 3953942566, multicast pkts 1121, broadcast pkts 35754, discards 0 - In errors 0, unknown protos 0 - Out octets 3010600832, unicast pkts 2658737621, multicast pkts 2198495, broadcast pkts 48334857, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2007417, type 0, idx 19, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 19, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 97068375, unicast pkts 444889, multicast pkts 1007, broadcast pkts 8350, discards 0 - In errors 0, unknown protos 0 - Out octets 4110456622, unicast pkts 336462, multicast pkts 2198059, broadcast pkts 48354968, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2007243, type 0, idx 20, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 20, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 85827864, unicast pkts 397199, multicast pkts 1855, broadcast pkts 9570, discards 0 - In errors 0, unknown protos 0 - Out octets 4029102009, unicast pkts 295961, multicast pkts 2196786, broadcast pkts 48315955, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2007206, type 0, idx 21, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 21, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 91053304, unicast pkts 438205, multicast pkts 1011, broadcast pkts 7940, discards 0 - In errors 0, unknown protos 0 - Out octets 4103297026, unicast pkts 317273, multicast pkts 2197586, broadcast pkts 48306440, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 -IP (tos 0x0, ttl 253, id 27100, offset 0, flags [none], proto UDP (17), length 1316) - 15.184.1.194.3099 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.194, agent-id 1, seqnum 10354085, uptime 15617405, samples 7, length 1288 - expanded counter sample (4), length 172, seqnum 2006231, type 0, idx 22, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 22, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 34112098, unicast pkts 105160, multicast pkts 21890, broadcast pkts 87902, discards 0 - In errors 0, unknown protos 0 - Out octets 3973831211, unicast pkts 170034, multicast pkts 2177391, broadcast pkts 48280299, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2007385, type 0, idx 23, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 23, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 88669719, unicast pkts 426910, multicast pkts 1274, broadcast pkts 9963, discards 0 - In errors 0, unknown protos 0 - Out octets 4040560781, unicast pkts 263325, multicast pkts 2198421, broadcast pkts 48355369, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2007419, type 0, idx 24, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 24, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 91303939, unicast pkts 434713, multicast pkts 1082, broadcast pkts 9160, discards 0 - In errors 0, unknown protos 0 - Out octets 4108976190, unicast pkts 328918, multicast pkts 2198317, broadcast pkts 48355036, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2007417, type 0, idx 25, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 25, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 92997371, unicast pkts 447348, multicast pkts 1121, broadcast pkts 9663, discards 0 - In errors 0, unknown protos 0 - Out octets 4037714536, unicast pkts 258087, multicast pkts 2198271, broadcast pkts 48354566, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2007413, type 0, idx 26, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 26, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 736394053, unicast pkts 4302342, multicast pkts 1537, broadcast pkts 9112, discards 0 - In errors 0, unknown protos 0 - Out octets 4154005710, unicast pkts 612617, multicast pkts 2197991, broadcast pkts 48350433, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2007109, type 0, idx 27, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 27, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 7325604, unicast pkts 91520, multicast pkts 1016, broadcast pkts 2335, discards 0 - In errors 0, unknown protos 0 - Out octets 4107132478, unicast pkts 154975, multicast pkts 2199118, broadcast pkts 48364314, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2004644, type 0, idx 28, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 28, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 15584594, unicast pkts 232478, multicast pkts 12, broadcast pkts 1252, discards 0 - In errors 0, unknown protos 0 - Out octets 250802552, unicast pkts 447550, multicast pkts 2198406, broadcast pkts 48250290, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 -IP (tos 0x0, ttl 63, id 0, offset 0, flags [DF], proto UDP (17), length 488) - 15.184.4.165.49408 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.4.165, agent-id 100, seqnum 304697, uptime 568980408, samples 1, length 460 - counter sample (2), length 424, seqnum 304697, type 2, idx 1, records 6 - enterprise 0, Unknown (2001) length 68 - 0x0000: 0000 0004 0000 0002 0000 0001 1cc1 de18 - 0x0010: 96f0 0000 0000 0003 0000 0001 1cc1 de18 - 0x0020: 96f0 0000 0000 0005 0000 0001 1cc1 de18 - 0x0030: 96f0 0000 0000 0006 0000 0001 0000 0000 - 0x0040: 0000 0000 - enterprise 0, Unknown (2005) length 52 - 0x0000: 0000 01ce 1562 3800 0000 01b5 5abb 6000 - 0x0010: 0000 07a2 0002 2ed1 0000 0000 ad27 5000 - 0x0020: 0011 36a1 03c8 c6c6 0000 014c e1b6 8800 - 0x0030: 1016 b722 - enterprise 0, Unknown (2004) length 72 - 0x0000: 0000 0005 e225 c000 0000 0003 848a 3000 - 0x0010: 0000 0000 0000 0000 0000 0000 13bf c000 - 0x0020: 0000 0002 3662 0000 0000 0000 0000 0000 - 0x0030: 0000 0000 0000 0000 0015 af62 299c 36d1 - 0x0040: 0000 0000 0000 0000 - enterprise 0, Unknown (2003) length 68 - 0x0000: 3ca3 d70a 3c23 d70a 3d23 d70a 0000 0001 - 0x0010: 0000 0186 0000 0018 0000 0640 0096 43b9 - 0x0020: 1e74 d09c 0187 6bc0 142d 000a cc79 de36 - 0x0030: 00a5 dd9a 0051 60bc 041a 9f4c 7a8f 6da7 - 0x0040: 3842 8b86 - enterprise 0, Unknown (2006) length 40 - 0x0000: 0000 16b2 0b31 f24e fcb8 d0dc 0000 0000 - 0x0010: 0000 032a 0000 36b3 f8ae 8e96 0ab2 541e - 0x0020: 0000 0000 0000 0000 - enterprise 0, Unknown (2000) length 64 - 0x0000: 0000 0010 7072 6f78 792d 7573 6530 3331 - 0x0010: 3437 6b32 3638 3935 3431 5355 4530 3331 - 0x0020: 3437 4b32 0000 0003 0000 0002 0000 000e - 0x0030: 322e 362e 3138 2d31 3934 2e65 6c35 0000 -IP (tos 0x0, ttl 254, id 0, offset 0, flags [none], proto UDP (17), length 100) - 168.87.240.2.40000 > 15.184.3.9.6343: sFlow version 327681 packet not supported -IP (tos 0x0, ttl 255, id 16476, offset 0, flags [none], proto UDP (17), length 1316) - 15.184.3.1.41024 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.129, agent-id 2, seqnum 211306, uptime 2441326183, samples 7, length 1288 - expanded counter sample (4), length 172, seqnum 81390, type 0, idx 56, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 56, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 809903675, unicast pkts 3736015, multicast pkts 162927, broadcast pkts 30039, discards 0 - In errors 0, unknown protos 0 - Out octets 3159365496, unicast pkts 3749574, multicast pkts 328087, broadcast pkts 279825377, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 6536, type 0, idx 33, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 33, iftype 117, ifspeed 10000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 2950591154, unicast pkts 334880915, multicast pkts 13078, broadcast pkts 633, discards 0 - In errors 0, unknown protos 0 - Out octets 3019300047, unicast pkts 221588667, multicast pkts 13070, broadcast pkts 62903, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 81076, type 0, idx 34, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 34, iftype 117, ifspeed 10000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 49685433, unicast pkts 2528128710, multicast pkts 162056, broadcast pkts 1220, discards 0 - In errors 0, unknown protos 0 - Out octets 2876151927, unicast pkts 678847059, multicast pkts 163438, broadcast pkts 1810770236, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 81493, type 0, idx 35, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 35, iftype 117, ifspeed 10000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 408342602, unicast pkts 2796427385, multicast pkts 751161, broadcast pkts 740734824, discards 0 - In errors 0, unknown protos 0 - Out octets 642300096, unicast pkts 1951849543, multicast pkts 183235, broadcast pkts 22658, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 81669, type 0, idx 37, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 37, iftype 117, ifspeed 10000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 1461246724, unicast pkts 1380492582, multicast pkts 163835, broadcast pkts 140670, discards 0 - In errors 0, unknown protos 0 - Out octets 498812438, unicast pkts 3834735035, multicast pkts 174908, broadcast pkts 1255093219, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 81390, type 0, idx 38, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 38, iftype 117, ifspeed 10000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 71981454, unicast pkts 214133, multicast pkts 162760, broadcast pkts 157, discards 0 - In errors 0, unknown protos 0 - Out octets 3267993738, unicast pkts 2856556, multicast pkts 164514, broadcast pkts 1813907262, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 81434, type 0, idx 39, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 39, iftype 117, ifspeed 10000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 3630784674, unicast pkts 832589817, multicast pkts 162837, broadcast pkts 84051, discards 0 - In errors 0, unknown protos 0 - Out octets 3008452523, unicast pkts 1179091938, multicast pkts 164436, broadcast pkts 1814098221, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 -IP (tos 0x0, ttl 255, id 16477, offset 0, flags [none], proto UDP (17), length 596) - 15.184.3.1.41024 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.129, agent-id 2, seqnum 211307, uptime 2441326343, samples 3, length 568 - expanded counter sample (4), length 172, seqnum 81390, type 0, idx 40, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 40, iftype 117, ifspeed 10000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 38989430, unicast pkts 0, multicast pkts 162755, broadcast pkts 3, discards 0 - In errors 0, unknown protos 0 - Out octets 2802182351, unicast pkts 56820, multicast pkts 165686, broadcast pkts 1814332502, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 81138, type 0, idx 41, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 41, iftype 117, ifspeed 10000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 46653626, unicast pkts 85863, multicast pkts 27682, broadcast pkts 478300, discards 0 - In errors 0, unknown protos 0 - Out octets 311406364, unicast pkts 80002, multicast pkts 1261847, broadcast pkts 1178283, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 81376, type 0, idx 50, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 50, iftype 117, ifspeed 10000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 2331728577, unicast pkts 108446058, multicast pkts 81380, broadcast pkts 1837, discards 0 - In errors 0, unknown protos 0 - Out octets 330353971, unicast pkts 160483289, multicast pkts 1588895, broadcast pkts 1448152, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 -IP (tos 0x0, ttl 254, id 50953, offset 0, flags [none], proto UDP (17), length 956) - 168.87.240.3.50340 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.129, agent-id 6, seqnum 444098, uptime 127118529, samples 5, length 928 - expanded counter sample (4), length 172, seqnum 147400, type 0, idx 60, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 60, iftype 117, ifspeed 10000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 72510805, unicast pkts 0, multicast pkts 294749, broadcast pkts 0, discards 0 - In errors 0, unknown protos 0 - Out octets 123866349, unicast pkts 13446, multicast pkts 736973, broadcast pkts 117224, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 147400, type 0, idx 61, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 61, iftype 117, ifspeed 10000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 72511166, unicast pkts 0, multicast pkts 294750, broadcast pkts 0, discards 0 - In errors 0, unknown protos 0 - Out octets 2101933816, unicast pkts 33990, multicast pkts 368505, broadcast pkts 42768255, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 147400, type 0, idx 62, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 62, iftype 117, ifspeed 10000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 89171611, unicast pkts 5392, multicast pkts 294750, broadcast pkts 49641, discards 0 - In errors 0, unknown protos 0 - Out octets 124086999, unicast pkts 11982, multicast pkts 736973, broadcast pkts 117224, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 147400, type 0, idx 63, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 63, iftype 117, ifspeed 10000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 71037120, unicast pkts 0, multicast pkts 294748, broadcast pkts 0, discards 0 - In errors 0, unknown protos 0 - Out octets 2101596784, unicast pkts 29476, multicast pkts 368505, broadcast pkts 42768255, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 147400, type 0, idx 64, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 64, iftype 117, ifspeed 10000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 71037922, unicast pkts 0, multicast pkts 294751, broadcast pkts 0, discards 0 - In errors 0, unknown protos 0 - Out octets 123494040, unicast pkts 7500, multicast pkts 736973, broadcast pkts 117224, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 -IP (tos 0x0, ttl 253, id 27101, offset 0, flags [none], proto UDP (17), length 1136) - 15.184.1.194.3099 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.194, agent-id 1, seqnum 10354086, uptime 15618312, samples 6, length 1108 - expanded counter sample (4), length 172, seqnum 2007421, type 0, idx 29, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 29, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 82208831, unicast pkts 403685, multicast pkts 1054, broadcast pkts 8246, discards 0 - In errors 0, unknown protos 0 - Out octets 4103781979, unicast pkts 294994, multicast pkts 2198185, broadcast pkts 48352457, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2007311, type 0, idx 30, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 30, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 92569896, unicast pkts 433051, multicast pkts 1312, broadcast pkts 12292, discards 0 - In errors 0, unknown protos 0 - Out octets 4037227515, unicast pkts 268387, multicast pkts 2197973, broadcast pkts 48326301, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2018134, type 0, idx 50, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 50, iftype 117, ifspeed 10000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 1215684621, unicast pkts 3179986010, multicast pkts 4299773, broadcast pkts 2959481171, discards 0 - In errors 0, unknown protos 0 - Out octets 832983248, unicast pkts 684975702, multicast pkts 1115367, broadcast pkts 45280648, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 1221174, type 0, idx 51, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 51, iftype 117, ifspeed 10000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 576720530, unicast pkts 537564819, multicast pkts 1613151, broadcast pkts 660268633, discards 0 - In errors 0, unknown protos 0 - Out octets 428264565, unicast pkts 1068854786, multicast pkts 344705, broadcast pkts 9140809, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 1221287, type 0, idx 52, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 52, iftype 117, ifspeed 10000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 3028289271, unicast pkts 458255786, multicast pkts 651461, broadcast pkts 541454, discards 0 - In errors 0, unknown protos 0 - Out octets 3361225808, unicast pkts 1109386475, multicast pkts 163507, broadcast pkts 8683, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 1221183, type 0, idx 53, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 53, iftype 117, ifspeed 10000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 2050689076, unicast pkts 476082627, multicast pkts 164214, broadcast pkts 21756786, discards 0 - In errors 0, unknown protos 0 - Out octets 2159078261, unicast pkts 1043897297, multicast pkts 163510, broadcast pkts 210489, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 -IP (tos 0x0, ttl 62, id 0, offset 0, flags [DF], proto UDP (17), length 452) - 15.184.13.248.50229 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.13.52, agent-id 100, seqnum 26626, uptime 798762000, samples 1, length 424 - counter sample (2), length 388, seqnum 26626, type 2, idx 1, records 6 - enterprise 0, Unknown (2001) length 36 - 0x0000: 0000 0002 0000 0002 0000 0001 d485 64cc - 0x0010: 6024 0000 0000 0003 0000 0001 d485 64cc - 0x0020: 6025 0000 - enterprise 0, Unknown (2005) length 52 - 0x0000: 0000 0018 3daa e800 0000 0016 50cb 8000 - 0x0010: 0000 07e5 0000 bac1 0000 0000 29ac 2400 - 0x0020: 0003 3cc1 0044 1f88 0000 000c eeff 1000 - 0x0030: 0011 78ce - enterprise 0, Unknown (2004) length 72 - 0x0000: 0000 0003 caa6 5000 0000 0003 9dc3 3000 - 0x0010: 0000 0000 0000 0000 0000 0000 0a33 d000 - 0x0020: 0000 0000 1a2a 4000 0000 0000 7ff5 6000 - 0x0030: 0000 0000 7ff5 6000 0005 3fea 019d dfe2 - 0x0040: 0000 0000 0000 0000 - enterprise 0, Unknown (2003) length 68 - 0x0000: 0000 0000 0000 0000 0000 0000 0000 0001 - 0x0010: 0000 0153 0000 0018 0000 0640 000c 3077 - 0x0020: 0033 efdc 0000 02da 0015 f7b6 7652 2a4a - 0x0030: 0002 204c 0000 36ba 0001 458c 306c a669 - 0x0040: e653 ddf6 - enterprise 0, Unknown (2006) length 40 - 0x0000: 0000 0000 2550 2198 005a d481 0000 0000 - 0x0010: 0000 0000 0000 0000 1a2e 15ef 002a 4d2a - 0x0020: 0000 0000 0000 0000 - enterprise 0, Unknown (2000) length 60 - 0x0000: 0000 000a 7573 6530 3337 3130 6666 0000 - 0x0010: 3431 3036 3630 5355 4530 3337 3130 4646 - 0x0020: 0000 0003 0000 0002 0000 000e 322e 362e - 0x0030: 3138 2d31 3934 2e65 6c35 0000 -IP (tos 0x0, ttl 254, id 0, offset 0, flags [none], proto UDP (17), length 100) - 168.87.240.1.40000 > 15.184.3.9.6343: sFlow version 327681 packet not supported -IP (tos 0x0, ttl 254, id 0, offset 0, flags [none], proto UDP (17), length 148) - 168.87.240.1.40000 > 15.184.3.9.6343: sFlow version 327682 packet not supported -IP (tos 0x0, ttl 254, id 8886, offset 0, flags [none], proto UDP (17), length 100) - 168.87.240.1.40000 > 15.184.3.9.6343: sFlow version 327681 packet not supported -IP (tos 0x0, ttl 254, id 0, offset 0, flags [none], proto UDP (17), length 148) - 168.87.240.2.40000 > 15.184.3.9.6343: sFlow version 327682 packet not supported -IP (tos 0x0, ttl 254, id 50954, offset 0, flags [none], proto UDP (17), length 596) - 168.87.240.3.50340 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.129, agent-id 6, seqnum 444099, uptime 127119529, samples 3, length 568 - expanded counter sample (4), length 172, seqnum 147400, type 0, idx 65, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 65, iftype 117, ifspeed 10000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 71855431, unicast pkts 5778, multicast pkts 294751, broadcast pkts 0, discards 0 - In errors 0, unknown protos 0 - Out octets 2102528585, unicast pkts 40099, multicast pkts 368505, broadcast pkts 42768255, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 147400, type 0, idx 66, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 66, iftype 117, ifspeed 10000000000, ifdirection 1 (full-duplex) - ifstatus 1, adminstatus: up, operstatus: down - In octets 25177702, unicast pkts 0, multicast pkts 104472, broadcast pkts 4, discards 0 - In errors 0, unknown protos 0 - Out octets 39878920, unicast pkts 4387, multicast pkts 261178, broadcast pkts 1, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 147400, type 0, idx 67, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 67, iftype 117, ifspeed 10000000000, ifdirection 1 (full-duplex) - ifstatus 1, adminstatus: up, operstatus: down - In octets 25284454, unicast pkts 0, multicast pkts 104859, broadcast pkts 4, discards 0 - In errors 0, unknown protos 0 - Out octets 31308450, unicast pkts 5841, multicast pkts 133252, broadcast pkts 299, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 -IP (tos 0x0, ttl 253, id 12213, offset 0, flags [none], proto UDP (17), length 1316) - 15.184.1.195.4942 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.195, agent-id 1, seqnum 10499687, uptime 12975660, samples 7, length 1288 - expanded counter sample (4), length 172, seqnum 2007196, type 0, idx 1, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 1, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 2460750, unicast pkts 22544, multicast pkts 5, broadcast pkts 6408, discards 0 - In errors 0, unknown protos 0 - Out octets 3991394888, unicast pkts 131978, multicast pkts 2198965, broadcast pkts 48358863, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2006746, type 0, idx 2, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 2, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 122196260, unicast pkts 82823825, multicast pkts 710, broadcast pkts 38540, discards 0 - In errors 2, unknown protos 0 - Out octets 3744715166, unicast pkts 93942161, multicast pkts 2218252, broadcast pkts 48317917, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 2, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2007119, type 0, idx 3, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 3, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 87175881, unicast pkts 11173387, multicast pkts 1312, broadcast pkts 7310, discards 0 - In errors 0, unknown protos 0 - Out octets 2575091711, unicast pkts 8663056, multicast pkts 1949260, broadcast pkts 8701202, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2007649, type 0, idx 4, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 4, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 3013639728, unicast pkts 424917338, multicast pkts 1216, broadcast pkts 196654, discards 0 - In errors 0, unknown protos 0 - Out octets 584569975, unicast pkts 294167698, multicast pkts 1948957, broadcast pkts 8512276, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 1832885, type 0, idx 5, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 5, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 3835856598, unicast pkts 6812799, multicast pkts 1145, broadcast pkts 705277, discards 0 - In errors 0, unknown protos 0 - Out octets 2182764482, unicast pkts 8284848, multicast pkts 2738770, broadcast pkts 7987023, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2007140, type 0, idx 6, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 6, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 21722, unicast pkts 0, multicast pkts 12, broadcast pkts 37, discards 0 - In errors 0, unknown protos 0 - Out octets 1874046630, unicast pkts 98496, multicast pkts 1955062, broadcast pkts 20311836, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2006987, type 0, idx 7, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 7, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 3474926128, unicast pkts 10088201, multicast pkts 1463, broadcast pkts 14105, discards 0 - In errors 0, unknown protos 0 - Out octets 831378843, unicast pkts 12805926, multicast pkts 1954494, broadcast pkts 20293371, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 -IP (tos 0x0, ttl 253, id 12214, offset 0, flags [none], proto UDP (17), length 1316) - 15.184.1.195.4942 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.195, agent-id 1, seqnum 10499688, uptime 12975661, samples 7, length 1288 - expanded counter sample (4), length 172, seqnum 2007115, type 0, idx 8, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 8, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 3858988244, unicast pkts 13191097, multicast pkts 1215, broadcast pkts 24593, discards 0 - In errors 0, unknown protos 0 - Out octets 2559232288, unicast pkts 16126546, multicast pkts 1954848, broadcast pkts 20284434, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2007002, type 0, idx 9, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 9, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 3386316332, unicast pkts 14360061, multicast pkts 1244, broadcast pkts 16485, discards 0 - In errors 0, unknown protos 0 - Out octets 1675799221, unicast pkts 15790519, multicast pkts 1954451, broadcast pkts 20291230, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2005310, type 0, idx 10, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 10, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 1558898282, unicast pkts 162603641, multicast pkts 1331, broadcast pkts 188407, discards 0 - In errors 0, unknown protos 0 - Out octets 3568458900, unicast pkts 162582480, multicast pkts 1953553, broadcast pkts 20106785, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2007257, type 0, idx 11, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 11, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 125808339, unicast pkts 691735, multicast pkts 2539, broadcast pkts 22184, discards 0 - In errors 0, unknown protos 0 - Out octets 1249750181, unicast pkts 33020559, multicast pkts 2196657, broadcast pkts 48342104, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2007179, type 0, idx 12, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 12, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 45949249, unicast pkts 205456, multicast pkts 1743, broadcast pkts 8308, discards 0 - In errors 0, unknown protos 0 - Out octets 4019313234, unicast pkts 210496, multicast pkts 2197587, broadcast pkts 48353561, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2007156, type 0, idx 13, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 13, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 32111027, unicast pkts 143922, multicast pkts 1193, broadcast pkts 5276, discards 0 - In errors 0, unknown protos 0 - Out octets 4050797426, unicast pkts 198665, multicast pkts 2197850, broadcast pkts 48353779, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2006876, type 0, idx 14, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 14, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 19576, unicast pkts 19, multicast pkts 5, broadcast pkts 30, discards 0 - In errors 0, unknown protos 0 - Out octets 3990801228, unicast pkts 107683, multicast pkts 2199048, broadcast pkts 48364452, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 -IP (tos 0x0, ttl 253, id 12215, offset 0, flags [none], proto UDP (17), length 1316) - 15.184.1.195.4942 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.195, agent-id 1, seqnum 10499689, uptime 12975663, samples 7, length 1288 - expanded counter sample (4), length 172, seqnum 2007175, type 0, idx 15, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 15, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 96700793, unicast pkts 453020, multicast pkts 2568, broadcast pkts 22804, discards 0 - In errors 0, unknown protos 0 - Out octets 4042743345, unicast pkts 379591, multicast pkts 2196676, broadcast pkts 48338646, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2007086, type 0, idx 16, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 16, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 289703711, unicast pkts 1654844, multicast pkts 37302, broadcast pkts 22784, discards 0 - In errors 0, unknown protos 0 - Out octets 4098637095, unicast pkts 801788, multicast pkts 2166613, broadcast pkts 48320960, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2007172, type 0, idx 17, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 17, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 45204461, unicast pkts 194096, multicast pkts 1700, broadcast pkts 8788, discards 0 - In errors 0, unknown protos 0 - Out octets 4014792810, unicast pkts 198133, multicast pkts 2197652, broadcast pkts 48351768, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2007170, type 0, idx 18, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 18, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 95210366, unicast pkts 443561, multicast pkts 2169, broadcast pkts 24997, discards 0 - In errors 0, unknown protos 0 - Out octets 4035379503, unicast pkts 332327, multicast pkts 2196767, broadcast pkts 48336027, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2007265, type 0, idx 19, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 19, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 1379521296, unicast pkts 50010620, multicast pkts 1046, broadcast pkts 48921, discards 0 - In errors 0, unknown protos 0 - Out octets 435976335, unicast pkts 57993600, multicast pkts 2197958, broadcast pkts 48315375, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2007258, type 0, idx 20, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 20, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 312017292, unicast pkts 47238597, multicast pkts 1476, broadcast pkts 23377, discards 0 - In errors 0, unknown protos 0 - Out octets 3242136708, unicast pkts 57532634, multicast pkts 2198069, broadcast pkts 48339981, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2009605, type 0, idx 21, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 21, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 4127607826, unicast pkts 29906144, multicast pkts 1233, broadcast pkts 69575, discards 0 - In errors 0, unknown protos 0 - Out octets 2091792747, unicast pkts 3024931093, multicast pkts 2198065, broadcast pkts 48294332, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 -IP (tos 0x0, ttl 253, id 12216, offset 0, flags [none], proto UDP (17), length 1316) - 15.184.1.195.4942 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.195, agent-id 1, seqnum 10499690, uptime 12975664, samples 7, length 1288 - expanded counter sample (4), length 172, seqnum 2007105, type 0, idx 22, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 22, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 124432239, unicast pkts 511115, multicast pkts 21969, broadcast pkts 120004, discards 0 - In errors 0, unknown protos 0 - Out octets 3066166092, unicast pkts 2595939, multicast pkts 2177143, broadcast pkts 48244891, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2008569, type 0, idx 23, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 23, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 142412715, unicast pkts 4067695849, multicast pkts 1301, broadcast pkts 59350, discards 0 - In errors 0, unknown protos 0 - Out octets 3335716564, unicast pkts 2083658988, multicast pkts 2198160, broadcast pkts 48304443, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2009650, type 0, idx 24, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 24, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 1376243919, unicast pkts 42736656, multicast pkts 1161, broadcast pkts 37177, discards 0 - In errors 0, unknown protos 0 - Out octets 3949008841, unicast pkts 3045234063, multicast pkts 2197974, broadcast pkts 48326808, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2009622, type 0, idx 25, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 25, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 1314601210, unicast pkts 4258058414, multicast pkts 1154, broadcast pkts 42425, discards 0 - In errors 0, unknown protos 0 - Out octets 2836953588, unicast pkts 2986750860, multicast pkts 2197982, broadcast pkts 48321714, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2007194, type 0, idx 26, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 26, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 2022052468, unicast pkts 13527038, multicast pkts 933, broadcast pkts 57921, discards 0 - In errors 0, unknown protos 0 - Out octets 620629707, unicast pkts 19469425, multicast pkts 2198358, broadcast pkts 48305869, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2007254, type 0, idx 27, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 27, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 3262458931, unicast pkts 47684835, multicast pkts 1039, broadcast pkts 5299, discards 0 - In errors 3, unknown protos 0 - Out octets 3900626480, unicast pkts 54120142, multicast pkts 2198706, broadcast pkts 48356894, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 2, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2005149, type 0, idx 28, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 28, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 259120552, unicast pkts 1107924, multicast pkts 198, broadcast pkts 3429, discards 0 - In errors 2, unknown protos 0 - Out octets 653805810, unicast pkts 4189777, multicast pkts 2198871, broadcast pkts 48346830, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 2, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 -IP (tos 0x0, ttl 253, id 12217, offset 0, flags [none], proto UDP (17), length 1136) - 15.184.1.195.4942 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.195, agent-id 1, seqnum 10499691, uptime 12975801, samples 6, length 1108 - expanded counter sample (4), length 172, seqnum 2007269, type 0, idx 29, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 29, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 1267844166, unicast pkts 49781127, multicast pkts 1368, broadcast pkts 40480, discards 0 - In errors 0, unknown protos 0 - Out octets 321243842, unicast pkts 57718818, multicast pkts 2197767, broadcast pkts 48323189, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2009634, type 0, idx 30, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 30, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 1960827113, unicast pkts 4258067543, multicast pkts 1249, broadcast pkts 60280, discards 0 - In errors 0, unknown protos 0 - Out octets 3144893898, unicast pkts 3032873251, multicast pkts 2198370, broadcast pkts 48301571, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2017265, type 0, idx 50, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 50, iftype 117, ifspeed 10000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 4161963799, unicast pkts 3263163886, multicast pkts 1151176, broadcast pkts 287880331, discards 0 - In errors 0, unknown protos 0 - Out octets 296849779, unicast pkts 1684325936, multicast pkts 1126235, broadcast pkts 1405132663, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2017180, type 0, idx 51, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 51, iftype 117, ifspeed 10000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 2214905605, unicast pkts 2466386895, multicast pkts 5276601, broadcast pkts 1225128676, discards 0 - In errors 0, unknown protos 0 - Out octets 3025945518, unicast pkts 2183065991, multicast pkts 899419, broadcast pkts 2308600565, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 1220660, type 0, idx 52, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 52, iftype 117, ifspeed 10000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 3618900052, unicast pkts 334487763, multicast pkts 651947, broadcast pkts 3712423535, discards 0 - In errors 1, unknown protos 0 - Out octets 697413100, unicast pkts 537120139, multicast pkts 163886, broadcast pkts 4083094099, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 1, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 1 - expanded counter sample (4), length 172, seqnum 1220563, type 0, idx 53, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 53, iftype 117, ifspeed 10000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 851211409, unicast pkts 325440450, multicast pkts 164171, broadcast pkts 21946046, discards 0 - In errors 0, unknown protos 0 - Out octets 1855403849, unicast pkts 517660679, multicast pkts 163669, broadcast pkts 21301, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 -IP (tos 0x0, ttl 253, id 27102, offset 0, flags [none], proto UDP (17), length 1316) - 15.184.1.194.3099 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.194, agent-id 1, seqnum 10354087, uptime 15619401, samples 7, length 1288 - expanded counter sample (4), length 172, seqnum 2007460, type 0, idx 1, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 1, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 398, unicast pkts 0, multicast pkts 5, broadcast pkts 0, discards 0 - In errors 0, unknown protos 0 - Out octets 3980656605, unicast pkts 65082, multicast pkts 2199480, broadcast pkts 48372199, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2007456, type 0, idx 2, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 2, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 1444442513, unicast pkts 69372226, multicast pkts 1207, broadcast pkts 31114, discards 0 - In errors 0, unknown protos 0 - Out octets 1845546441, unicast pkts 41823689, multicast pkts 2201740, broadcast pkts 48335077, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2007397, type 0, idx 3, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 3, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 200763454, unicast pkts 891785, multicast pkts 982, broadcast pkts 13320, discards 0 - In errors 1, unknown protos 0 - Out octets 3317395016, unicast pkts 5225674, multicast pkts 1949791, broadcast pkts 8711770, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 1, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2007403, type 0, idx 4, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 4, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 165801154, unicast pkts 662297, multicast pkts 491, broadcast pkts 15752, discards 0 - In errors 0, unknown protos 0 - Out octets 2164450538, unicast pkts 1115261, multicast pkts 1949901, broadcast pkts 8709518, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 1993493, type 0, idx 5, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 5, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 198991268, unicast pkts 941829, multicast pkts 664, broadcast pkts 33726, discards 0 - In errors 1, unknown protos 0 - Out octets 4052534333, unicast pkts 2591418, multicast pkts 1994963, broadcast pkts 8691000, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 1, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 1, frames too long 0, mac receive errors 0, symbol errors 1 - expanded counter sample (4), length 172, seqnum 2007738, type 0, idx 6, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 6, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 561751280, unicast pkts 575605209, multicast pkts 1250, broadcast pkts 15322854, discards 0 - In errors 1, unknown protos 0 - Out octets 1513354003, unicast pkts 602598577, multicast pkts 1954404, broadcast pkts 4990182, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2008404, type 0, idx 7, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 7, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 3193665262, unicast pkts 642460773, multicast pkts 1401, broadcast pkts 219742, discards 0 - In errors 0, unknown protos 0 - Out octets 2913194494, unicast pkts 390983681, multicast pkts 1955407, broadcast pkts 20090614, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 -IP (tos 0x0, ttl 253, id 27103, offset 0, flags [none], proto UDP (17), length 1316) - 15.184.1.194.3099 > 15.184.3.9.6343: sFlowv5, IPv4 agent 15.184.1.194, agent-id 1, seqnum 10354088, uptime 15619403, samples 7, length 1288 - expanded counter sample (4), length 172, seqnum 2008395, type 0, idx 8, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 8, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 1089063112, unicast pkts 559652885, multicast pkts 634, broadcast pkts 224712, discards 0 - In errors 0, unknown protos 0 - Out octets 3489201351, unicast pkts 383200930, multicast pkts 1955795, broadcast pkts 20085990, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2008430, type 0, idx 9, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 9, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 2436646808, unicast pkts 568003495, multicast pkts 906, broadcast pkts 16545, discards 0 - In errors 0, unknown protos 0 - Out octets 1717246599, unicast pkts 389888234, multicast pkts 1955669, broadcast pkts 20294137, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2005879, type 0, idx 10, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 10, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 105616289, unicast pkts 531333, multicast pkts 768, broadcast pkts 9159, discards 0 - In errors 0, unknown protos 0 - Out octets 10387728, unicast pkts 2209569, multicast pkts 1954606, broadcast pkts 20288651, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2007662, type 0, idx 11, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 11, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 1801371574, unicast pkts 137590493, multicast pkts 2109, broadcast pkts 55528, discards 0 - In errors 0, unknown protos 0 - Out octets 1769141617, unicast pkts 113363676, multicast pkts 2197521, broadcast pkts 48315560, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2007553, type 0, idx 12, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 12, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 4201581256, unicast pkts 45842890, multicast pkts 1610, broadcast pkts 22730, discards 0 - In errors 0, unknown protos 0 - Out octets 1948082196, unicast pkts 53163690, multicast pkts 2198297, broadcast pkts 48348226, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2007541, type 0, idx 13, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 13, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 1019109063, unicast pkts 46613839, multicast pkts 1236, broadcast pkts 22226, discards 0 - In errors 0, unknown protos 0 - Out octets 2052469045, unicast pkts 53287225, multicast pkts 2198499, broadcast pkts 48348754, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 - expanded counter sample (4), length 172, seqnum 2010425, type 0, idx 14, records 2 - enterprise 0, Generic counter (1) length 88 - ifindex 14, iftype 117, ifspeed 1000000000, ifdirection 1 (full-duplex) - ifstatus 3, adminstatus: up, operstatus: up - In octets 36138805, unicast pkts 2267783883, multicast pkts 298, broadcast pkts 38306126, discards 0 - In errors 2, unknown protos 0 - Out octets 614425293, unicast pkts 2014274284, multicast pkts 2199305, broadcast pkts 10065409, discards 0 - Out errors 0, promisc mode 2 - enterprise 0, Ethernet counter (2) length 52 - align errors 0, fcs errors 2, single collision 0, multiple collision 0, test error 0 - deferred 0, late collision 0, excessive collision 0, mac trans error 0 - carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 diff --git a/tests/sflow_multiple_counter_30_pdus.pcap b/tests/sflow_multiple_counter_30_pdus.pcap deleted file mode 100644 index 5ec39c4..0000000 Binary files a/tests/sflow_multiple_counter_30_pdus.pcap and /dev/null differ diff --git a/tests/spb.out b/tests/spb.out deleted file mode 100644 index ef2f82a..0000000 --- a/tests/spb.out +++ /dev/null @@ -1,53 +0,0 @@ -IS-IS, p2p IIH, src-id 8888.8888.8888, length 1492 -IS-IS, p2p IIH, src-id 2222.2222.2222, length 1492 -IS-IS, p2p IIH, src-id 8888.8888.8888, length 1492 -IS-IS, p2p IIH, src-id 2222.2222.2222, length 1492 -IS-IS, L1 LSP, lsp-id 2222.2222.2222.00-00, seq 0x0000000f, lifetime 1200s, length 149 -IS-IS, L1 PSNP, src-id 8888.8888.8888.00, length 35 -IS-IS, p2p IIH, src-id 8888.8888.8888, length 1492 -IS-IS, p2p IIH, src-id 2222.2222.2222, length 1492 -IS-IS, p2p IIH, src-id 8888.8888.8888, length 1492 -IS-IS, p2p IIH, src-id 2222.2222.2222, length 1492 -IS-IS, p2p IIH, src-id 8888.8888.8888, length 1492 -IS-IS, p2p IIH, src-id 2222.2222.2222, length 1492 -IS-IS, p2p IIH, src-id 8888.8888.8888, length 1492 -IS-IS, p2p IIH, src-id 2222.2222.2222, length 1492 -IS-IS, p2p IIH, src-id 8888.8888.8888, length 1492 -IS-IS, p2p IIH, src-id 2222.2222.2222, length 1492 -IS-IS, p2p IIH, src-id 8888.8888.8888, length 1492 -IS-IS, p2p IIH, src-id 2222.2222.2222, length 1492 -IS-IS, p2p IIH, src-id 8888.8888.8888, length 1492 -IS-IS, p2p IIH, src-id 2222.2222.2222, length 1492 -IS-IS, p2p IIH, src-id 8888.8888.8888, length 1492 -IS-IS, p2p IIH, src-id 2222.2222.2222, length 1492 -IS-IS, p2p IIH, src-id 8888.8888.8888, length 1492 -IS-IS, p2p IIH, src-id 2222.2222.2222, length 1492 -IS-IS, p2p IIH, src-id 8888.8888.8888, length 1492 -IS-IS, p2p IIH, src-id 2222.2222.2222, length 1492 -IS-IS, p2p IIH, src-id 8888.8888.8888, length 1492 -IS-IS, p2p IIH, src-id 2222.2222.2222, length 1492 -IS-IS, p2p IIH, src-id 8888.8888.8888, length 1492 -IS-IS, p2p IIH, src-id 2222.2222.2222, length 1492 -IS-IS, p2p IIH, src-id 8888.8888.8888, length 1492 -IS-IS, L1 LSP, lsp-id 2222.2222.2222.00-00, seq 0x00000010, lifetime 1200s, length 149 -IS-IS, L1 PSNP, src-id 8888.8888.8888.00, length 35 -IS-IS, p2p IIH, src-id 2222.2222.2222, length 1492 -IS-IS, p2p IIH, src-id 8888.8888.8888, length 1492 -IS-IS, p2p IIH, src-id 2222.2222.2222, length 1492 -IS-IS, p2p IIH, src-id 8888.8888.8888, length 1492 -IS-IS, p2p IIH, src-id 2222.2222.2222, length 1492 -IS-IS, p2p IIH, src-id 8888.8888.8888, length 1492 -IS-IS, p2p IIH, src-id 2222.2222.2222, length 1492 -IS-IS, p2p IIH, src-id 8888.8888.8888, length 1492 -IS-IS, p2p IIH, src-id 2222.2222.2222, length 1492 -IS-IS, p2p IIH, src-id 8888.8888.8888, length 1492 -IS-IS, p2p IIH, src-id 2222.2222.2222, length 1492 -IS-IS, p2p IIH, src-id 8888.8888.8888, length 1492 -IS-IS, p2p IIH, src-id 2222.2222.2222, length 1492 -IS-IS, p2p IIH, src-id 8888.8888.8888, length 1492 -IS-IS, p2p IIH, src-id 2222.2222.2222, length 1492 -IS-IS, p2p IIH, src-id 8888.8888.8888, length 1492 -IS-IS, p2p IIH, src-id 2222.2222.2222, length 1492 -IS-IS, p2p IIH, src-id 8888.8888.8888, length 1492 -IS-IS, p2p IIH, src-id 2222.2222.2222, length 1492 -IS-IS, p2p IIH, src-id 8888.8888.8888, length 1492 diff --git a/tests/spb.pcap b/tests/spb.pcap deleted file mode 100644 index 99e2505..0000000 Binary files a/tests/spb.pcap and /dev/null differ diff --git a/tests/spb_bpduv4.out b/tests/spb_bpduv4.out deleted file mode 100644 index 748d4d2..0000000 --- a/tests/spb_bpduv4.out +++ /dev/null @@ -1,25 +0,0 @@ -STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205 -STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205 -STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205 -STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205 -STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205 -STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205 -STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205 -STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205 -STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205 -STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205 -STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205 -STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205 -STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205 -STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205 -STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205 -STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205 -STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205 -STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205 -STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205 -STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205 -STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205 -STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205 -STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205 -STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205 -STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205 diff --git a/tests/spb_bpduv4.pcap b/tests/spb_bpduv4.pcap deleted file mode 100644 index b12d4c1..0000000 Binary files a/tests/spb_bpduv4.pcap and /dev/null differ diff --git a/tests/stp-v.out b/tests/stp-v.out deleted file mode 100644 index 66d3081..0000000 --- a/tests/stp-v.out +++ /dev/null @@ -1,42 +0,0 @@ -STP 802.1d, Config, Flags [none], bridge-id 8001.00:19:06:ea:b8:80.8005, length 43 - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - root-id 8001.00:19:06:ea:b8:80, root-pathcost 0 -STP 802.1d, Config, Flags [none], bridge-id 8001.00:19:06:ea:b8:80.8005, length 43 - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - root-id 8001.00:19:06:ea:b8:80, root-pathcost 0 -STP 802.1d, Config, Flags [none], bridge-id 8001.00:19:06:ea:b8:80.8005, length 43 - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - root-id 8001.00:19:06:ea:b8:80, root-pathcost 0 -STP 802.1d, Config, Flags [none], bridge-id 8001.00:19:06:ea:b8:80.8005, length 43 - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - root-id 8001.00:19:06:ea:b8:80, root-pathcost 0 -STP 802.1d, Config, Flags [none], bridge-id 8001.00:19:06:ea:b8:80.8005, length 43 - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - root-id 8001.00:19:06:ea:b8:80, root-pathcost 0 -STP 802.1d, Config, Flags [none], bridge-id 8001.00:19:06:ea:b8:80.8005, length 43 - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - root-id 8001.00:19:06:ea:b8:80, root-pathcost 0 -STP 802.1d, Config, Flags [none], bridge-id 8001.00:19:06:ea:b8:80.8005, length 43 - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - root-id 8001.00:19:06:ea:b8:80, root-pathcost 0 -STP 802.1d, Config, Flags [none], bridge-id 8001.00:19:06:ea:b8:80.8005, length 43 - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - root-id 8001.00:19:06:ea:b8:80, root-pathcost 0 -STP 802.1d, Config, Flags [none], bridge-id 8001.00:19:06:ea:b8:80.8005, length 43 - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - root-id 8001.00:19:06:ea:b8:80, root-pathcost 0 -STP 802.1d, Config, Flags [none], bridge-id 8001.00:19:06:ea:b8:80.8005, length 43 - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - root-id 8001.00:19:06:ea:b8:80, root-pathcost 0 -STP 802.1d, Config, Flags [none], bridge-id 8001.00:19:06:ea:b8:80.8005, length 43 - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - root-id 8001.00:19:06:ea:b8:80, root-pathcost 0 -STP 802.1d, Config, Flags [none], bridge-id 8001.00:19:06:ea:b8:80.8005, length 43 - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - root-id 8001.00:19:06:ea:b8:80, root-pathcost 0 -STP 802.1d, Config, Flags [none], bridge-id 8001.00:19:06:ea:b8:80.8005, length 43 - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - root-id 8001.00:19:06:ea:b8:80, root-pathcost 0 -STP 802.1d, Config, Flags [none], bridge-id 8001.00:19:06:ea:b8:80.8005, length 43 - message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s - root-id 8001.00:19:06:ea:b8:80, root-pathcost 0 diff --git a/tests/syslog-v.out b/tests/syslog-v.out deleted file mode 100644 index 5ebed29..0000000 --- a/tests/syslog-v.out +++ /dev/null @@ -1,16 +0,0 @@ -IP (tos 0x0, ttl 64, id 30929, offset 0, flags [DF], proto UDP (17), length 79) - 10.0.0.20.47565 > 10.0.0.72.514: SYSLOG, length: 51 - Facility kernel (0), Severity notice (5) - Msg: Sep 12 19:16:12 through logger: test message 21\0x00 -IP (tos 0x0, ttl 64, id 37393, offset 0, flags [DF], proto UDP (17), length 79) - 10.0.0.20.33884 > 10.0.0.72.514: SYSLOG, length: 51 - Facility user (1), Severity alert (1) - Msg: Sep 12 19:16:18 through logger: test message 22\0x00 -IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto UDP (17), length 107) - 10.0.0.20.52693 > 10.0.0.71.514: SYSLOG, length: 79 - Facility user (1), Severity notice (5) - Msg: 2013-09-12T19:16:34.457849+04:00 localhost through rsyslog: test message 23 -IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto UDP (17), length 106) - 10.0.0.20.52693 > 10.0.0.71.514: SYSLOG, length: 78 - Facility user (1), Severity alert (1) - Msg: 2013-09-12T19:16:43.513746+04:00 localhost through rsyslog: test message 24 diff --git a/tests/syslog_udp.pcap b/tests/syslog_udp.pcap deleted file mode 100644 index 06d54e6..0000000 Binary files a/tests/syslog_udp.pcap and /dev/null differ diff --git a/tests/tfo-5c1fa7f9ae91.pcap b/tests/tfo-5c1fa7f9ae91.pcap deleted file mode 100644 index 43ae5b7..0000000 Binary files a/tests/tfo-5c1fa7f9ae91.pcap and /dev/null differ diff --git a/tests/tfo.out b/tests/tfo.out deleted file mode 100644 index ff5a955..0000000 --- a/tests/tfo.out +++ /dev/null @@ -1,14 +0,0 @@ -IP 192.168.0.100.13047 > 3.3.3.3.13054: Flags [S], seq 218476388, win 1400, options [exp-tfo cookiereq], length 0 -IP 9.9.9.9.13047 > 3.3.3.3.13054: Flags [S], seq 218476388, win 1400, options [mss 1460,exp-tfo cookiereq], length 0 -IP 3.3.3.3.13054 > 9.9.9.9.13047: Flags [S.], seq 4035392501, ack 218476389, win 1400, options [exp-tfo cookie 090909090000,nop,nop], length 0 -IP 3.3.3.3.13054 > 192.168.0.100.13047: Flags [S.], seq 4035392501, ack 218476389, win 1400, options [mss 1500,exp-tfo cookie 090909090000,nop,nop], length 0 -IP 192.168.0.100.13047 > 3.3.3.3.13054: Flags [.], ack 1, win 1400, length 0 -IP 9.9.9.9.13047 > 3.3.3.3.13054: Flags [.], ack 1, win 1400, length 0 -IP 192.168.0.100.13047 > 3.3.3.3.13054: Flags [F.], seq 1, ack 1, win 1400, length 0 -IP 9.9.9.9.13047 > 3.3.3.3.13054: Flags [F.], seq 1, ack 1, win 1400, length 0 -IP 3.3.3.3.13054 > 9.9.9.9.13047: Flags [F.], seq 1, ack 2, win 1400, length 0 -IP 3.3.3.3.13054 > 192.168.0.100.13047: Flags [F.], seq 1, ack 2, win 1400, length 0 -IP 192.168.0.100.13047 > 3.3.3.3.13054: Flags [.], ack 2, win 1400, length 0 -IP 9.9.9.9.13047 > 3.3.3.3.13054: Flags [.], ack 2, win 1400, length 0 -IP 192.168.0.100.13048 > 3.3.3.3.13054: Flags [S], seq 936732547:936732551, win 1400, options [exp-tfo cookie 090909090000,nop,nop], length 4 -IP 192.168.0.100.13048 > 3.3.3.3.13054: Flags [F.], seq 936732552, ack 0, win 1400, length 0 diff --git a/tests/udld-v.out b/tests/udld-v.out deleted file mode 100644 index d4361f4..0000000 --- a/tests/udld-v.out +++ /dev/null @@ -1,261 +0,0 @@ -UDLDv1, Code Probe message (1), Flags [RT, RSY] (0x03), length 60 - Checksum 0x6d85 (unverified) - Device-ID TLV (0x0001) TLV, length 15, FOC1031Z7JG - Port-ID TLV (0x0002) TLV, length 9, Gi0/1 - Echo TLV (0x0003) TLV, length 8, ^@^@^@^@ - Message Interval TLV (0x0004) TLV, length 5, 7s - Timeout Interval TLV (0x0005) TLV, length 5, 5s - Device Name TLV (0x0006) TLV, length 6, S1 - Sequence Number TLV (0x0007) TLV, length 8, 1 -UDLDv1, Code Echo message (2), Flags [RT] (0x00), length 80 - Checksum 0x805d (unverified) - Device-ID TLV (0x0001) TLV, length 15, FOC1025X4W3 - Port-ID TLV (0x0002) TLV, length 9, Fa0/1 - Echo TLV (0x0003) TLV, length 28, ^@^@^@^A^@^KFOC1031Z7JG^@^EGi0/1 - Message Interval TLV (0x0004) TLV, length 5, 7s - Timeout Interval TLV (0x0005) TLV, length 5, 5s - Device Name TLV (0x0006) TLV, length 6, S2 - Sequence Number TLV (0x0007) TLV, length 8, 1 -UDLDv1, Code Echo message (2), Flags [RT] (0x00), length 80 - Checksum 0x805e (unverified) - Device-ID TLV (0x0001) TLV, length 15, FOC1031Z7JG - Port-ID TLV (0x0002) TLV, length 9, Gi0/1 - Echo TLV (0x0003) TLV, length 28, ^@^@^@^A^@^KFOC1025X4W3^@^EFa0/1 - Message Interval TLV (0x0004) TLV, length 5, 7s - Timeout Interval TLV (0x0005) TLV, length 5, 5s - Device Name TLV (0x0006) TLV, length 6, S1 - Sequence Number TLV (0x0007) TLV, length 8, 1 -UDLDv1, Code Echo message (2), Flags [RT] (0x00), length 80 - Checksum 0x805c (unverified) - Device-ID TLV (0x0001) TLV, length 15, FOC1025X4W3 - Port-ID TLV (0x0002) TLV, length 9, Fa0/1 - Echo TLV (0x0003) TLV, length 28, ^@^@^@^A^@^KFOC1031Z7JG^@^EGi0/1 - Message Interval TLV (0x0004) TLV, length 5, 7s - Timeout Interval TLV (0x0005) TLV, length 5, 5s - Device Name TLV (0x0006) TLV, length 6, S2 - Sequence Number TLV (0x0007) TLV, length 8, 2 -UDLDv1, Code Echo message (2), Flags [RT] (0x00), length 80 - Checksum 0x805d (unverified) - Device-ID TLV (0x0001) TLV, length 15, FOC1031Z7JG - Port-ID TLV (0x0002) TLV, length 9, Gi0/1 - Echo TLV (0x0003) TLV, length 28, ^@^@^@^A^@^KFOC1025X4W3^@^EFa0/1 - Message Interval TLV (0x0004) TLV, length 5, 7s - Timeout Interval TLV (0x0005) TLV, length 5, 5s - Device Name TLV (0x0006) TLV, length 6, S1 - Sequence Number TLV (0x0007) TLV, length 8, 2 -UDLDv1, Code Echo message (2), Flags [RT] (0x00), length 80 - Checksum 0x805b (unverified) - Device-ID TLV (0x0001) TLV, length 15, FOC1025X4W3 - Port-ID TLV (0x0002) TLV, length 9, Fa0/1 - Echo TLV (0x0003) TLV, length 28, ^@^@^@^A^@^KFOC1031Z7JG^@^EGi0/1 - Message Interval TLV (0x0004) TLV, length 5, 7s - Timeout Interval TLV (0x0005) TLV, length 5, 5s - Device Name TLV (0x0006) TLV, length 6, S2 - Sequence Number TLV (0x0007) TLV, length 8, 3 -UDLDv1, Code Echo message (2), Flags [RT] (0x00), length 80 - Checksum 0x805c (unverified) - Device-ID TLV (0x0001) TLV, length 15, FOC1031Z7JG - Port-ID TLV (0x0002) TLV, length 9, Gi0/1 - Echo TLV (0x0003) TLV, length 28, ^@^@^@^A^@^KFOC1025X4W3^@^EFa0/1 - Message Interval TLV (0x0004) TLV, length 5, 7s - Timeout Interval TLV (0x0005) TLV, length 5, 5s - Device Name TLV (0x0006) TLV, length 6, S1 - Sequence Number TLV (0x0007) TLV, length 8, 3 -UDLDv1, Code Echo message (2), Flags [RT] (0x00), length 80 - Checksum 0x805a (unverified) - Device-ID TLV (0x0001) TLV, length 15, FOC1025X4W3 - Port-ID TLV (0x0002) TLV, length 9, Fa0/1 - Echo TLV (0x0003) TLV, length 28, ^@^@^@^A^@^KFOC1031Z7JG^@^EGi0/1 - Message Interval TLV (0x0004) TLV, length 5, 7s - Timeout Interval TLV (0x0005) TLV, length 5, 5s - Device Name TLV (0x0006) TLV, length 6, S2 - Sequence Number TLV (0x0007) TLV, length 8, 4 -UDLDv1, Code Echo message (2), Flags [RT] (0x00), length 80 - Checksum 0x805b (unverified) - Device-ID TLV (0x0001) TLV, length 15, FOC1031Z7JG - Port-ID TLV (0x0002) TLV, length 9, Gi0/1 - Echo TLV (0x0003) TLV, length 28, ^@^@^@^A^@^KFOC1025X4W3^@^EFa0/1 - Message Interval TLV (0x0004) TLV, length 5, 7s - Timeout Interval TLV (0x0005) TLV, length 5, 5s - Device Name TLV (0x0006) TLV, length 6, S1 - Sequence Number TLV (0x0007) TLV, length 8, 4 -UDLDv1, Code Echo message (2), Flags [RT] (0x00), length 80 - Checksum 0x8059 (unverified) - Device-ID TLV (0x0001) TLV, length 15, FOC1025X4W3 - Port-ID TLV (0x0002) TLV, length 9, Fa0/1 - Echo TLV (0x0003) TLV, length 28, ^@^@^@^A^@^KFOC1031Z7JG^@^EGi0/1 - Message Interval TLV (0x0004) TLV, length 5, 7s - Timeout Interval TLV (0x0005) TLV, length 5, 5s - Device Name TLV (0x0006) TLV, length 6, S2 - Sequence Number TLV (0x0007) TLV, length 8, 5 -UDLDv1, Code Echo message (2), Flags [RT] (0x00), length 80 - Checksum 0x805a (unverified) - Device-ID TLV (0x0001) TLV, length 15, FOC1031Z7JG - Port-ID TLV (0x0002) TLV, length 9, Gi0/1 - Echo TLV (0x0003) TLV, length 28, ^@^@^@^A^@^KFOC1025X4W3^@^EFa0/1 - Message Interval TLV (0x0004) TLV, length 5, 7s - Timeout Interval TLV (0x0005) TLV, length 5, 5s - Device Name TLV (0x0006) TLV, length 6, S1 - Sequence Number TLV (0x0007) TLV, length 8, 5 -UDLDv1, Code Probe message (1), Flags [RT, RSY] (0x01), length 80 - Checksum 0x795c (unverified) - Device-ID TLV (0x0001) TLV, length 15, FOC1025X4W3 - Port-ID TLV (0x0002) TLV, length 9, Fa0/1 - Echo TLV (0x0003) TLV, length 28, ^@^@^@^A^@^KFOC1031Z7JG^@^EGi0/1 - Message Interval TLV (0x0004) TLV, length 5, 15s - Timeout Interval TLV (0x0005) TLV, length 5, 5s - Device Name TLV (0x0006) TLV, length 6, S2 - Sequence Number TLV (0x0007) TLV, length 8, 1 -UDLDv1, Code Probe message (1), Flags [RT, RSY] (0x01), length 80 - Checksum 0x795d (unverified) - Device-ID TLV (0x0001) TLV, length 15, FOC1031Z7JG - Port-ID TLV (0x0002) TLV, length 9, Gi0/1 - Echo TLV (0x0003) TLV, length 28, ^@^@^@^A^@^KFOC1025X4W3^@^EFa0/1 - Message Interval TLV (0x0004) TLV, length 5, 15s - Timeout Interval TLV (0x0005) TLV, length 5, 5s - Device Name TLV (0x0006) TLV, length 6, S1 - Sequence Number TLV (0x0007) TLV, length 8, 1 -UDLDv1, Code Probe message (1), Flags [RT, RSY] (0x01), length 80 - Checksum 0x795b (unverified) - Device-ID TLV (0x0001) TLV, length 15, FOC1025X4W3 - Port-ID TLV (0x0002) TLV, length 9, Fa0/1 - Echo TLV (0x0003) TLV, length 28, ^@^@^@^A^@^KFOC1031Z7JG^@^EGi0/1 - Message Interval TLV (0x0004) TLV, length 5, 15s - Timeout Interval TLV (0x0005) TLV, length 5, 5s - Device Name TLV (0x0006) TLV, length 6, S2 - Sequence Number TLV (0x0007) TLV, length 8, 2 -UDLDv1, Code Probe message (1), Flags [RT, RSY] (0x01), length 80 - Checksum 0x795c (unverified) - Device-ID TLV (0x0001) TLV, length 15, FOC1031Z7JG - Port-ID TLV (0x0002) TLV, length 9, Gi0/1 - Echo TLV (0x0003) TLV, length 28, ^@^@^@^A^@^KFOC1025X4W3^@^EFa0/1 - Message Interval TLV (0x0004) TLV, length 5, 15s - Timeout Interval TLV (0x0005) TLV, length 5, 5s - Device Name TLV (0x0006) TLV, length 6, S1 - Sequence Number TLV (0x0007) TLV, length 8, 2 -UDLDv1, Code Probe message (1), Flags [RT, RSY] (0x01), length 80 - Checksum 0x795a (unverified) - Device-ID TLV (0x0001) TLV, length 15, FOC1025X4W3 - Port-ID TLV (0x0002) TLV, length 9, Fa0/1 - Echo TLV (0x0003) TLV, length 28, ^@^@^@^A^@^KFOC1031Z7JG^@^EGi0/1 - Message Interval TLV (0x0004) TLV, length 5, 15s - Timeout Interval TLV (0x0005) TLV, length 5, 5s - Device Name TLV (0x0006) TLV, length 6, S2 - Sequence Number TLV (0x0007) TLV, length 8, 3 -UDLDv1, Code Probe message (1), Flags [RT, RSY] (0x01), length 80 - Checksum 0x795b (unverified) - Device-ID TLV (0x0001) TLV, length 15, FOC1031Z7JG - Port-ID TLV (0x0002) TLV, length 9, Gi0/1 - Echo TLV (0x0003) TLV, length 28, ^@^@^@^A^@^KFOC1025X4W3^@^EFa0/1 - Message Interval TLV (0x0004) TLV, length 5, 15s - Timeout Interval TLV (0x0005) TLV, length 5, 5s - Device Name TLV (0x0006) TLV, length 6, S1 - Sequence Number TLV (0x0007) TLV, length 8, 3 -UDLDv1, Code Probe message (1), Flags [RT, RSY] (0x01), length 80 - Checksum 0x7959 (unverified) - Device-ID TLV (0x0001) TLV, length 15, FOC1025X4W3 - Port-ID TLV (0x0002) TLV, length 9, Fa0/1 - Echo TLV (0x0003) TLV, length 28, ^@^@^@^A^@^KFOC1031Z7JG^@^EGi0/1 - Message Interval TLV (0x0004) TLV, length 5, 15s - Timeout Interval TLV (0x0005) TLV, length 5, 5s - Device Name TLV (0x0006) TLV, length 6, S2 - Sequence Number TLV (0x0007) TLV, length 8, 4 -UDLDv1, Code Probe message (1), Flags [RT, RSY] (0x01), length 80 - Checksum 0x795a (unverified) - Device-ID TLV (0x0001) TLV, length 15, FOC1031Z7JG - Port-ID TLV (0x0002) TLV, length 9, Gi0/1 - Echo TLV (0x0003) TLV, length 28, ^@^@^@^A^@^KFOC1025X4W3^@^EFa0/1 - Message Interval TLV (0x0004) TLV, length 5, 15s - Timeout Interval TLV (0x0005) TLV, length 5, 5s - Device Name TLV (0x0006) TLV, length 6, S1 - Sequence Number TLV (0x0007) TLV, length 8, 4 -UDLDv1, Code Probe message (1), Flags [RT, RSY] (0x01), length 80 - Checksum 0x7958 (unverified) - Device-ID TLV (0x0001) TLV, length 15, FOC1025X4W3 - Port-ID TLV (0x0002) TLV, length 9, Fa0/1 - Echo TLV (0x0003) TLV, length 28, ^@^@^@^A^@^KFOC1031Z7JG^@^EGi0/1 - Message Interval TLV (0x0004) TLV, length 5, 15s - Timeout Interval TLV (0x0005) TLV, length 5, 5s - Device Name TLV (0x0006) TLV, length 6, S2 - Sequence Number TLV (0x0007) TLV, length 8, 5 -UDLDv1, Code Probe message (1), Flags [RT, RSY] (0x01), length 80 - Checksum 0x7959 (unverified) - Device-ID TLV (0x0001) TLV, length 15, FOC1031Z7JG - Port-ID TLV (0x0002) TLV, length 9, Gi0/1 - Echo TLV (0x0003) TLV, length 28, ^@^@^@^A^@^KFOC1025X4W3^@^EFa0/1 - Message Interval TLV (0x0004) TLV, length 5, 15s - Timeout Interval TLV (0x0005) TLV, length 5, 5s - Device Name TLV (0x0006) TLV, length 6, S1 - Sequence Number TLV (0x0007) TLV, length 8, 5 -UDLDv1, Code Probe message (1), Flags [RT, RSY] (0x01), length 80 - Checksum 0x7957 (unverified) - Device-ID TLV (0x0001) TLV, length 15, FOC1025X4W3 - Port-ID TLV (0x0002) TLV, length 9, Fa0/1 - Echo TLV (0x0003) TLV, length 28, ^@^@^@^A^@^KFOC1031Z7JG^@^EGi0/1 - Message Interval TLV (0x0004) TLV, length 5, 15s - Timeout Interval TLV (0x0005) TLV, length 5, 5s - Device Name TLV (0x0006) TLV, length 6, S2 - Sequence Number TLV (0x0007) TLV, length 8, 6 -UDLDv1, Code Probe message (1), Flags [RT, RSY] (0x01), length 80 - Checksum 0x7958 (unverified) - Device-ID TLV (0x0001) TLV, length 15, FOC1031Z7JG - Port-ID TLV (0x0002) TLV, length 9, Gi0/1 - Echo TLV (0x0003) TLV, length 28, ^@^@^@^A^@^KFOC1025X4W3^@^EFa0/1 - Message Interval TLV (0x0004) TLV, length 5, 15s - Timeout Interval TLV (0x0005) TLV, length 5, 5s - Device Name TLV (0x0006) TLV, length 6, S1 - Sequence Number TLV (0x0007) TLV, length 8, 6 -UDLDv1, Code Probe message (1), Flags [RT, RSY] (0x01), length 80 - Checksum 0x7956 (unverified) - Device-ID TLV (0x0001) TLV, length 15, FOC1025X4W3 - Port-ID TLV (0x0002) TLV, length 9, Fa0/1 - Echo TLV (0x0003) TLV, length 28, ^@^@^@^A^@^KFOC1031Z7JG^@^EGi0/1 - Message Interval TLV (0x0004) TLV, length 5, 15s - Timeout Interval TLV (0x0005) TLV, length 5, 5s - Device Name TLV (0x0006) TLV, length 6, S2 - Sequence Number TLV (0x0007) TLV, length 8, 7 -UDLDv1, Code Probe message (1), Flags [RT, RSY] (0x01), length 80 - Checksum 0x7957 (unverified) - Device-ID TLV (0x0001) TLV, length 15, FOC1031Z7JG - Port-ID TLV (0x0002) TLV, length 9, Gi0/1 - Echo TLV (0x0003) TLV, length 28, ^@^@^@^A^@^KFOC1025X4W3^@^EFa0/1 - Message Interval TLV (0x0004) TLV, length 5, 15s - Timeout Interval TLV (0x0005) TLV, length 5, 5s - Device Name TLV (0x0006) TLV, length 6, S1 - Sequence Number TLV (0x0007) TLV, length 8, 7 -UDLDv1, Code Probe message (1), Flags [RT, RSY] (0x01), length 80 - Checksum 0x7955 (unverified) - Device-ID TLV (0x0001) TLV, length 15, FOC1025X4W3 - Port-ID TLV (0x0002) TLV, length 9, Fa0/1 - Echo TLV (0x0003) TLV, length 28, ^@^@^@^A^@^KFOC1031Z7JG^@^EGi0/1 - Message Interval TLV (0x0004) TLV, length 5, 15s - Timeout Interval TLV (0x0005) TLV, length 5, 5s - Device Name TLV (0x0006) TLV, length 6, S2 - Sequence Number TLV (0x0007) TLV, length 8, 8 -UDLDv1, Code Probe message (1), Flags [RT, RSY] (0x01), length 80 - Checksum 0x7956 (unverified) - Device-ID TLV (0x0001) TLV, length 15, FOC1031Z7JG - Port-ID TLV (0x0002) TLV, length 9, Gi0/1 - Echo TLV (0x0003) TLV, length 28, ^@^@^@^A^@^KFOC1025X4W3^@^EFa0/1 - Message Interval TLV (0x0004) TLV, length 5, 15s - Timeout Interval TLV (0x0005) TLV, length 5, 5s - Device Name TLV (0x0006) TLV, length 6, S1 - Sequence Number TLV (0x0007) TLV, length 8, 8 -UDLDv1, Code Probe message (1), Flags [RT, RSY] (0x01), length 80 - Checksum 0x7954 (unverified) - Device-ID TLV (0x0001) TLV, length 15, FOC1025X4W3 - Port-ID TLV (0x0002) TLV, length 9, Fa0/1 - Echo TLV (0x0003) TLV, length 28, ^@^@^@^A^@^KFOC1031Z7JG^@^EGi0/1 - Message Interval TLV (0x0004) TLV, length 5, 15s - Timeout Interval TLV (0x0005) TLV, length 5, 5s - Device Name TLV (0x0006) TLV, length 6, S2 - Sequence Number TLV (0x0007) TLV, length 8, 9 -UDLDv1, Code Probe message (1), Flags [RT, RSY] (0x01), length 80 - Checksum 0x7955 (unverified) - Device-ID TLV (0x0001) TLV, length 15, FOC1031Z7JG - Port-ID TLV (0x0002) TLV, length 9, Gi0/1 - Echo TLV (0x0003) TLV, length 28, ^@^@^@^A^@^KFOC1025X4W3^@^EFa0/1 - Message Interval TLV (0x0004) TLV, length 5, 15s - Timeout Interval TLV (0x0005) TLV, length 5, 5s - Device Name TLV (0x0006) TLV, length 6, S1 - Sequence Number TLV (0x0007) TLV, length 8, 9 diff --git a/tests/unaligned-nfs-1.out b/tests/unaligned-nfs-1.out deleted file mode 100644 index e74aa30..0000000 --- a/tests/unaligned-nfs-1.out +++ /dev/null @@ -1,2 +0,0 @@ -IP (tos 0x0, ttl 63, id 38810, offset 0, flags [DF], proto TCP (6), length 168) - 128.112.130.130.2049 > 140.180.226.200.1023: Flags [P.], cksum 0x6f82 (correct), seq 271994717:271994833, ack 3625862383, win 12274, options [nop,nop,TS val 801481683 ecr 243357584], length 116: NFS reply xid 3532485149 reply ok 112 diff --git a/tests/unaligned-nfs-1.pcap b/tests/unaligned-nfs-1.pcap deleted file mode 100644 index 5f12c13..0000000 Binary files a/tests/unaligned-nfs-1.pcap and /dev/null differ diff --git a/tests/vrrp-v.out b/tests/vrrp-v.out deleted file mode 100644 index 47b3c7d..0000000 --- a/tests/vrrp-v.out +++ /dev/null @@ -1,266 +0,0 @@ -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) - 10.0.0.91 > 224.0.0.18: vrrp 10.0.0.91 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 191, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) - 10.0.0.91 > 224.0.0.18: vrrp 10.0.0.91 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 191, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) - 10.0.0.91 > 224.0.0.18: vrrp 10.0.0.91 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 191, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) - 10.0.0.91 > 224.0.0.18: vrrp 10.0.0.91 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 191, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) - 10.0.0.91 > 224.0.0.18: vrrp 10.0.0.91 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 191, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 -IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::d6ca:6dff:fe66:cf60 > ff02::12: ip-proto-112 40 -IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::d6ca:6dff:fe66:cf60 > ff02::12: ip-proto-112 88 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) - 10.0.0.91 > 224.0.0.18: vrrp 10.0.0.91 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 191, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) - 10.0.0.91 > 224.0.0.18: vrrp 10.0.0.91 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 191, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) - 10.0.0.91 > 224.0.0.18: vrrp 10.0.0.91 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 191, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 -IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::d6ca:6dff:fe66:cf60 > ff02::12: ip-proto-112 88 -IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::d6ca:6dff:fe66:cf60 > ff02::12: ip-proto-112 40 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) - 10.0.0.91 > 224.0.0.18: vrrp 10.0.0.91 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 191, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) - 10.0.0.92 > 224.0.0.18: vrrp 10.0.0.92 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 192, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) - 10.0.0.92 > 224.0.0.18: vrrp 10.0.0.92 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 192, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) - 10.0.0.92 > 224.0.0.18: vrrp 10.0.0.92 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 192, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 -IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::d6ca:6dff:fe66:cf60 > ff02::12: ip-proto-112 40 -IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::d6ca:6dff:fe66:cf60 > ff02::12: ip-proto-112 88 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) - 10.0.0.92 > 224.0.0.18: vrrp 10.0.0.92 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 192, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) - 10.0.0.92 > 224.0.0.18: vrrp 10.0.0.92 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 192, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) - 10.0.0.92 > 224.0.0.18: vrrp 10.0.0.92 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 192, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 -IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::d6ca:6dff:fe72:b1da > ff02::12: ip-proto-112 88 -IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::d6ca:6dff:fe72:b1da > ff02::12: ip-proto-112 40 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) - 10.0.0.92 > 224.0.0.18: vrrp 10.0.0.92 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 192, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) - 10.0.0.92 > 224.0.0.18: vrrp 10.0.0.92 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 192, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) - 10.0.0.92 > 224.0.0.18: vrrp 10.0.0.92 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 192, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 -IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::d6ca:6dff:fe72:b1da > ff02::12: ip-proto-112 40 -IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::d6ca:6dff:fe72:b1da > ff02::12: ip-proto-112 88 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) - 10.0.0.93 > 224.0.0.18: vrrp 10.0.0.93 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 193, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) - 10.0.0.93 > 224.0.0.18: vrrp 10.0.0.93 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 193, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) - 10.0.0.93 > 224.0.0.18: vrrp 10.0.0.93 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 193, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 -IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::d6ca:6dff:fe72:b1da > ff02::12: ip-proto-112 88 -IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::d6ca:6dff:fe72:b1da > ff02::12: ip-proto-112 40 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) - 10.0.0.93 > 224.0.0.18: vrrp 10.0.0.93 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 193, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) - 10.0.0.93 > 224.0.0.18: vrrp 10.0.0.93 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 193, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 -IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::d6ca:6dff:fe66:cf65 > ff02::12: ip-proto-112 88 -IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::d6ca:6dff:fe66:cf65 > ff02::12: ip-proto-112 40 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) - 10.0.0.93 > 224.0.0.18: vrrp 10.0.0.93 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 193, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) - 10.0.0.93 > 224.0.0.18: vrrp 10.0.0.93 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 193, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) - 10.0.0.93 > 224.0.0.18: vrrp 10.0.0.93 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 193, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 -IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::d6ca:6dff:fe66:cf65 > ff02::12: ip-proto-112 88 -IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::d6ca:6dff:fe66:cf65 > ff02::12: ip-proto-112 40 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) - 10.0.0.93 > 224.0.0.18: vrrp 10.0.0.93 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 193, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) - 10.0.0.93 > 224.0.0.18: vrrp 10.0.0.93 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 193, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) - 10.0.0.93 > 224.0.0.18: vrrp 10.0.0.93 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 193, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" -IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::d6ca:6dff:fe66:cf65 > ff02::12: ip-proto-112 88 -IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::d6ca:6dff:fe66:cf65 > ff02::12: ip-proto-112 40 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) - 10.0.0.93 > 224.0.0.18: vrrp 10.0.0.93 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 193, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) - 10.0.0.94 > 224.0.0.18: vrrp 10.0.0.94 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 194, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) - 10.0.0.94 > 224.0.0.18: vrrp 10.0.0.94 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 194, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) - 10.0.0.94 > 224.0.0.18: vrrp 10.0.0.94 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 194, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 -IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::d6ca:6dff:fe66:cf65 > ff02::12: ip-proto-112 88 -IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::d6ca:6dff:fe66:cf65 > ff02::12: ip-proto-112 40 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) - 10.0.0.94 > 224.0.0.18: vrrp 10.0.0.94 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 194, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) - 10.0.0.94 > 224.0.0.18: vrrp 10.0.0.94 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 194, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 -IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::d6ca:6dff:fe65:d45c > ff02::12: ip-proto-112 40 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) - 10.0.0.94 > 224.0.0.18: vrrp 10.0.0.94 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 194, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 -IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::d6ca:6dff:fe65:d45c > ff02::12: ip-proto-112 88 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) - 10.0.0.94 > 224.0.0.18: vrrp 10.0.0.94 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 194, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) - 10.0.0.94 > 224.0.0.18: vrrp 10.0.0.94 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 194, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) - 10.0.0.94 > 224.0.0.18: vrrp 10.0.0.94 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 194, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 -IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::d6ca:6dff:fe65:d45c > ff02::12: ip-proto-112 40 -IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::d6ca:6dff:fe65:d45c > ff02::12: ip-proto-112 88 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) - 10.0.0.94 > 224.0.0.18: vrrp 10.0.0.94 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 194, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) - 10.0.0.94 > 224.0.0.18: vrrp 10.0.0.94 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 194, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 -IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::d6ca:6dff:fe65:d45c > ff02::12: ip-proto-112 40 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) - 10.0.0.94 > 224.0.0.18: vrrp 10.0.0.94 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 194, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 -IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::d6ca:6dff:fe65:d45c > ff02::12: ip-proto-112 88 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) - 10.0.0.94 > 224.0.0.18: vrrp 10.0.0.94 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 194, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) - 10.0.0.94 > 224.0.0.18: vrrp 10.0.0.94 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 194, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) - 10.0.0.94 > 224.0.0.18: vrrp 10.0.0.94 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 194, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 -IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::d6ca:6dff:fe65:d45c > ff02::12: ip-proto-112 40 -IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::d6ca:6dff:fe65:d45c > ff02::12: ip-proto-112 88 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) - 10.0.0.95 > 224.0.0.18: vrrp 10.0.0.95 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 195, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) - 10.0.0.95 > 224.0.0.18: vrrp 10.0.0.95 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 195, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) - 10.0.0.95 > 224.0.0.18: vrrp 10.0.0.95 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 195, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 -IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::d6ca:6dff:fe65:d45c > ff02::12: ip-proto-112 40 -IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::d6ca:6dff:fe65:d45c > ff02::12: ip-proto-112 88 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) - 10.0.0.95 > 224.0.0.18: vrrp 10.0.0.95 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 195, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) - 10.0.0.95 > 224.0.0.18: vrrp 10.0.0.95 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 195, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) - 10.0.0.95 > 224.0.0.18: vrrp 10.0.0.95 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 195, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 -IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::d6ca:6dff:fe65:d46b > ff02::12: ip-proto-112 40 -IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::d6ca:6dff:fe65:d46b > ff02::12: ip-proto-112 88 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) - 10.0.0.95 > 224.0.0.18: vrrp 10.0.0.95 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 195, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) - 10.0.0.95 > 224.0.0.18: vrrp 10.0.0.95 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 195, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 -IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::d6ca:6dff:fe65:d46b > ff02::12: ip-proto-112 40 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) - 10.0.0.95 > 224.0.0.18: vrrp 10.0.0.95 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 195, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 -IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::d6ca:6dff:fe65:d46b > ff02::12: ip-proto-112 88 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) - 10.0.0.95 > 224.0.0.18: vrrp 10.0.0.95 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 195, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) - 10.0.0.95 > 224.0.0.18: vrrp 10.0.0.95 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 195, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) - 10.0.0.95 > 224.0.0.18: vrrp 10.0.0.95 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 195, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 -IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::d6ca:6dff:fe65:d46b > ff02::12: ip-proto-112 40 -IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::d6ca:6dff:fe65:d46b > ff02::12: ip-proto-112 88 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) - 10.0.0.96 > 224.0.0.18: vrrp 10.0.0.96 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 196, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) - 10.0.0.96 > 224.0.0.18: vrrp 10.0.0.96 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 196, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) - 10.0.0.96 > 224.0.0.18: vrrp 10.0.0.96 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 196, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 -IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::d6ca:6dff:fe65:d46b > ff02::12: ip-proto-112 40 -IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::d6ca:6dff:fe65:d46b > ff02::12: ip-proto-112 88 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) - 10.0.0.96 > 224.0.0.18: vrrp 10.0.0.96 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 196, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) - 10.0.0.96 > 224.0.0.18: vrrp 10.0.0.96 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 196, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 -IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::d6ca:6dff:fe72:b1e4 > ff02::12: ip-proto-112 40 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) - 10.0.0.96 > 224.0.0.18: vrrp 10.0.0.96 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 196, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 -IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::d6ca:6dff:fe72:b1e4 > ff02::12: ip-proto-112 88 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) - 10.0.0.96 > 224.0.0.18: vrrp 10.0.0.96 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 196, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) - 10.0.0.96 > 224.0.0.18: vrrp 10.0.0.96 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 196, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 -IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::d6ca:6dff:fe72:b1e4 > ff02::12: ip-proto-112 40 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) - 10.0.0.96 > 224.0.0.18: vrrp 10.0.0.96 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 196, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 -IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::d6ca:6dff:fe72:b1e4 > ff02::12: ip-proto-112 88 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) - 10.0.0.96 > 224.0.0.18: vrrp 10.0.0.96 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 196, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) - 10.0.0.96 > 224.0.0.18: vrrp 10.0.0.96 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 196, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" -IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::d6ca:6dff:fe72:b1e4 > ff02::12: ip-proto-112 40 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) - 10.0.0.96 > 224.0.0.18: vrrp 10.0.0.96 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 196, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 -IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::d6ca:6dff:fe72:b1e4 > ff02::12: ip-proto-112 88 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) - 10.0.0.96 > 224.0.0.18: vrrp 10.0.0.96 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 196, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) - 10.0.0.96 > 224.0.0.18: vrrp 10.0.0.96 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 196, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 -IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::d6ca:6dff:fe72:b1e4 > ff02::12: ip-proto-112 40 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) - 10.0.0.96 > 224.0.0.18: vrrp 10.0.0.96 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 196, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 -IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::d6ca:6dff:fe72:b1e4 > ff02::12: ip-proto-112 88 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) - 10.0.0.97 > 224.0.0.18: vrrp 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 197, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) - 10.0.0.97 > 224.0.0.18: vrrp 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 197, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) - 10.0.0.97 > 224.0.0.18: vrrp 10.0.0.97 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 197, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 -IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::d6ca:6dff:fe72:b1e4 > ff02::12: ip-proto-112 40 -IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::d6ca:6dff:fe72:b1e4 > ff02::12: ip-proto-112 88 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) - 10.0.0.97 > 224.0.0.18: vrrp 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 197, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) - 10.0.0.97 > 224.0.0.18: vrrp 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 197, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 -IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 40 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) - 10.0.0.97 > 224.0.0.18: vrrp 10.0.0.97 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 197, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 -IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 88 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) - 10.0.0.97 > 224.0.0.18: vrrp 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 197, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) - 10.0.0.97 > 224.0.0.18: vrrp 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 197, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" -IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 40 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) - 10.0.0.97 > 224.0.0.18: vrrp 10.0.0.97 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 197, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 -IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 88 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) - 10.0.0.97 > 224.0.0.18: vrrp 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 197, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) - 10.0.0.97 > 224.0.0.18: vrrp 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 197, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 -IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 40 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) - 10.0.0.97 > 224.0.0.18: vrrp 10.0.0.97 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 197, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 -IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 88 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) - 10.0.0.97 > 224.0.0.18: vrrp 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 197, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) - 10.0.0.97 > 224.0.0.18: vrrp 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 197, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" -IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 40 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) - 10.0.0.97 > 224.0.0.18: vrrp 10.0.0.97 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 197, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 -IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 88 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) - 10.0.0.97 > 224.0.0.18: vrrp 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 197, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) - 10.0.0.97 > 224.0.0.18: vrrp 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 197, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 -IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 40 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) - 10.0.0.97 > 224.0.0.18: vrrp 10.0.0.97 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 197, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 -IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 88 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) - 10.0.0.97 > 224.0.0.18: vrrp 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 197, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) - 10.0.0.97 > 224.0.0.18: vrrp 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 197, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" -IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 40 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) - 10.0.0.97 > 224.0.0.18: vrrp 10.0.0.97 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 197, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 -IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 88 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) - 10.0.0.97 > 224.0.0.18: vrrp 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 197, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) - 10.0.0.97 > 224.0.0.18: vrrp 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 197, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 -IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 40 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) - 10.0.0.97 > 224.0.0.18: vrrp 10.0.0.97 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 197, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 -IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 88 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) - 10.0.0.97 > 224.0.0.18: vrrp 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 197, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) - 10.0.0.97 > 224.0.0.18: vrrp 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 197, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" -IP6 (hlim 255, next-header VRRP (112) payload length: 40) fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 40 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 36) - 10.0.0.97 > 224.0.0.18: vrrp 10.0.0.97 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 197, intvl 1000cs, length 16, addrs(2): 10.4.44.100,10.4.44.200 -IP6 (hlim 255, next-header VRRP (112) payload length: 88) fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 88 -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 48) - 10.0.0.97 > 224.0.0.18: vrrp 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 197, authtype simple, intvl 10s, length 28, addrs(3): 10.4.42.1,10.4.42.2,10.4.42.3 auth "abcdefgh" -IP (tos 0x0, ttl 255, id 4660, offset 0, flags [none], proto VRRP (112), length 40) - 10.0.0.97 > 224.0.0.18: vrrp 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 197, authtype none, intvl 10s, length 20, addrs: 10.4.43.150 diff --git a/tests/vrrp.out b/tests/vrrp.out deleted file mode 100644 index c9b1664..0000000 --- a/tests/vrrp.out +++ /dev/null @@ -1,165 +0,0 @@ -IP 10.0.0.91 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 191, authtype simple, intvl 10s, length 28 -IP 10.0.0.91 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 191, authtype none, intvl 10s, length 20 -IP 10.0.0.91 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 191, intvl 1000cs, length 16 -IP 10.0.0.91 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 191, authtype simple, intvl 10s, length 28 -IP 10.0.0.91 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 191, authtype none, intvl 10s, length 20 -IP6 fe80::d6ca:6dff:fe66:cf60 > ff02::12: ip-proto-112 40 -IP6 fe80::d6ca:6dff:fe66:cf60 > ff02::12: ip-proto-112 88 -IP 10.0.0.91 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 191, intvl 1000cs, length 16 -IP 10.0.0.91 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 191, authtype simple, intvl 10s, length 28 -IP 10.0.0.91 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 191, authtype none, intvl 10s, length 20 -IP6 fe80::d6ca:6dff:fe66:cf60 > ff02::12: ip-proto-112 88 -IP6 fe80::d6ca:6dff:fe66:cf60 > ff02::12: ip-proto-112 40 -IP 10.0.0.91 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 191, intvl 1000cs, length 16 -IP 10.0.0.92 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 192, authtype simple, intvl 10s, length 28 -IP 10.0.0.92 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 192, authtype none, intvl 10s, length 20 -IP 10.0.0.92 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 192, intvl 1000cs, length 16 -IP6 fe80::d6ca:6dff:fe66:cf60 > ff02::12: ip-proto-112 40 -IP6 fe80::d6ca:6dff:fe66:cf60 > ff02::12: ip-proto-112 88 -IP 10.0.0.92 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 192, authtype simple, intvl 10s, length 28 -IP 10.0.0.92 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 192, authtype none, intvl 10s, length 20 -IP 10.0.0.92 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 192, intvl 1000cs, length 16 -IP6 fe80::d6ca:6dff:fe72:b1da > ff02::12: ip-proto-112 88 -IP6 fe80::d6ca:6dff:fe72:b1da > ff02::12: ip-proto-112 40 -IP 10.0.0.92 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 192, authtype simple, intvl 10s, length 28 -IP 10.0.0.92 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 192, authtype none, intvl 10s, length 20 -IP 10.0.0.92 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 192, intvl 1000cs, length 16 -IP6 fe80::d6ca:6dff:fe72:b1da > ff02::12: ip-proto-112 40 -IP6 fe80::d6ca:6dff:fe72:b1da > ff02::12: ip-proto-112 88 -IP 10.0.0.93 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 193, authtype simple, intvl 10s, length 28 -IP 10.0.0.93 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 193, authtype none, intvl 10s, length 20 -IP 10.0.0.93 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 193, intvl 1000cs, length 16 -IP6 fe80::d6ca:6dff:fe72:b1da > ff02::12: ip-proto-112 88 -IP6 fe80::d6ca:6dff:fe72:b1da > ff02::12: ip-proto-112 40 -IP 10.0.0.93 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 193, authtype simple, intvl 10s, length 28 -IP 10.0.0.93 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 193, authtype none, intvl 10s, length 20 -IP6 fe80::d6ca:6dff:fe66:cf65 > ff02::12: ip-proto-112 88 -IP6 fe80::d6ca:6dff:fe66:cf65 > ff02::12: ip-proto-112 40 -IP 10.0.0.93 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 193, intvl 1000cs, length 16 -IP 10.0.0.93 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 193, authtype simple, intvl 10s, length 28 -IP 10.0.0.93 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 193, authtype none, intvl 10s, length 20 -IP6 fe80::d6ca:6dff:fe66:cf65 > ff02::12: ip-proto-112 88 -IP6 fe80::d6ca:6dff:fe66:cf65 > ff02::12: ip-proto-112 40 -IP 10.0.0.93 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 193, intvl 1000cs, length 16 -IP 10.0.0.93 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 193, authtype none, intvl 10s, length 20 -IP 10.0.0.93 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 193, authtype simple, intvl 10s, length 28 -IP6 fe80::d6ca:6dff:fe66:cf65 > ff02::12: ip-proto-112 88 -IP6 fe80::d6ca:6dff:fe66:cf65 > ff02::12: ip-proto-112 40 -IP 10.0.0.93 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 193, intvl 1000cs, length 16 -IP 10.0.0.94 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 194, authtype simple, intvl 10s, length 28 -IP 10.0.0.94 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 194, authtype none, intvl 10s, length 20 -IP 10.0.0.94 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 194, intvl 1000cs, length 16 -IP6 fe80::d6ca:6dff:fe66:cf65 > ff02::12: ip-proto-112 88 -IP6 fe80::d6ca:6dff:fe66:cf65 > ff02::12: ip-proto-112 40 -IP 10.0.0.94 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 194, authtype simple, intvl 10s, length 28 -IP 10.0.0.94 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 194, authtype none, intvl 10s, length 20 -IP6 fe80::d6ca:6dff:fe65:d45c > ff02::12: ip-proto-112 40 -IP 10.0.0.94 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 194, intvl 1000cs, length 16 -IP6 fe80::d6ca:6dff:fe65:d45c > ff02::12: ip-proto-112 88 -IP 10.0.0.94 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 194, authtype simple, intvl 10s, length 28 -IP 10.0.0.94 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 194, authtype none, intvl 10s, length 20 -IP 10.0.0.94 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 194, intvl 1000cs, length 16 -IP6 fe80::d6ca:6dff:fe65:d45c > ff02::12: ip-proto-112 40 -IP6 fe80::d6ca:6dff:fe65:d45c > ff02::12: ip-proto-112 88 -IP 10.0.0.94 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 194, authtype simple, intvl 10s, length 28 -IP 10.0.0.94 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 194, authtype none, intvl 10s, length 20 -IP6 fe80::d6ca:6dff:fe65:d45c > ff02::12: ip-proto-112 40 -IP 10.0.0.94 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 194, intvl 1000cs, length 16 -IP6 fe80::d6ca:6dff:fe65:d45c > ff02::12: ip-proto-112 88 -IP 10.0.0.94 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 194, authtype simple, intvl 10s, length 28 -IP 10.0.0.94 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 194, authtype none, intvl 10s, length 20 -IP 10.0.0.94 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 194, intvl 1000cs, length 16 -IP6 fe80::d6ca:6dff:fe65:d45c > ff02::12: ip-proto-112 40 -IP6 fe80::d6ca:6dff:fe65:d45c > ff02::12: ip-proto-112 88 -IP 10.0.0.95 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 195, authtype simple, intvl 10s, length 28 -IP 10.0.0.95 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 195, authtype none, intvl 10s, length 20 -IP 10.0.0.95 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 195, intvl 1000cs, length 16 -IP6 fe80::d6ca:6dff:fe65:d45c > ff02::12: ip-proto-112 40 -IP6 fe80::d6ca:6dff:fe65:d45c > ff02::12: ip-proto-112 88 -IP 10.0.0.95 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 195, authtype simple, intvl 10s, length 28 -IP 10.0.0.95 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 195, authtype none, intvl 10s, length 20 -IP 10.0.0.95 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 195, intvl 1000cs, length 16 -IP6 fe80::d6ca:6dff:fe65:d46b > ff02::12: ip-proto-112 40 -IP6 fe80::d6ca:6dff:fe65:d46b > ff02::12: ip-proto-112 88 -IP 10.0.0.95 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 195, authtype simple, intvl 10s, length 28 -IP 10.0.0.95 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 195, authtype none, intvl 10s, length 20 -IP6 fe80::d6ca:6dff:fe65:d46b > ff02::12: ip-proto-112 40 -IP 10.0.0.95 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 195, intvl 1000cs, length 16 -IP6 fe80::d6ca:6dff:fe65:d46b > ff02::12: ip-proto-112 88 -IP 10.0.0.95 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 195, authtype simple, intvl 10s, length 28 -IP 10.0.0.95 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 195, authtype none, intvl 10s, length 20 -IP 10.0.0.95 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 195, intvl 1000cs, length 16 -IP6 fe80::d6ca:6dff:fe65:d46b > ff02::12: ip-proto-112 40 -IP6 fe80::d6ca:6dff:fe65:d46b > ff02::12: ip-proto-112 88 -IP 10.0.0.96 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 196, authtype simple, intvl 10s, length 28 -IP 10.0.0.96 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 196, authtype none, intvl 10s, length 20 -IP 10.0.0.96 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 196, intvl 1000cs, length 16 -IP6 fe80::d6ca:6dff:fe65:d46b > ff02::12: ip-proto-112 40 -IP6 fe80::d6ca:6dff:fe65:d46b > ff02::12: ip-proto-112 88 -IP 10.0.0.96 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 196, authtype simple, intvl 10s, length 28 -IP 10.0.0.96 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 196, authtype none, intvl 10s, length 20 -IP6 fe80::d6ca:6dff:fe72:b1e4 > ff02::12: ip-proto-112 40 -IP 10.0.0.96 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 196, intvl 1000cs, length 16 -IP6 fe80::d6ca:6dff:fe72:b1e4 > ff02::12: ip-proto-112 88 -IP 10.0.0.96 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 196, authtype simple, intvl 10s, length 28 -IP 10.0.0.96 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 196, authtype none, intvl 10s, length 20 -IP6 fe80::d6ca:6dff:fe72:b1e4 > ff02::12: ip-proto-112 40 -IP 10.0.0.96 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 196, intvl 1000cs, length 16 -IP6 fe80::d6ca:6dff:fe72:b1e4 > ff02::12: ip-proto-112 88 -IP 10.0.0.96 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 196, authtype none, intvl 10s, length 20 -IP 10.0.0.96 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 196, authtype simple, intvl 10s, length 28 -IP6 fe80::d6ca:6dff:fe72:b1e4 > ff02::12: ip-proto-112 40 -IP 10.0.0.96 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 196, intvl 1000cs, length 16 -IP6 fe80::d6ca:6dff:fe72:b1e4 > ff02::12: ip-proto-112 88 -IP 10.0.0.96 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 196, authtype simple, intvl 10s, length 28 -IP 10.0.0.96 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 196, authtype none, intvl 10s, length 20 -IP6 fe80::d6ca:6dff:fe72:b1e4 > ff02::12: ip-proto-112 40 -IP 10.0.0.96 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 196, intvl 1000cs, length 16 -IP6 fe80::d6ca:6dff:fe72:b1e4 > ff02::12: ip-proto-112 88 -IP 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 197, authtype simple, intvl 10s, length 28 -IP 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 197, authtype none, intvl 10s, length 20 -IP 10.0.0.97 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 197, intvl 1000cs, length 16 -IP6 fe80::d6ca:6dff:fe72:b1e4 > ff02::12: ip-proto-112 40 -IP6 fe80::d6ca:6dff:fe72:b1e4 > ff02::12: ip-proto-112 88 -IP 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 197, authtype simple, intvl 10s, length 28 -IP 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 197, authtype none, intvl 10s, length 20 -IP6 fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 40 -IP 10.0.0.97 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 197, intvl 1000cs, length 16 -IP6 fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 88 -IP 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 197, authtype none, intvl 10s, length 20 -IP 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 197, authtype simple, intvl 10s, length 28 -IP6 fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 40 -IP 10.0.0.97 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 197, intvl 1000cs, length 16 -IP6 fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 88 -IP 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 197, authtype simple, intvl 10s, length 28 -IP 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 197, authtype none, intvl 10s, length 20 -IP6 fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 40 -IP 10.0.0.97 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 197, intvl 1000cs, length 16 -IP6 fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 88 -IP 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 197, authtype none, intvl 10s, length 20 -IP 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 197, authtype simple, intvl 10s, length 28 -IP6 fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 40 -IP 10.0.0.97 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 197, intvl 1000cs, length 16 -IP6 fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 88 -IP 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 197, authtype simple, intvl 10s, length 28 -IP 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 197, authtype none, intvl 10s, length 20 -IP6 fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 40 -IP 10.0.0.97 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 197, intvl 1000cs, length 16 -IP6 fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 88 -IP 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 197, authtype none, intvl 10s, length 20 -IP 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 197, authtype simple, intvl 10s, length 28 -IP6 fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 40 -IP 10.0.0.97 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 197, intvl 1000cs, length 16 -IP6 fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 88 -IP 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 197, authtype simple, intvl 10s, length 28 -IP 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 197, authtype none, intvl 10s, length 20 -IP6 fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 40 -IP 10.0.0.97 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 197, intvl 1000cs, length 16 -IP6 fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 88 -IP 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 197, authtype none, intvl 10s, length 20 -IP 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 197, authtype simple, intvl 10s, length 28 -IP6 fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 40 -IP 10.0.0.97 > 224.0.0.18: VRRPv3, Advertisement, vrid 44, prio 197, intvl 1000cs, length 16 -IP6 fe80::20c:42ff:fe5e:c2dc > ff02::12: ip-proto-112 88 -IP 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 42, prio 197, authtype simple, intvl 10s, length 28 -IP 10.0.0.97 > 224.0.0.18: VRRPv2, Advertisement, vrid 43, prio 197, authtype none, intvl 10s, length 20 diff --git a/tests/vrrp.pcap b/tests/vrrp.pcap deleted file mode 100644 index 8db1e20..0000000 Binary files a/tests/vrrp.pcap and /dev/null differ diff --git a/tests/vxlan.out b/tests/vxlan.out deleted file mode 100644 index b422586..0000000 --- a/tests/vxlan.out +++ /dev/null @@ -1,20 +0,0 @@ - 1 36:dc:85:1e:b3:40 > 00:16:3e:08:71:cf, ethertype IPv4 (0x0800), length 148: 192.168.203.1.45149 > 192.168.202.1.4789: VXLAN, flags [I] (0x08), vni 100 -00:16:3e:37:f6:04 > 00:30:88:01:00:02, ethertype IPv4 (0x0800), length 98: 192.168.203.3 > 192.168.203.5: ICMP echo request, id 1292, seq 1, length 64 - 2 00:16:3e:08:71:cf > 36:dc:85:1e:b3:40, ethertype IPv4 (0x0800), length 92: 192.168.202.1.42710 > 192.168.203.1.4789: VXLAN, flags [I] (0x08), vni 100 -00:30:88:01:00:02 > ff:ff:ff:ff:ff:ff, ethertype ARP (0x0806), length 42: Request who-has 192.168.203.3 tell 192.168.203.5, length 28 - 3 36:dc:85:1e:b3:40 > 00:16:3e:08:71:cf, ethertype IPv4 (0x0800), length 92: 192.168.203.1.52102 > 192.168.202.1.4789: VXLAN, flags [I] (0x08), vni 100 -00:16:3e:37:f6:04 > 00:30:88:01:00:02, ethertype ARP (0x0806), length 42: Reply 192.168.203.3 is-at 00:16:3e:37:f6:04, length 28 - 4 00:16:3e:08:71:cf > 36:dc:85:1e:b3:40, ethertype IPv4 (0x0800), length 148: 192.168.202.1.32894 > 192.168.203.1.4789: VXLAN, flags [I] (0x08), vni 100 -00:30:88:01:00:02 > 00:16:3e:37:f6:04, ethertype IPv4 (0x0800), length 98: 192.168.203.5 > 192.168.203.3: ICMP echo reply, id 1292, seq 1, length 64 - 5 36:dc:85:1e:b3:40 > 00:16:3e:08:71:cf, ethertype IPv4 (0x0800), length 148: 192.168.203.1.45149 > 192.168.202.1.4789: VXLAN, flags [I] (0x08), vni 100 -00:16:3e:37:f6:04 > 00:30:88:01:00:02, ethertype IPv4 (0x0800), length 98: 192.168.203.3 > 192.168.203.5: ICMP echo request, id 1292, seq 2, length 64 - 6 00:16:3e:08:71:cf > 36:dc:85:1e:b3:40, ethertype IPv4 (0x0800), length 148: 192.168.202.1.32894 > 192.168.203.1.4789: VXLAN, flags [I] (0x08), vni 100 -00:30:88:01:00:02 > 00:16:3e:37:f6:04, ethertype IPv4 (0x0800), length 98: 192.168.203.5 > 192.168.203.3: ICMP echo reply, id 1292, seq 2, length 64 - 7 36:dc:85:1e:b3:40 > 00:16:3e:08:71:cf, ethertype IPv4 (0x0800), length 148: 192.168.203.1.45149 > 192.168.202.1.4789: VXLAN, flags [I] (0x08), vni 100 -00:16:3e:37:f6:04 > 00:30:88:01:00:02, ethertype IPv4 (0x0800), length 98: 192.168.203.3 > 192.168.203.5: ICMP echo request, id 1292, seq 3, length 64 - 8 00:16:3e:08:71:cf > 36:dc:85:1e:b3:40, ethertype IPv4 (0x0800), length 148: 192.168.202.1.32894 > 192.168.203.1.4789: VXLAN, flags [I] (0x08), vni 100 -00:30:88:01:00:02 > 00:16:3e:37:f6:04, ethertype IPv4 (0x0800), length 98: 192.168.203.5 > 192.168.203.3: ICMP echo reply, id 1292, seq 3, length 64 - 9 36:dc:85:1e:b3:40 > 00:16:3e:08:71:cf, ethertype IPv4 (0x0800), length 148: 192.168.203.1.45149 > 192.168.202.1.4789: VXLAN, flags [I] (0x08), vni 100 -00:16:3e:37:f6:04 > 00:30:88:01:00:02, ethertype IPv4 (0x0800), length 98: 192.168.203.3 > 192.168.203.5: ICMP echo request, id 1292, seq 4, length 64 - 10 00:16:3e:08:71:cf > 36:dc:85:1e:b3:40, ethertype IPv4 (0x0800), length 148: 192.168.202.1.32894 > 192.168.203.1.4789: VXLAN, flags [I] (0x08), vni 100 -00:30:88:01:00:02 > 00:16:3e:37:f6:04, ethertype IPv4 (0x0800), length 98: 192.168.203.5 > 192.168.203.3: ICMP echo reply, id 1292, seq 4, length 64 diff --git a/tests/vxlan.pcap b/tests/vxlan.pcap deleted file mode 100644 index 04f0c2f..0000000 Binary files a/tests/vxlan.pcap and /dev/null differ diff --git a/tests/zmtp1.out b/tests/zmtp1.out deleted file mode 100644 index 5b52877..0000000 --- a/tests/zmtp1.out +++ /dev/null @@ -1,73 +0,0 @@ -IP (tos 0x0, ttl 64, id 17993, offset 0, flags [DF], proto TCP (6), length 60) - 127.0.0.1.55358 > 127.0.0.1.33000: Flags [S], cksum 0xfe30 (incorrect -> 0x1a9d), seq 2523978814, win 32792, options [mss 16396,sackOK,TS val 245537399 ecr 0,nop,wscale 7], length 0 -IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto TCP (6), length 60) - 127.0.0.1.33000 > 127.0.0.1.55358: Flags [S.], cksum 0xfe30 (incorrect -> 0x31b6), seq 3988083230, ack 2523978815, win 32768, options [mss 16396,sackOK,TS val 245537399 ecr 245537399,nop,wscale 7], length 0 -IP (tos 0x0, ttl 64, id 17994, offset 0, flags [DF], proto TCP (6), length 52) - 127.0.0.1.55358 > 127.0.0.1.33000: Flags [.], cksum 0xfe28 (incorrect -> 0x19da), ack 1, win 257, options [nop,nop,TS val 245537399 ecr 245537399], length 0 -IP (tos 0x0, ttl 64, id 17995, offset 0, flags [DF], proto TCP (6), length 54) - 127.0.0.1.55358 > 127.0.0.1.33000: Flags [P.], cksum 0xfe2a (incorrect -> 0x18d0), seq 1:3, ack 1, win 257, options [nop,nop,TS val 245537399 ecr 245537399], length 2: ZMTP/1.0 - frame flags+body (8-bit) length 1, flags 0x00 (-|-|-|-|-|-|-|-) -IP (tos 0x0, ttl 64, id 51304, offset 0, flags [DF], proto TCP (6), length 52) - 127.0.0.1.33000 > 127.0.0.1.55358: Flags [.], cksum 0xfe28 (incorrect -> 0x19d9), ack 3, win 256, options [nop,nop,TS val 245537399 ecr 245537399], length 0 -IP (tos 0x0, ttl 64, id 51305, offset 0, flags [DF], proto TCP (6), length 54) - 127.0.0.1.33000 > 127.0.0.1.55358: Flags [P.], cksum 0xfe2a (incorrect -> 0x18cf), seq 1:3, ack 3, win 256, options [nop,nop,TS val 245537399 ecr 245537399], length 2: ZMTP/1.0 - frame flags+body (8-bit) length 1, flags 0x00 (-|-|-|-|-|-|-|-) -IP (tos 0x0, ttl 64, id 17996, offset 0, flags [DF], proto TCP (6), length 52) - 127.0.0.1.55358 > 127.0.0.1.33000: Flags [.], cksum 0xfe28 (incorrect -> 0x19d6), ack 3, win 257, options [nop,nop,TS val 245537399 ecr 245537399], length 0 -IP (tos 0x0, ttl 64, id 17997, offset 0, flags [DF], proto TCP (6), length 148) - 127.0.0.1.55358 > 127.0.0.1.33000: Flags [P.], cksum 0xfe88 (incorrect -> 0x11da), seq 3:99, ack 3, win 257, options [nop,nop,TS val 245537399 ecr 245537399], length 96: ZMTP/1.0 - frame flags+body (8-bit) length 1, flags 0x01 (-|-|-|-|-|-|-|MORE) - frame flags+body (8-bit) length 93, flags 0x00 (-|-|-|-|-|-|-|-), first 92 byte(s) of body: - 0x0000: 5468 6973 2069 7320 6120 7368 6f72 7420 This.is.a.short. - 0x0010: 4153 4349 4920 6d65 7373 6167 6520 666f ASCII.message.fo - 0x0020: 6c6c 6f77 6564 2062 7920 6120 7368 6f72 llowed.by.a.shor - 0x0030: 7420 6269 6e61 7279 206d 6573 7361 6765 t.binary.message - 0x0040: 2061 6e64 2061 206c 6f6e 6765 7220 4153 .and.a.longer.AS - 0x0050: 4349 4920 6d65 7373 6167 652e CII.message. - -IP (tos 0x0, ttl 64, id 51306, offset 0, flags [DF], proto TCP (6), length 84) - 127.0.0.1.33000 > 127.0.0.1.55358: Flags [P.], cksum 0xfe48 (incorrect -> 0xc80f), seq 3:35, ack 99, win 256, options [nop,nop,TS val 245537399 ecr 245537399], length 32: ZMTP/1.0 - frame flags+body (8-bit) length 1, flags 0x01 (-|-|-|-|-|-|-|MORE) - frame flags+body (8-bit) length 29, flags 0x00 (-|-|-|-|-|-|-|-), first 28 byte(s) of body: - 0x0000: 5468 6973 2069 7320 6120 7368 6f72 7420 This.is.a.short. - 0x0010: 4153 4349 4920 7265 706c 792e ASCII.reply. - -IP (tos 0x0, ttl 64, id 17998, offset 0, flags [DF], proto TCP (6), length 72) - 127.0.0.1.55358 > 127.0.0.1.33000: Flags [P.], cksum 0xfe3c (incorrect -> 0xcef8), seq 99:119, ack 35, win 257, options [nop,nop,TS val 245537399 ecr 245537399], length 20: ZMTP/1.0 - frame flags+body (8-bit) length 1, flags 0x01 (-|-|-|-|-|-|-|MORE) - frame flags+body (8-bit) length 17, flags 0x00 (-|-|-|-|-|-|-|-), first 16 byte(s) of body: - 0x0000: 0001 0203 0405 0607 0809 0a0b 0c0d 0e0f ................ - -IP (tos 0x0, ttl 64, id 51307, offset 0, flags [DF], proto TCP (6), length 84) - 127.0.0.1.33000 > 127.0.0.1.55358: Flags [P.], cksum 0xfe48 (incorrect -> 0xc7da), seq 35:67, ack 119, win 256, options [nop,nop,TS val 245537400 ecr 245537399], length 32: ZMTP/1.0 - frame flags+body (8-bit) length 1, flags 0x01 (-|-|-|-|-|-|-|MORE) - frame flags+body (8-bit) length 29, flags 0x00 (-|-|-|-|-|-|-|-), first 28 byte(s) of body: - 0x0000: 5468 6973 2069 7320 6120 7368 6f72 7420 This.is.a.short. - 0x0010: 4153 4349 4920 7265 706c 792e ASCII.reply. - -IP (tos 0x0, ttl 64, id 17999, offset 0, flags [DF], proto TCP (6), length 603) - 127.0.0.1.55358 > 127.0.0.1.33000: Flags [P.], cksum 0x0050 (incorrect -> 0xafc1), seq 119:670, ack 67, win 257, options [nop,nop,TS val 245537400 ecr 245537400], length 551: ZMTP/1.0 - frame flags+body (8-bit) length 1, flags 0x01 (-|-|-|-|-|-|-|MORE) - frame flags+body (64-bit) length 540, flags 0x00 (-|-|-|-|-|-|-|-), first 128 byte(s) of body: - 0x0000: 5468 6520 7175 6963 6b20 6272 6f77 6e20 The.quick.brown. - 0x0010: 666f 7820 6a75 6d70 7320 6f76 6572 2074 fox.jumps.over.t - 0x0020: 6865 206c 617a 7920 646f 672e 2054 6865 he.lazy.dog..The - 0x0030: 2071 7569 636b 2062 726f 776e 2066 6f78 .quick.brown.fox - 0x0040: 206a 756d 7073 206f 7665 7220 7468 6520 .jumps.over.the. - 0x0050: 6c61 7a79 2064 6f67 2e20 5468 6520 7175 lazy.dog..The.qu - 0x0060: 6963 6b20 6272 6f77 6e20 666f 7820 6a75 ick.brown.fox.ju - 0x0070: 6d70 7320 6f76 6572 2074 6865 206c 617a mps.over.the.laz - -IP (tos 0x0, ttl 64, id 51308, offset 0, flags [DF], proto TCP (6), length 84) - 127.0.0.1.33000 > 127.0.0.1.55358: Flags [P.], cksum 0xfe48 (incorrect -> 0xc592), seq 67:99, ack 670, win 256, options [nop,nop,TS val 245537400 ecr 245537400], length 32: ZMTP/1.0 - frame flags+body (8-bit) length 1, flags 0x01 (-|-|-|-|-|-|-|MORE) - frame flags+body (8-bit) length 29, flags 0x00 (-|-|-|-|-|-|-|-), first 28 byte(s) of body: - 0x0000: 5468 6973 2069 7320 6120 7368 6f72 7420 This.is.a.short. - 0x0010: 4153 4349 4920 7265 706c 792e ASCII.reply. - -IP (tos 0x0, ttl 64, id 18000, offset 0, flags [DF], proto TCP (6), length 52) - 127.0.0.1.55358 > 127.0.0.1.33000: Flags [F.], cksum 0xfe28 (incorrect -> 0x16d8), seq 670, ack 99, win 257, options [nop,nop,TS val 245537400 ecr 245537400], length 0 -IP (tos 0x0, ttl 64, id 51309, offset 0, flags [DF], proto TCP (6), length 52) - 127.0.0.1.33000 > 127.0.0.1.55358: Flags [F.], cksum 0xfe28 (incorrect -> 0x16d8), seq 99, ack 671, win 256, options [nop,nop,TS val 245537400 ecr 245537400], length 0 -IP (tos 0x0, ttl 64, id 18001, offset 0, flags [DF], proto TCP (6), length 52) - 127.0.0.1.55358 > 127.0.0.1.33000: Flags [.], cksum 0xfe28 (incorrect -> 0x16d7), ack 100, win 257, options [nop,nop,TS val 245537400 ecr 245537400], length 0 diff --git a/tests/zmtp1.pcap b/tests/zmtp1.pcap deleted file mode 100644 index 55aebea..0000000 Binary files a/tests/zmtp1.pcap and /dev/null differ diff --git a/timeval-operations.h b/timeval-operations.h deleted file mode 100644 index 4f4e85c..0000000 --- a/timeval-operations.h +++ /dev/null @@ -1,78 +0,0 @@ -/* - * Copyright (c) 2015 The TCPDUMP project - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS - * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE - * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, - * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, - * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER - * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN - * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ - -#ifndef netdissect_timeval_operations_h -#define netdissect_timeval_operations_h - -/* Operations on timevals. */ - -#ifndef _MICRO_PER_SEC -#define _MICRO_PER_SEC 1000000 -#endif - -#ifndef _NANO_PER_SEC -#define _NANO_PER_SEC 1000000000 -#endif - -#define netdissect_timevalclear(tvp) ((tvp)->tv_sec = (tvp)->tv_usec = 0) - -#define netdissect_timevalisset(tvp) ((tvp)->tv_sec || (tvp)->tv_usec) - -#define netdissect_timevalcmp(tvp, uvp, cmp) \ - (((tvp)->tv_sec == (uvp)->tv_sec) ? \ - ((tvp)->tv_usec cmp (uvp)->tv_usec) : \ - ((tvp)->tv_sec cmp (uvp)->tv_sec)) - -#define netdissect_timevaladd(tvp, uvp, vvp, nano_prec) \ - do { \ - (vvp)->tv_sec = (tvp)->tv_sec + (uvp)->tv_sec; \ - (vvp)->tv_usec = (tvp)->tv_usec + (uvp)->tv_usec; \ - if (nano_prec) { \ - if ((vvp)->tv_usec >= _NANO_PER_SEC) { \ - (vvp)->tv_sec++; \ - (vvp)->tv_usec -= _NANO_PER_SEC; \ - } \ - } else { \ - if ((vvp)->tv_usec >= _MICRO_PER_SEC) { \ - (vvp)->tv_sec++; \ - (vvp)->tv_usec -= _MICRO_PER_SEC; \ - } \ - } \ - } while (0) - -#define netdissect_timevalsub(tvp, uvp, vvp, nano_prec) \ - do { \ - (vvp)->tv_sec = (tvp)->tv_sec - (uvp)->tv_sec; \ - (vvp)->tv_usec = (tvp)->tv_usec - (uvp)->tv_usec; \ - if ((vvp)->tv_usec < 0) { \ - (vvp)->tv_sec--; \ - (vvp)->tv_usec += (nano_prec ? _NANO_PER_SEC : \ - _MICRO_PER_SEC); \ - } \ - } while (0) - -#endif /* netdissect_timeval_operations_h */ diff --git a/udp.h b/udp.h deleted file mode 100644 index abed3c6..0000000 --- a/udp.h +++ /dev/null @@ -1,321 +0,0 @@ -/* - * Copyright (c) 1982, 1986, 1993 - * The Regents of the University of California. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. All advertising materials mentioning features or use of this software - * must display the following acknowledgement: - * This product includes software developed by the University of - * California, Berkeley and its contributors. - * 4. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - * - * @(#)udp.h 8.1 (Berkeley) 6/10/93 - */ -#ifndef _tcpdump_udp_h -#define _tcpdump_udp_h 1 - -/* - * Udp protocol header. - * Per RFC 768, September, 1981. - */ -struct udphdr { - uint16_t uh_sport; /* source port */ - uint16_t uh_dport; /* destination port */ - uint16_t uh_ulen; /* udp length */ - uint16_t uh_sum; /* udp checksum */ -}; - -#ifndef NAMESERVER_PORT -#define NAMESERVER_PORT 53 -#endif -#ifndef TACACS_DB_PORT -#define TACACS_DB_PORT 65 /*XXX*/ -#endif -#ifndef ORACLE_SQLNET_PORT -#define ORACLE_SQLNET_PORT 66 /*XXX*/ -#endif -#ifndef BOOTPS_PORT -#define BOOTPS_PORT 67 /* RFC951 */ -#endif -#ifndef BOOTPC_PORT -#define BOOTPC_PORT 68 /* RFC951 */ -#endif -#ifndef TFTP_PORT -#define TFTP_PORT 69 /*XXX*/ -#endif -#ifndef KERBEROS_PORT -#define KERBEROS_PORT 88 /*XXX*/ -#endif -#ifndef SUNRPC_PORT -#define SUNRPC_PORT 111 /*XXX*/ -#endif -#ifndef NTP_PORT -#define NTP_PORT 123 /*XXX*/ -#endif -#ifndef NETBIOS_NS_PORT -#define NETBIOS_NS_PORT 137 /* RFC 1001, RFC 1002 */ -#endif -#ifndef NETBIOS_DGRAM_PORT -#define NETBIOS_DGRAM_PORT 138 /* RFC 1001, RFC 1002 */ -#endif -#ifndef NETBIOS_SSN_PORT -#define NETBIOS_SSN_PORT 139 /* RFC 1001, RFC 1002 */ -#endif -#ifndef SNMP_PORT -#define SNMP_PORT 161 /*XXX*/ -#endif -#ifndef SNMPTRAP_PORT -#define SNMPTRAP_PORT 162 /*XXX*/ -#endif -#ifndef BGP_PORT -#define BGP_PORT 179 /*XXX*/ -#endif -#ifndef APPLETALK_RTMP_PORT -#define APPLETALK_RTMP_PORT 201 /*XXX*/ -#endif -#ifndef APPLETALK_NB_PORT -#define APPLETALK_NB_PORT 202 /*XXX*/ -#endif -#ifndef APPLETALK_ECHO -#define APPLETALK_ECHO 204 /*XXX*/ -#endif -#ifndef APPLETALK_ZONE_INFO_PORT -#define APPLETALK_ZONE_INFO_PORT 206 /*XXX*/ -#endif -#ifndef LDAP_PORT -#define LDAP_PORT 389 /*XXX*/ -#endif -#ifndef HTTPS_PORT -#define HTTPS_PORT 443 /*XXX*/ -#endif -#ifndef MICROSOFT_DS_PORT -#define MICROSOFT_DS_PORT 445 /*XXX*/ -#endif -#ifndef KERBEROS5_PASSWD_PORT -#define KERBEROS5_PASSWD_PORT 464 /* PER IANA */ -#endif -#ifndef CISCO_AUTORP_PORT -#define CISCO_AUTORP_PORT 496 /*XXX*/ -#endif -#ifndef ISAKMP_PORT -#define ISAKMP_PORT 500 /*XXX*/ -#endif -#ifndef SYSLOG_PORT -#define SYSLOG_PORT 514 /* rfc3164 */ -#endif -#ifndef RIP_PORT -#define RIP_PORT 520 /*XXX*/ -#endif -#ifndef RIPNG_PORT -#define RIPNG_PORT 521 /* RFC 2080 */ -#endif -#ifndef TIMED_PORT -#define TIMED_PORT 525 /*XXX*/ -#endif -#ifndef KERBEROS_LOGIN_PORT -#define KERBEROS_LOGIN_PORT 543 /*XXX*/ -#endif -#ifndef KERBEROS_SHELL_PORT -#define KERBEROS_SHELL_PORT 544 /*XXX*/ -#endif -#ifndef DHCP6_SERV_PORT -#define DHCP6_SERV_PORT 546 /*XXX*/ -#endif -#ifndef DHCP6_CLI_PORT -#define DHCP6_CLI_PORT 547 /*XXX*/ -#endif -#ifndef LDAPS_PORT -#define LDAPS_PORT 636 /*XXX - LDAP over TLS/SSL */ -#endif -#ifndef LDP_PORT -#define LDP_PORT 646 -#endif -#ifndef DHCP_FAILOVER_PORT -#define DHCP_FAILOVER_PORT 647 /*XXX*/ -#endif -#ifndef AQDV_PORT -#define AODV_PORT 654 /*XXX*/ -#endif -#ifndef OLSR_PORT -#define OLSR_PORT 698 /* rfc3626 */ -#endif -#ifndef LMP_PORT -#define LMP_PORT 701 /* rfc4204 */ -#endif -#ifndef CISCO_TDP_PORT -#define CISCO_TDP_PORT 711 /*XXX*/ -#endif -#ifndef KERBEROS_ADM_PORT -#define KERBEROS_ADM_PORT 749 /*XXX - Kerberos v5 */ -#endif -#ifndef KERBEROS_SEC_PORT -#define KERBEROS_SEC_PORT 750 /*XXX - Kerberos v4 */ -#endif -#ifndef RSYNC_PORT -#define RSYNC_PORT 873 /*XXX*/ -#endif -#ifndef LWRES_PORT -#define LWRES_PORT 921 /*XXX*/ -#endif -#ifndef OPENSSL_PORT -#define OPENSSL_PORT 1194 /*XXX*/ -#endif -#ifndef LOTUS_NOTES_PORT -#define LOTUS_NOTES_PORT 1352 /*XXX*/ -#endif -#ifndef MS_SQL_SERVER_PORT -#define MS_SQL_SERVER_PORT 1433 /*XXX*/ -#endif -#ifndef MS_SQL_SERVER_MONITOR -#define MS_SQL_SERVER_MONITOR 1434 /*XXX*/ -#endif -#ifndef INGRESLOCK_PORT -#define INGRESLOCK_PORT 1524 /*XXX*/ -#endif -#ifndef VQP_PORT -#define VQP_PORT 1589 /*XXX*/ -#endif -#ifndef RADIUS_PORT -#define RADIUS_PORT 1645 /*XXX*/ -#endif -#ifndef RADIUS_ACCOUNTING_PORT -#define RADIUS_ACCOUNTING_PORT 1646 -#endif -#ifndef RADIUS_CISCO_COA_PORT -#define RADIUS_CISCO_COA_PORT 1700 -#endif -#ifndef L2TP_PORT -#define L2TP_PORT 1701 /*XXX*/ -#endif -#ifndef RADIUS_NEW_PORT -#define RADIUS_NEW_PORT 1812 /*XXX*/ -#endif -#ifndef RADIUS_NEW_ACCOUNTING_PORT -#define RADIUS_NEW_ACCOUNTING_PORT 1813 -#endif -#ifndef HSRP_PORT -#define HSRP_PORT 1985 /*XXX*/ -#endif -#ifndef NFS_DAEMON_PORT -#define NFS_DAEMON_PORT 2049 /*XXX*/ -#endif -#ifndef ZEPHYR_SRV_PORT -#define ZEPHYR_SRV_PORT 2103 /*XXX*/ -#endif -#ifndef ZEPHYR_CLI_PORT -#define ZEPHYR_CLT_PORT 2104 /*XXX*/ -#endif -#ifndef MYSQL_PORT -#define MYSQL_PORT 3306 /*XXX*/ -#endif -#ifndef MS_RDP_PORT -#define MS_RDP_PORT 3389 /*XXX*/ -#endif -#ifndef VAT_PORT -#define VAT_PORT 3456 /*XXX*/ -#endif -#ifndef MPLS_LSP_PING_PORT -#define MPLS_LSP_PING_PORT 3503 /* draft-ietf-mpls-lsp-ping-02.txt */ -#endif -#ifndef SUBVERSION_PORT -#define SUBVERSION_PORT 3690 /*XXX*/ -#endif -#ifndef BFD_CONTROL_PORT -#define BFD_CONTROL_PORT 3784 /* draft-katz-ward-bfd-v4v6-1hop-00.txt */ -#endif -#ifndef BFD_ECHO_PORT -#define BFD_ECHO_PORT 3785 /* draft-katz-ward-bfd-v4v6-1hop-00.txt */ -#endif -#ifndef RADIUS_COA_PORT -#define RADIUS_COA_PORT 3799 /* RFC 5176 */ -#endif -#ifndef NFS_LOCK_DAEMON_PORT -#define NFS_LOCK_DAEMON_PORT 4045 /*XXX*/ -#endif -#ifndef LISP_CONTROL_PORT -#define LISP_CONTROL_PORT 4342 /* RFC 6830 */ -#endif -#ifndef ISAKMP_PORT_NATT -#define ISAKMP_PORT_NATT 4500 /* rfc3948 */ -#endif -#ifndef WB_PORT -#define WB_PORT 4567 -#endif -#ifndef VXLAN_PORT -#define VXLAN_PORT 4789 /* RFC 7348 */ -#endif -#ifndef VXLAN_GPE_PORT -#define VXLAN_GPE_PORT 4790 /* draft-ietf-nvo3-vxlan-gpe-01 */ -#endif -#ifndef SIP_DS_PORT -#define SIP_DS_PORT 5059 /*XXX*/ -#endif -#ifndef SIP_PORT -#define SIP_PORT 5060 -#endif -#ifndef MULTICASTDNS_PORT -#define MULTICASTDNS_PORT 5353 /* RFC 6762 */ -#endif -#ifndef AHCP_PORT -#define AHCP_PORT 5359 /* draft-chroboczek-ahcp-00 */ -#endif -#ifndef GENEVE_PORT -#define GENEVE_PORT 6081 /* draft-gross-geneve-02 */ -#endif -#ifndef SFLOW_PORT -#define SFLOW_PORT 6343 /* http://www.sflow.org/developers/specifications.php */ -#endif -#ifndef BABEL_PORT -#define BABEL_PORT 6696 /* RFC 6126 errata */ -#endif -#ifndef BABEL_PORT_OLD -#define BABEL_PORT_OLD 6697 /* RFC 6126 */ -#endif -#ifndef RX_PORT_LOW -#define RX_PORT_LOW 7000 /*XXX*/ -#endif -#ifndef RX_PORT_HIGH -#define RX_PORT_HIGH 7009 /*XXX*/ -#endif -#ifndef ISAKMP_PORT_USER1 -#define ISAKMP_PORT_USER1 7500 /*XXX - nonstandard*/ -#endif -#ifndef HNCP_PORT -#define HNCP_PORT 8231 /* RFC 7788 */ -#endif -#ifndef OTV_PORT -#define OTV_PORT 8472 /* draft-hasmit-otv-04 */ -#endif -#ifndef ISAKMP_PORT_USER2 -#define ISAKMP_PORT_USER2 8500 /*XXX - nonstandard*/ -#endif -#ifndef LWAPP_DATA_PORT -#define LWAPP_DATA_PORT 12222 /* RFC 5412 */ -#endif -#ifndef LWAPP_CONTROL_PORT -#define LWAPP_CONTROL_PORT 12223 /* RFC 5412 */ -#endif - -#endif - diff --git a/util-print.c b/util-print.c deleted file mode 100644 index 6858ce3..0000000 --- a/util-print.c +++ /dev/null @@ -1,856 +0,0 @@ -/* - * Copyright (c) 1990, 1991, 1993, 1994, 1995, 1996, 1997 - * The Regents of the University of California. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that: (1) source code distributions - * retain the above copyright notice and this paragraph in its entirety, (2) - * distributions including binary code include the above copyright notice and - * this paragraph in its entirety in the documentation or other materials - * provided with the distribution, and (3) all advertising materials mentioning - * features or use of this software display the following acknowledgement: - * ``This product includes software developed by the University of California, - * Lawrence Berkeley Laboratory and its contributors.'' Neither the name of - * the University nor the names of its contributors may be used to endorse - * or promote products derived from this software without specific prior - * written permission. - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED - * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF - * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. - */ - -/* - * txtproto_print() derived from original code by Hannes Gredler - * (hannes@juniper.net): - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that: (1) source code - * distributions retain the above copyright notice and this paragraph - * in its entirety, and (2) distributions including binary code include - * the above copyright notice and this paragraph in its entirety in - * the documentation or other materials provided with the distribution. - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND - * WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT - * LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS - * FOR A PARTICULAR PURPOSE. - */ - -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif - -#include - -#include - -#ifdef HAVE_FCNTL_H -#include -#endif -#include -#include -#include -#include -#include - -#include "netdissect.h" -#include "ascii_strcasecmp.h" -#include "timeval-operations.h" - -int32_t thiszone; /* seconds offset from gmt to local time */ -/* invalid string to print '(invalid)' for malformed or corrupted packets */ -const char istr[] = " (invalid)"; - -/* - * timestamp display buffer size, the biggest size of both formats is needed - * sizeof("0000000000.000000000") > sizeof("00:00:00.000000000") - */ -#define TS_BUF_SIZE sizeof("0000000000.000000000") - -#define TOKBUFSIZE 128 - -/* - * Print out a character, filtering out the non-printable ones - */ -void -fn_print_char(netdissect_options *ndo, u_char c) -{ - if (!ND_ISASCII(c)) { - c = ND_TOASCII(c); - ND_PRINT((ndo, "M-")); - } - if (!ND_ISPRINT(c)) { - c ^= 0x40; /* DEL to ?, others to alpha */ - ND_PRINT((ndo, "^")); - } - ND_PRINT((ndo, "%c", c)); -} - -/* - * Print out a null-terminated filename (or other ascii string). - * If ep is NULL, assume no truncation check is needed. - * Return true if truncated. - * Stop at ep (if given) or before the null char, whichever is first. - */ -int -fn_print(netdissect_options *ndo, - register const u_char *s, register const u_char *ep) -{ - register int ret; - register u_char c; - - ret = 1; /* assume truncated */ - while (ep == NULL || s < ep) { - c = *s++; - if (c == '\0') { - ret = 0; - break; - } - if (!ND_ISASCII(c)) { - c = ND_TOASCII(c); - ND_PRINT((ndo, "M-")); - } - if (!ND_ISPRINT(c)) { - c ^= 0x40; /* DEL to ?, others to alpha */ - ND_PRINT((ndo, "^")); - } - ND_PRINT((ndo, "%c", c)); - } - return(ret); -} - -/* - * Print out a counted filename (or other ascii string). - * If ep is NULL, assume no truncation check is needed. - * Return true if truncated. - * Stop at ep (if given) or after n bytes, whichever is first. - */ -int -fn_printn(netdissect_options *ndo, - register const u_char *s, register u_int n, register const u_char *ep) -{ - register u_char c; - - while (n > 0 && (ep == NULL || s < ep)) { - n--; - c = *s++; - if (!ND_ISASCII(c)) { - c = ND_TOASCII(c); - ND_PRINT((ndo, "M-")); - } - if (!ND_ISPRINT(c)) { - c ^= 0x40; /* DEL to ?, others to alpha */ - ND_PRINT((ndo, "^")); - } - ND_PRINT((ndo, "%c", c)); - } - return (n == 0) ? 0 : 1; -} - -/* - * Print out a null-padded filename (or other ascii string). - * If ep is NULL, assume no truncation check is needed. - * Return true if truncated. - * Stop at ep (if given) or after n bytes or before the null char, - * whichever is first. - */ -int -fn_printzp(netdissect_options *ndo, - register const u_char *s, register u_int n, - register const u_char *ep) -{ - register int ret; - register u_char c; - - ret = 1; /* assume truncated */ - while (n > 0 && (ep == NULL || s < ep)) { - n--; - c = *s++; - if (c == '\0') { - ret = 0; - break; - } - if (!ND_ISASCII(c)) { - c = ND_TOASCII(c); - ND_PRINT((ndo, "M-")); - } - if (!ND_ISPRINT(c)) { - c ^= 0x40; /* DEL to ?, others to alpha */ - ND_PRINT((ndo, "^")); - } - ND_PRINT((ndo, "%c", c)); - } - return (n == 0) ? 0 : ret; -} - -/* - * Format the timestamp - */ -static char * -ts_format(netdissect_options *ndo -#ifndef HAVE_PCAP_SET_TSTAMP_PRECISION -_U_ -#endif -, int sec, int usec, char *buf) -{ - const char *format; - -#ifdef HAVE_PCAP_SET_TSTAMP_PRECISION - switch (ndo->ndo_tstamp_precision) { - - case PCAP_TSTAMP_PRECISION_MICRO: - format = "%02d:%02d:%02d.%06u"; - break; - - case PCAP_TSTAMP_PRECISION_NANO: - format = "%02d:%02d:%02d.%09u"; - break; - - default: - format = "%02d:%02d:%02d.{unknown}"; - break; - } -#else - format = "%02d:%02d:%02d.%06u"; -#endif - - snprintf(buf, TS_BUF_SIZE, format, - sec / 3600, (sec % 3600) / 60, sec % 60, usec); - - return buf; -} - -/* - * Format the timestamp - Unix timeval style - */ -static char * -ts_unix_format(netdissect_options *ndo -#ifndef HAVE_PCAP_SET_TSTAMP_PRECISION -_U_ -#endif -, int sec, int usec, char *buf) -{ - const char *format; - -#ifdef HAVE_PCAP_SET_TSTAMP_PRECISION - switch (ndo->ndo_tstamp_precision) { - - case PCAP_TSTAMP_PRECISION_MICRO: - format = "%u.%06u"; - break; - - case PCAP_TSTAMP_PRECISION_NANO: - format = "%u.%09u"; - break; - - default: - format = "%u.{unknown}"; - break; - } -#else - format = "%u.%06u"; -#endif - - snprintf(buf, TS_BUF_SIZE, format, - (unsigned)sec, (unsigned)usec); - - return buf; -} - -/* - * Print the timestamp - */ -void -ts_print(netdissect_options *ndo, - register const struct timeval *tvp) -{ - register int s; - struct tm *tm; - time_t Time; - char buf[TS_BUF_SIZE]; - static struct timeval tv_ref; - struct timeval tv_result; - int negative_offset; - int nano_prec; - - switch (ndo->ndo_tflag) { - - case 0: /* Default */ - s = (tvp->tv_sec + thiszone) % 86400; - ND_PRINT((ndo, "%s ", ts_format(ndo, s, tvp->tv_usec, buf))); - break; - - case 1: /* No time stamp */ - break; - - case 2: /* Unix timeval style */ - ND_PRINT((ndo, "%s ", ts_unix_format(ndo, - tvp->tv_sec, tvp->tv_usec, buf))); - break; - - case 3: /* Microseconds/nanoseconds since previous packet */ - case 5: /* Microseconds/nanoseconds since first packet */ -#ifdef HAVE_PCAP_SET_TSTAMP_PRECISION - switch (ndo->ndo_tstamp_precision) { - case PCAP_TSTAMP_PRECISION_MICRO: - nano_prec = 0; - break; - case PCAP_TSTAMP_PRECISION_NANO: - nano_prec = 1; - break; - default: - nano_prec = 0; - break; - } -#else - nano_prec = 0; -#endif - if (!(netdissect_timevalisset(&tv_ref))) - tv_ref = *tvp; /* set timestamp for first packet */ - - negative_offset = netdissect_timevalcmp(tvp, &tv_ref, <); - if (negative_offset) - netdissect_timevalsub(&tv_ref, tvp, &tv_result, nano_prec); - else - netdissect_timevalsub(tvp, &tv_ref, &tv_result, nano_prec); - - ND_PRINT((ndo, (negative_offset ? "-" : " "))); - - ND_PRINT((ndo, "%s ", ts_format(ndo, - tv_result.tv_sec, tv_result.tv_usec, buf))); - - if (ndo->ndo_tflag == 3) - tv_ref = *tvp; /* set timestamp for previous packet */ - break; - - case 4: /* Default + Date */ - s = (tvp->tv_sec + thiszone) % 86400; - Time = (tvp->tv_sec + thiszone) - s; - tm = gmtime (&Time); - if (!tm) - ND_PRINT((ndo, "Date fail ")); - else - ND_PRINT((ndo, "%04d-%02d-%02d %s ", - tm->tm_year+1900, tm->tm_mon+1, tm->tm_mday, - ts_format(ndo, s, tvp->tv_usec, buf))); - break; - } -} - -/* - * Print a relative number of seconds (e.g. hold time, prune timer) - * in the form 5m1s. This does no truncation, so 32230861 seconds - * is represented as 1y1w1d1h1m1s. - */ -void -relts_print(netdissect_options *ndo, - int secs) -{ - static const char *lengths[] = {"y", "w", "d", "h", "m", "s"}; - static const int seconds[] = {31536000, 604800, 86400, 3600, 60, 1}; - const char **l = lengths; - const int *s = seconds; - - if (secs == 0) { - ND_PRINT((ndo, "0s")); - return; - } - if (secs < 0) { - ND_PRINT((ndo, "-")); - secs = -secs; - } - while (secs > 0) { - if (secs >= *s) { - ND_PRINT((ndo, "%d%s", secs / *s, *l)); - secs -= (secs / *s) * *s; - } - s++; - l++; - } -} - -/* - * this is a generic routine for printing unknown data; - * we pass on the linefeed plus indentation string to - * get a proper output - returns 0 on error - */ - -int -print_unknown_data(netdissect_options *ndo, const u_char *cp,const char *ident,int len) -{ - if (len < 0) { - ND_PRINT((ndo,"%sDissector error: print_unknown_data called with negative length", - ident)); - return(0); - } - if (ndo->ndo_snapend - cp < len) - len = ndo->ndo_snapend - cp; - if (len < 0) { - ND_PRINT((ndo,"%sDissector error: print_unknown_data called with pointer past end of packet", - ident)); - return(0); - } - hex_print(ndo, ident,cp,len); - return(1); /* everything is ok */ -} - -/* - * Convert a token value to a string; use "fmt" if not found. - */ -const char * -tok2strbuf(register const struct tok *lp, register const char *fmt, - register u_int v, char *buf, size_t bufsize) -{ - if (lp != NULL) { - while (lp->s != NULL) { - if (lp->v == v) - return (lp->s); - ++lp; - } - } - if (fmt == NULL) - fmt = "#%d"; - - (void)snprintf(buf, bufsize, fmt, v); - return (const char *)buf; -} - -/* - * Convert a token value to a string; use "fmt" if not found. - */ -const char * -tok2str(register const struct tok *lp, register const char *fmt, - register u_int v) -{ - static char buf[4][TOKBUFSIZE]; - static int idx = 0; - char *ret; - - ret = buf[idx]; - idx = (idx+1) & 3; - return tok2strbuf(lp, fmt, v, ret, sizeof(buf[0])); -} - -/* - * Convert a bit token value to a string; use "fmt" if not found. - * this is useful for parsing bitfields, the output strings are seperated - * if the s field is positive. - */ -static char * -bittok2str_internal(register const struct tok *lp, register const char *fmt, - register u_int v, const char *sep) -{ - static char buf[256]; /* our stringbuffer */ - int buflen=0; - register u_int rotbit; /* this is the bit we rotate through all bitpositions */ - register u_int tokval; - const char * sepstr = ""; - - while (lp != NULL && lp->s != NULL) { - tokval=lp->v; /* load our first value */ - rotbit=1; - while (rotbit != 0) { - /* - * lets AND the rotating bit with our token value - * and see if we have got a match - */ - if (tokval == (v&rotbit)) { - /* ok we have found something */ - buflen+=snprintf(buf+buflen, sizeof(buf)-buflen, "%s%s", - sepstr, lp->s); - sepstr = sep; - break; - } - rotbit=rotbit<<1; /* no match - lets shift and try again */ - } - lp++; - } - - if (buflen == 0) - /* bummer - lets print the "unknown" message as advised in the fmt string if we got one */ - (void)snprintf(buf, sizeof(buf), fmt == NULL ? "#%08x" : fmt, v); - return (buf); -} - -/* - * Convert a bit token value to a string; use "fmt" if not found. - * this is useful for parsing bitfields, the output strings are not seperated. - */ -char * -bittok2str_nosep(register const struct tok *lp, register const char *fmt, - register u_int v) -{ - return (bittok2str_internal(lp, fmt, v, "")); -} - -/* - * Convert a bit token value to a string; use "fmt" if not found. - * this is useful for parsing bitfields, the output strings are comma seperated. - */ -char * -bittok2str(register const struct tok *lp, register const char *fmt, - register u_int v) -{ - return (bittok2str_internal(lp, fmt, v, ", ")); -} - -/* - * Convert a value to a string using an array; the macro - * tok2strary() in is the public interface to - * this function and ensures that the second argument is - * correct for bounds-checking. - */ -const char * -tok2strary_internal(register const char **lp, int n, register const char *fmt, - register int v) -{ - static char buf[TOKBUFSIZE]; - - if (v >= 0 && v < n && lp[v] != NULL) - return lp[v]; - if (fmt == NULL) - fmt = "#%d"; - (void)snprintf(buf, sizeof(buf), fmt, v); - return (buf); -} - -/* - * Convert a 32-bit netmask to prefixlen if possible - * the function returns the prefix-len; if plen == -1 - * then conversion was not possible; - */ - -int -mask2plen(uint32_t mask) -{ - uint32_t bitmasks[33] = { - 0x00000000, - 0x80000000, 0xc0000000, 0xe0000000, 0xf0000000, - 0xf8000000, 0xfc000000, 0xfe000000, 0xff000000, - 0xff800000, 0xffc00000, 0xffe00000, 0xfff00000, - 0xfff80000, 0xfffc0000, 0xfffe0000, 0xffff0000, - 0xffff8000, 0xffffc000, 0xffffe000, 0xfffff000, - 0xfffff800, 0xfffffc00, 0xfffffe00, 0xffffff00, - 0xffffff80, 0xffffffc0, 0xffffffe0, 0xfffffff0, - 0xfffffff8, 0xfffffffc, 0xfffffffe, 0xffffffff - }; - int prefix_len = 32; - - /* let's see if we can transform the mask into a prefixlen */ - while (prefix_len >= 0) { - if (bitmasks[prefix_len] == mask) - break; - prefix_len--; - } - return (prefix_len); -} - -int -mask62plen(const u_char *mask) -{ - u_char bitmasks[9] = { - 0x00, - 0x80, 0xc0, 0xe0, 0xf0, - 0xf8, 0xfc, 0xfe, 0xff - }; - int byte; - int cidr_len = 0; - - for (byte = 0; byte < 16; byte++) { - u_int bits; - - for (bits = 0; bits < (sizeof (bitmasks) / sizeof (bitmasks[0])); bits++) { - if (mask[byte] == bitmasks[bits]) { - cidr_len += bits; - break; - } - } - - if (mask[byte] != 0xff) - break; - } - return (cidr_len); -} - -/* - * Routine to print out information for text-based protocols such as FTP, - * HTTP, SMTP, RTSP, SIP, .... - */ -#define MAX_TOKEN 128 - -/* - * Fetch a token from a packet, starting at the specified index, - * and return the length of the token. - * - * Returns 0 on error; yes, this is indistinguishable from an empty - * token, but an "empty token" isn't a valid token - it just means - * either a space character at the beginning of the line (this - * includes a blank line) or no more tokens remaining on the line. - */ -static int -fetch_token(netdissect_options *ndo, const u_char *pptr, u_int idx, u_int len, - u_char *tbuf, size_t tbuflen) -{ - size_t toklen = 0; - - for (; idx < len; idx++) { - if (!ND_TTEST(*(pptr + idx))) { - /* ran past end of captured data */ - return (0); - } - if (!isascii(*(pptr + idx))) { - /* not an ASCII character */ - return (0); - } - if (isspace(*(pptr + idx))) { - /* end of token */ - break; - } - if (!isprint(*(pptr + idx))) { - /* not part of a command token or response code */ - return (0); - } - if (toklen + 2 > tbuflen) { - /* no room for this character and terminating '\0' */ - return (0); - } - tbuf[toklen] = *(pptr + idx); - toklen++; - } - if (toklen == 0) { - /* no token */ - return (0); - } - tbuf[toklen] = '\0'; - - /* - * Skip past any white space after the token, until we see - * an end-of-line (CR or LF). - */ - for (; idx < len; idx++) { - if (!ND_TTEST(*(pptr + idx))) { - /* ran past end of captured data */ - break; - } - if (*(pptr + idx) == '\r' || *(pptr + idx) == '\n') { - /* end of line */ - break; - } - if (!isascii(*(pptr + idx)) || !isprint(*(pptr + idx))) { - /* not a printable ASCII character */ - break; - } - if (!isspace(*(pptr + idx))) { - /* beginning of next token */ - break; - } - } - return (idx); -} - -/* - * Scan a buffer looking for a line ending - LF or CR-LF. - * Return the index of the character after the line ending or 0 if - * we encounter a non-ASCII or non-printable character or don't find - * the line ending. - */ -static u_int -print_txt_line(netdissect_options *ndo, const char *protoname, - const char *prefix, const u_char *pptr, u_int idx, u_int len) -{ - u_int startidx; - u_int linelen; - - startidx = idx; - while (idx < len) { - ND_TCHECK(*(pptr+idx)); - if (*(pptr+idx) == '\n') { - /* - * LF without CR; end of line. - * Skip the LF and print the line, with the - * exception of the LF. - */ - linelen = idx - startidx; - idx++; - goto print; - } else if (*(pptr+idx) == '\r') { - /* CR - any LF? */ - if ((idx+1) >= len) { - /* not in this packet */ - return (0); - } - ND_TCHECK(*(pptr+idx+1)); - if (*(pptr+idx+1) == '\n') { - /* - * CR-LF; end of line. - * Skip the CR-LF and print the line, with - * the exception of the CR-LF. - */ - linelen = idx - startidx; - idx += 2; - goto print; - } - - /* - * CR followed by something else; treat this - * as if it were binary data, and don't print - * it. - */ - return (0); - } else if (!isascii(*(pptr+idx)) || - (!isprint(*(pptr+idx)) && *(pptr+idx) != '\t')) { - /* - * Not a printable ASCII character and not a tab; - * treat this as if it were binary data, and - * don't print it. - */ - return (0); - } - idx++; - } - - /* - * All printable ASCII, but no line ending after that point - * in the buffer; treat this as if it were truncated. - */ -trunc: - linelen = idx - startidx; - ND_PRINT((ndo, "%s%.*s[!%s]", prefix, (int)linelen, pptr + startidx, - protoname)); - return (0); - -print: - ND_PRINT((ndo, "%s%.*s", prefix, (int)linelen, pptr + startidx)); - return (idx); -} - -void -txtproto_print(netdissect_options *ndo, const u_char *pptr, u_int len, - const char *protoname, const char **cmds, u_int flags) -{ - u_int idx, eol; - u_char token[MAX_TOKEN+1]; - const char *cmd; - int is_reqresp = 0; - const char *pnp; - - if (cmds != NULL) { - /* - * This protocol has more than just request and - * response lines; see whether this looks like a - * request or response. - */ - idx = fetch_token(ndo, pptr, 0, len, token, sizeof(token)); - if (idx != 0) { - /* Is this a valid request name? */ - while ((cmd = *cmds++) != NULL) { - if (ascii_strcasecmp((const char *)token, cmd) == 0) { - /* Yes. */ - is_reqresp = 1; - break; - } - } - - /* - * No - is this a valid response code (3 digits)? - * - * Is this token the response code, or is the next - * token the response code? - */ - if (flags & RESP_CODE_SECOND_TOKEN) { - /* - * Next token - get it. - */ - idx = fetch_token(ndo, pptr, idx, len, token, - sizeof(token)); - } - if (idx != 0) { - if (isdigit(token[0]) && isdigit(token[1]) && - isdigit(token[2]) && token[3] == '\0') { - /* Yes. */ - is_reqresp = 1; - } - } - } - } else { - /* - * This protocol has only request and response lines - * (e.g., FTP, where all the data goes over a - * different connection); assume the payload is - * a request or response. - */ - is_reqresp = 1; - } - - /* Capitalize the protocol name */ - for (pnp = protoname; *pnp != '\0'; pnp++) - ND_PRINT((ndo, "%c", toupper(*pnp))); - - if (is_reqresp) { - /* - * In non-verbose mode, just print the protocol, followed - * by the first line as the request or response info. - * - * In verbose mode, print lines as text until we run out - * of characters or see something that's not a - * printable-ASCII line. - */ - if (ndo->ndo_vflag) { - /* - * We're going to print all the text lines in the - * request or response; just print the length - * on the first line of the output. - */ - ND_PRINT((ndo, ", length: %u", len)); - for (idx = 0; - idx < len && (eol = print_txt_line(ndo, protoname, "\n\t", pptr, idx, len)) != 0; - idx = eol) - ; - } else { - /* - * Just print the first text line. - */ - print_txt_line(ndo, protoname, ": ", pptr, 0, len); - } - } -} - -void -safeputs(netdissect_options *ndo, - const u_char *s, const u_int maxlen) -{ - u_int idx = 0; - - while (*s && idx < maxlen) { - safeputchar(ndo, *s); - idx++; - s++; - } -} - -void -safeputchar(netdissect_options *ndo, - const u_char c) -{ - ND_PRINT((ndo, (c < 0x80 && ND_ISPRINT(c)) ? "%c" : "\\0x%02x", c)); -} - -#ifdef LBL_ALIGN -/* - * Some compilers try to optimize memcpy(), using the alignment constraint - * on the argument pointer type. by using this function, we try to avoid the - * optimization. - */ -void -unaligned_memcpy(void *p, const void *q, size_t l) -{ - memcpy(p, q, l); -} - -/* As with memcpy(), so with memcmp(). */ -int -unaligned_memcmp(const void *p, const void *q, size_t l) -{ - return (memcmp(p, q, l)); -} -#endif - diff --git a/util.c b/util.c deleted file mode 100644 index a6f520e..0000000 --- a/util.c +++ /dev/null @@ -1,169 +0,0 @@ -/* - * Copyright (c) 1990, 1991, 1993, 1994, 1995, 1996, 1997 - * The Regents of the University of California. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that: (1) source code distributions - * retain the above copyright notice and this paragraph in its entirety, (2) - * distributions including binary code include the above copyright notice and - * this paragraph in its entirety in the documentation or other materials - * provided with the distribution, and (3) all advertising materials mentioning - * features or use of this software display the following acknowledgement: - * ``This product includes software developed by the University of California, - * Lawrence Berkeley Laboratory and its contributors.'' Neither the name of - * the University nor the names of its contributors may be used to endorse - * or promote products derived from this software without specific prior - * written permission. - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED - * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF - * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. - */ - -/* - * txtproto_print() derived from original code by Hannes Gredler - * (hannes@juniper.net): - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that: (1) source code - * distributions retain the above copyright notice and this paragraph - * in its entirety, and (2) distributions including binary code include - * the above copyright notice and this paragraph in its entirety in - * the documentation or other materials provided with the distribution. - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND - * WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT - * LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS - * FOR A PARTICULAR PURPOSE. - */ - -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif - -#include - -#include - -#ifdef HAVE_FCNTL_H -#include -#endif -#include -#include -#include -#include - -#include "interface.h" - -/* VARARGS */ -void -error(const char *fmt, ...) -{ - va_list ap; - - (void)fprintf(stderr, "%s: ", program_name); - va_start(ap, fmt); - (void)vfprintf(stderr, fmt, ap); - va_end(ap); - if (*fmt) { - fmt += strlen(fmt); - if (fmt[-1] != '\n') - (void)fputc('\n', stderr); - } - exit(1); - /* NOTREACHED */ -} - -/* VARARGS */ -void -warning(const char *fmt, ...) -{ - va_list ap; - - (void)fprintf(stderr, "%s: WARNING: ", program_name); - va_start(ap, fmt); - (void)vfprintf(stderr, fmt, ap); - va_end(ap); - if (*fmt) { - fmt += strlen(fmt); - if (fmt[-1] != '\n') - (void)fputc('\n', stderr); - } -} - -/* - * Copy arg vector into a new buffer, concatenating arguments with spaces. - */ -char * -copy_argv(register char **argv) -{ - register char **p; - register u_int len = 0; - char *buf; - char *src, *dst; - - p = argv; - if (*p == 0) - return 0; - - while (*p) - len += strlen(*p++) + 1; - - buf = (char *)malloc(len); - if (buf == NULL) - error("copy_argv: malloc"); - - p = argv; - dst = buf; - while ((src = *p++) != NULL) { - while ((*dst++ = *src++) != '\0') - ; - dst[-1] = ' '; - } - dst[-1] = '\0'; - - return buf; -} - -/* - * On Windows, we need to open the file in binary mode, so that - * we get all the bytes specified by the size we get from "fstat()". - * On UNIX, that's not necessary. O_BINARY is defined on Windows; - * we define it as 0 if it's not defined, so it does nothing. - */ -#ifndef O_BINARY -#define O_BINARY 0 -#endif - -char * -read_infile(char *fname) -{ - register int i, fd, cc; - register char *cp; - struct stat buf; - - fd = open(fname, O_RDONLY|O_BINARY); - if (fd < 0) - error("can't open %s: %s", fname, pcap_strerror(errno)); - - if (fstat(fd, &buf) < 0) - error("can't stat %s: %s", fname, pcap_strerror(errno)); - - cp = malloc((u_int)buf.st_size + 1); - if (cp == NULL) - error("malloc(%d) for %s: %s", (u_int)buf.st_size + 1, - fname, pcap_strerror(errno)); - cc = read(fd, cp, (u_int)buf.st_size); - if (cc < 0) - error("read %s: %s", fname, pcap_strerror(errno)); - if (cc != buf.st_size) - error("short read %s (%d != %d)", fname, cc, (int)buf.st_size); - - close(fd); - /* replace "# comment" with spaces */ - for (i = 0; i < cc; i++) { - if (cp[i] == '#') - while (i < cc && cp[i] != '\n') - cp[i++] = ' '; - } - cp[cc] = '\0'; - return (cp); -} diff --git a/vfprintf.c b/vfprintf.c deleted file mode 100644 index ae28bcf..0000000 --- a/vfprintf.c +++ /dev/null @@ -1,54 +0,0 @@ -/* - * Copyright (c) 1995 - * The Regents of the University of California. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that: (1) source code distributions - * retain the above copyright notice and this paragraph in its entirety, (2) - * distributions including binary code include the above copyright notice and - * this paragraph in its entirety in the documentation or other materials - * provided with the distribution, and (3) all advertising materials mentioning - * features or use of this software display the following acknowledgement: - * ``This product includes software developed by the University of California, - * Lawrence Berkeley Laboratory and its contributors.'' Neither the name of - * the University nor the names of its contributors may be used to endorse - * or promote products derived from this software without specific prior - * written permission. - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED - * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF - * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. - */ - -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif - -#include - -#include -#include -#include -#include - -#include "netdissect.h" - -/* - * Stock 4.3 doesn't have vfprintf. - * This routine is due to Chris Torek. - */ -vfprintf(f, fmt, args) - FILE *f; - char *fmt; - va_list args; -{ - int ret; - - if ((f->_flag & _IOWRT) == 0) { - if (f->_flag & _IORW) - f->_flag |= _IOWRT; - else - return EOF; - } - ret = _doprnt(fmt, args, f); - return ferror(f) ? EOF : ret; -} diff --git a/win32/prj/GNUmakefile b/win32/prj/GNUmakefile deleted file mode 100644 index d0504e3..0000000 --- a/win32/prj/GNUmakefile +++ /dev/null @@ -1,175 +0,0 @@ -# Makefile for cygwin gcc -# Nate Lawson - -# Location of your pcap src tree, build it first -PCAP_DIR = ../../../winpcap - -# OPTFLAGS = -g -OPTFLAGS = -O -# -O2 may break things. Use at your own risk. - -CFLAGS = -I ${PCAP_DIR}/wpcap/libpcap/bpf \ - -I ${PCAP_DIR}/wpcap/libpcap \ - -I ${PCAP_DIR}/wpcap/libpcap/Win32/Include \ - -I ${PCAP_DIR}/wpcap/libpcap/Win32/Include/net \ - -I ../../Win32/Include -I ../../linux-Include \ - -I ../../lbl -I../.. \ - -DWIN32 -DINET6 -DHAVE_ADDRINFO=1 -DHAVE_SOCKADDR_STORAGE=1 \ - -DHAVE_PCAP_LIST_DATALINKS=1 -DHAVE_PCAP_SET_DATALINK=1 \ - -DHAVE_PCAP_DATALINK_NAME_TO_VAL=1 \ - -DHAVE_PCAP_DATALINK_VAL_TO_DESCRIPTION=1 \ - -DHAVE_PCAP_DUMP_FTELL=1 -DHAVE_BPF_DUMP=1 \ - -DHAVE_PCAP_DUMP_FLUSH=1 -DHAVE_PCAP_FINDALLDEVS=1 \ - -DHAVE_PCAP_IF_T=1 -DHAVE_PCAP_LIB_VERSION=1 \ - -D_U_="__attribute__((unused))" \ - -D_WIN32_WINNT=0x0501 \ - -mno-cygwin ${OPTFLAGS} -LDFLAGS = -LIBS = -L ${PCAP_DIR}/WPCAP/LIB -lwpcap -lws2_32 -OBJS = \ - ../../addrtoname.o \ - ../../af.o \ - ../../checksum.o \ - ../../gmpls.o \ - ../../gmt2local.o \ - ../../missing/inet_aton.o \ - ../../missing/inet_ntop.o \ - ../../missing/strlcpy.o \ - ../../missing/dlnames.o \ - ../../missing/datalinks.o \ - ../../missing/strsep.o \ - ../../missing/inet_pton.o \ - ../../missing/getopt_long.o \ - ../../machdep.o \ - ../../oui.o \ - ../../parsenfsfh.o \ - ../../print-802_11.o \ - ../../print-ah.o \ - ../../print-aodv.o \ - ../../print-ap1394.o \ - ../../print-arcnet.o \ - ../../print-arp.o \ - ../../print-ascii.o \ - ../../print-atalk.o \ - ../../print-atm.o \ - ../../print-beep.o \ - ../../print-bfd.o \ - ../../print-bgp.o \ - ../../print-bootp.o \ - ../../print-cdp.o \ - ../../print-cfm.o \ - ../../print-chdlc.o \ - ../../print-cip.o \ - ../../print-cnfp.o \ - ../../print-decnet.o \ - ../../print-dhcp6.o \ - ../../print-domain.o \ - ../../print-dtp.o \ - ../../print-dvmrp.o \ - ../../print-egp.o \ - ../../print-enc.o \ - ../../print-esp.o \ - ../../print-ether.o \ - ../../print-fddi.o \ - ../../print-fr.o \ - ../../print-frag6.o \ - ../../print-gre.o \ - ../../print-hsrp.o \ - ../../print-icmp.o \ - ../../print-icmp6.o \ - ../../print-igmp.o \ - ../../print-igrp.o \ - ../../print-ip.o \ - ../../print-ip6.o \ - ../../print-ip6opts.o \ - ../../print-ipcomp.o \ - ../../print-ipfc.o \ - ../../print-ipx.o \ - ../../print-isakmp.o \ - ../../print-isoclns.o \ - ../../print-krb.o \ - ../../print-l2tp.o \ - ../../print-lane.o \ - ../../print-ldp.o \ - ../../print-lldp.o \ - ../../print-llc.o \ - ../../print-lwapp.o \ - ../../print-lwres.o \ - ../../print-mobile.o \ - ../../print-mobility.o \ - ../../print-mpcp.o \ - ../../print-mpls.o \ - ../../print-msdp.o \ - ../../print-nfs.o \ - ../../print-ntp.o \ - ../../print-null.o \ - ../../print-olsr.o \ - ../../print-ospf.o \ - ../../print-ospf6.o \ - ../../print-pim.o \ - ../../print-pgm.o \ - ../../print-ppp.o \ - ../../print-pppoe.o \ - ../../print-pptp.o \ - ../../print-radius.o \ - ../../print-raw.o \ - ../../print-rrcp.o \ - ../../print-rip.o \ - ../../print-ripng.o \ - ../../print-rsvp.o \ - ../../print-rt6.o \ - ../../print-rx.o \ - ../../print-sctp.o \ - ../../print-sflow.o \ - ../../print-sl.o \ - ../../print-sll.o \ - ../../print-slow.o \ - ../../print-smb.o \ - ../../print-snmp.o \ - ../../print-stp.o \ - ../../print-sunatm.o \ - ../../print-sunrpc.o \ - ../../print-symantec.o \ - ../../print-tcp.o \ - ../../print-telnet.o \ - ../../print-tftp.o \ - ../../print-timed.o \ - ../../print-token.o \ - ../../print-udld.o \ - ../../print-udp.o \ - ../../print-vjc.o \ - ../../print-vqp.o \ - ../../print-vrrp.o \ - ../../print-vtp.o \ - ../../print-wb.o \ - ../../print-zephyr.o \ - ../../setsignal.o \ - ../../smbutil.o \ - ../../tcpdump.o \ - ../../util.o \ - ../../cpack.o \ - ../../ipproto.o \ - ../../l2vpn.o \ - ../../nlpid.o \ - ../../print-eigrp.o \ - ../../print-juniper.o \ - ../../print-lspping.o \ - ../../print-sip.o \ - ../../print-eap.o \ - ../../print-lmp.o \ - ../../print-syslog.o \ - ../../print-dccp.o \ - ../../print-bt.o \ - ../../signature.o - -main: ${OBJS} - ${CC} ${CFLAGS} ${LDFLAGS} -o windump.exe ${OBJS} ${LIBS} - -install: windump.exe - cp windump.exe c:/windows - -clean: - rm -f ${OBJS} windump.exe - -.c.o: - ${CC} ${CFLAGS} -o $*.o -c $< diff --git a/win32/prj/WinDump.dsp b/win32/prj/WinDump.dsp deleted file mode 100644 index ea05ba0..0000000 --- a/win32/prj/WinDump.dsp +++ /dev/null @@ -1,771 +0,0 @@ -# Microsoft Developer Studio Project File - Name="WinDump" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=WinDump - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "WinDump.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "WinDump.mak" CFG="WinDump - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "WinDump - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "WinDump - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 1 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "WinDump - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../" -# PROP Intermediate_Dir "Release" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /W3 /GX /O2 /I "../../../winpcap/wpcap/libpcap/bpf" /I "../../../winpcap/wpcap/libpcap" /I "../../../winpcap/wpcap/libpcap/Win32/Include" /I "../../../winpcap/wpcap/libpcap/Win32/Include/net" /I "../../lbl" /I "../../" /I "../../../winpcap/wpcap/win32-extensions" /D "NDEBUG" /D "_MBCS" /D "_CONSOLE" /D "__STDC__" /D "WPCAP" /D HAVE_PCAP_LIST_DATALINKS=1 /D HAVE_PCAP_SET_DATALINK=1 /D HAVE_PCAP_DATALINK_NAME_TO_VAL=1 /D HAVE_PCAP_DATALINK_VAL_TO_DESCRIPTION=1 /D HAVE_PCAP_DUMP_FTELL=1 /D HAVE_BPF_DUMP=1 /D HAVE_PCAP_DUMP_FLUSH=1 /D HAVE_PCAP_FINDALLDEVS=1 /D HAVE_PCAP_IF_T=1 /D HAVE_PCAP_LIB_VERSION=1 /D "HAVE_REMOTE" /D _U_= /DUSE_ETHER_NTOHOST /YX /FD /c -# ADD BASE RSC /l 0x410 /d "NDEBUG" -# ADD RSC /l 0x410 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib wsock32.lib wpcap.lib /nologo /subsystem:console /machine:I386 /out:"release/WinDump.exe" /libpath:"../../../winpcap/wpcap/lib" - -!ELSEIF "$(CFG)" == "WinDump - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "WinDump_" -# PROP BASE Intermediate_Dir "WinDump_" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../" -# PROP Intermediate_Dir "Debug" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /W3 /Gm /Gi /GX /ZI /I "../../../winpcap/wpcap/libpcap/bpf" /I "../../../winpcap/wpcap/libpcap" /I "../../../winpcap/wpcap/libpcap/Win32/Include" /I "../../../winpcap/wpcap/libpcap/Win32/Include/net" /I "../../Win32/Include" /I "../../lbl" /I "../../" /I "../../../winpcap/wpcap/win32-extensions" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_CONSOLE" /D "__STDC__" /D "WPCAP" /D HAVE_PCAP_LIST_DATALINKS=1 /D HAVE_PCAP_SET_DATALINK=1 /D HAVE_PCAP_DATALINK_NAME_TO_VAL=1 /D HAVE_PCAP_DATALINK_VAL_TO_DESCRIPTION=1 /D HAVE_PCAP_DUMP_FTELL=1 /D HAVE_BPF_DUMP=1 /D HAVE_PCAP_DUMP_FLUSH=1 /D HAVE_PCAP_FINDALLDEVS=1 /D HAVE_PCAP_IF_T=1 /D HAVE_PCAP_LIB_VERSION=1 /D "HAVE_REMOTE" /D _U_= /DUSE_ETHER_NTOHOST /FR /YX /FD /c -# ADD BASE RSC /l 0x410 /d "_DEBUG" -# ADD RSC /l 0x410 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 wpcap.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib wsock32.lib /nologo /subsystem:console /map /debug /debugtype:both /machine:I386 /out:"debug/WinDump.exe" /pdbtype:sept /libpath:"../../../winpcap/wpcap/lib" -# SUBTRACT LINK32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "WinDump - Win32 Release" -# Name "WinDump - Win32 Debug" -# Begin Source File - -SOURCE=..\..\addrtoname.c -# End Source File -# Begin Source File - -SOURCE=..\..\addrtostr.c -# End Source File -# Begin Source File - -SOURCE=..\..\af.c -# End Source File -# Begin Source File - -SOURCE=..\..\ascii_strcasecmp.c -# End Source File -# Begin Source File - -SOURCE=..\..\bpf_dump.c -# End Source File -# Begin Source File - -SOURCE=..\..\checksum.c -# End Source File -# Begin Source File - -SOURCE=..\..\cpack.c -# End Source File -# Begin Source File - -SOURCE=..\..\missing\datalinks.c -# End Source File -# Begin Source File - -SOURCE=..\..\missing\dlnames.c -# End Source File -# Begin Source File - -SOURCE=..\..\missing\getopt_long.c -# End Source File -# Begin Source File - -SOURCE=..\..\gmpls.c -# End Source File -# Begin Source File - -SOURCE=..\..\gmt2local.c -# End Source File -# Begin Source File - -SOURCE=..\..\in_cksum.c -# End Source File -# Begin Source File - -SOURCE=..\..\ipproto.c -# End Source File -# Begin Source File - -SOURCE=..\..\l2vpn.c -# End Source File -# Begin Source File - -SOURCE=..\..\machdep.c -# End Source File -# Begin Source File - -SOURCE=..\..\nlpid.c -# End Source File -# Begin Source File - -SOURCE=..\..\oui.c -# End Source File -# Begin Source File - -SOURCE=..\..\parsenfsfh.c -# End Source File -# Begin Source File - -SOURCE="..\..\print-802_11.c" -# End Source File -# Begin Source File - -SOURCE=..\..\print-802_15_4.c -# End Source File -# Begin Source File - -SOURCE="..\..\print-ah.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-ahcp.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-aodv.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-aoe.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-ap1394.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-arcnet.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-arp.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-ascii.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-atalk.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-atm.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-babel.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-beep.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-bfd.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-bgp.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-bootp.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-bt.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-calm-fast.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-carp.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-cdp.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-cfm.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-chdlc.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-cip.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-cnfp.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-dccp.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-decnet.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-dhcp6.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-domain.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-dtp.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-dvmrp.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-eap.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-egp.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-eigrp.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-enc.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-esp.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-ether.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-fddi.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-forces.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-fr.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-frag6.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-ftp.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-geneve.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-geonet.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-gre.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-hsrp.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-http.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-icmp.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-icmp6.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-igmp.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-igrp.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-ip.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-ip6.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-ip6opts.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-ipcomp.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-ipfc.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-ipnet.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-ipx.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-isakmp.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-isoclns.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-juniper.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-krb.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-l2tp.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-lane.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-ldp.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-llc.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-lldp.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-lmp.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-loopback.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-lspping.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-lwapp.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-lwres.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-m3ua.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-medsa.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-mobile.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-mobility.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-mpcp.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-mpls.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-mptcp.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-msdp.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-msnlb.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-nflog.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-nfs.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-ntp.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-null.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-olsr.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-openflow-1.0.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-openflow.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-ospf.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-ospf6.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-otv.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-pgm.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-pim.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-pktap.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-ppi.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-ppp.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-pppoe.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-pptp.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-radius.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-raw.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-rrcp.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-rip.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-ripng.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-rpki-rtr.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-rsvp.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-rt6.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-rtsp.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-rx.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-sctp.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-sflow.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-sip.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-sl.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-sll.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-slow.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-smb.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-smtp.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-snmp.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-stp.c" -# End Source File -# Begin Source File - -SOURCE="..\..\missing\strdup.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-sunatm.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-sunrpc.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-symantec.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-syslog.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-tcp.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-telnet.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-tftp.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-timed.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-tipc.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-token.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-udld.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-udp.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-usb.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-vjc.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-vqp.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-vrrp.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-vtp.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-vxlan.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-wb.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print-zephyr.c" -# End Source File -# Begin Source File - -SOURCE=..\..\setsignal.c -# End Source File -# Begin Source File - -SOURCE=..\..\smbutil.c -# End Source File -# Begin Source File - -SOURCE=..\..\missing\strlcat.c -# End Source File -# Begin Source File - -SOURCE=..\..\missing\strlcpy.c -# End Source File -# Begin Source File - -SOURCE=..\..\missing\strsep.c -# End Source File -# Begin Source File - -SOURCE=..\..\tcpdump.c -# End Source File -# Begin Source File - -SOURCE=..\Src\ether_ntohost.c -# End Source File -# Begin Source File - -SOURCE="..\..\print-zeromq.c" -# End Source File -# Begin Source File - -SOURCE="..\..\print.c" -# End Source File -# Begin Source File - -SOURCE="..\..\signature.c" -# End Source File -# Begin Source File - -SOURCE="..\..\strtoaddr.c" -# End Source File -# Begin Source File - -SOURCE="..\..\util-print.c" -# End Source File -# Begin Source File - -SOURCE=..\..\util.c -# End Source File -# End Target -# End Project diff --git a/win32/prj/WinDump.dsw b/win32/prj/WinDump.dsw deleted file mode 100644 index 6bf7408..0000000 --- a/win32/prj/WinDump.dsw +++ /dev/null @@ -1,29 +0,0 @@ -Microsoft Developer Studio Workspace File, Format Version 6.00 -# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! - -############################################################################### - -Project: "WinDump"=".\WinDump.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Global: - -Package=<5> -{{{ -}}} - -Package=<3> -{{{ -}}} - -############################################################################### - -- cgit v1.2.3 From 8b0570380fdccbcfef05be807431695a629d76c9 Mon Sep 17 00:00:00 2001 From: yangwei Date: Mon, 28 Sep 2020 14:17:47 +0800 Subject: 🌈style: 移除cmake-build-*目录 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 1 + .../.cmake/api/v1/query/client-vscode/query.json | 1 - .../v1/reply/cache-v2-d6be4d7a072d5438b4cc.json | 1275 ------- .../reply/codemodel-v2-26d6a3e73bd6e837eafc.json | 43 - .../v1/reply/index-2020-09-28T06-04-53-0037.json | 88 - cmake-build-debug/CMakeCache.txt | 400 -- .../CMakeFiles/3.17.3/CMakeCCompiler.cmake | 76 - .../CMakeFiles/3.17.3/CMakeCXXCompiler.cmake | 88 - .../3.17.3/CMakeDetermineCompilerABI_C.bin | Bin 8552 -> 0 bytes .../3.17.3/CMakeDetermineCompilerABI_CXX.bin | Bin 8560 -> 0 bytes .../CMakeFiles/3.17.3/CMakeSystem.cmake | 15 - .../3.17.3/CompilerIdC/CMakeCCompilerId.c | 671 ---- .../CMakeFiles/3.17.3/CompilerIdC/a.out | Bin 8712 -> 0 bytes .../3.17.3/CompilerIdCXX/CMakeCXXCompilerId.cpp | 660 ---- .../CMakeFiles/3.17.3/CompilerIdCXX/a.out | Bin 8720 -> 0 bytes .../CMakeFiles/CMakeDirectoryInformation.cmake | 16 - cmake-build-debug/CMakeFiles/CMakeOutput.log | 498 --- cmake-build-debug/CMakeFiles/Makefile.cmake | 129 - cmake-build-debug/CMakeFiles/Makefile2 | 99 - cmake-build-debug/CMakeFiles/TargetDirectories.txt | 8 - cmake-build-debug/CMakeFiles/cmake.check_cache | 1 - cmake-build-debug/CMakeFiles/feature_tests.bin | Bin 12608 -> 0 bytes cmake-build-debug/CMakeFiles/feature_tests.cxx | 405 -- cmake-build-debug/CMakeFiles/progress.marks | 1 - cmake-build-debug/CPackConfig.cmake | 94 - cmake-build-debug/CPackSourceConfig.cmake | 102 - cmake-build-debug/Makefile | 228 -- cmake-build-debug/addrtoname.o | Bin 32168 -> 0 bytes cmake-build-debug/addrtostr.o | Bin 3120 -> 0 bytes cmake-build-debug/af.o | Bin 2416 -> 0 bytes cmake-build-debug/ascii_strcasecmp.o | Bin 2176 -> 0 bytes cmake-build-debug/autorevision.sh | 1268 ------- cmake-build-debug/changelog.txt | 55 - cmake-build-debug/checksum.o | Bin 3376 -> 0 bytes cmake-build-debug/cmake_install.cmake | 53 - cmake-build-debug/config.h | 395 -- cmake-build-debug/config.log | 3998 -------------------- cmake-build-debug/config.status | 1083 ------ cmake-build-debug/cpack.o | Bin 3088 -> 0 bytes cmake-build-debug/gmpls.o | Bin 8008 -> 0 bytes cmake-build-debug/gmt2local.o | Bin 1704 -> 0 bytes cmake-build-debug/in_cksum.o | Bin 2304 -> 0 bytes cmake-build-debug/ipproto.o | Bin 2472 -> 0 bytes cmake-build-debug/l2vpn.o | Bin 2872 -> 0 bytes cmake-build-debug/libnetdissect.a | Bin 2170748 -> 0 bytes cmake-build-debug/machdep.o | Bin 1264 -> 0 bytes cmake-build-debug/net_common.o | Bin 13432 -> 0 bytes cmake-build-debug/nlpid.o | Bin 1848 -> 0 bytes cmake-build-debug/oui.o | Bin 4440 -> 0 bytes cmake-build-debug/parsenfsfh.o | Bin 5432 -> 0 bytes cmake-build-debug/print-802_11.o | Bin 55744 -> 0 bytes cmake-build-debug/print-802_15_4.o | Bin 3808 -> 0 bytes cmake-build-debug/print-ah.o | Bin 2160 -> 0 bytes cmake-build-debug/print-ahcp.o | Bin 12224 -> 0 bytes cmake-build-debug/print-aodv.o | Bin 10992 -> 0 bytes cmake-build-debug/print-aoe.o | Bin 13656 -> 0 bytes cmake-build-debug/print-ap1394.o | Bin 2856 -> 0 bytes cmake-build-debug/print-arcnet.o | Bin 6848 -> 0 bytes cmake-build-debug/print-arp.o | Bin 10056 -> 0 bytes cmake-build-debug/print-ascii.o | Bin 3728 -> 0 bytes cmake-build-debug/print-atalk.o | Bin 13760 -> 0 bytes cmake-build-debug/print-atm.o | Bin 10568 -> 0 bytes cmake-build-debug/print-babel.o | Bin 17344 -> 0 bytes cmake-build-debug/print-beep.o | Bin 2616 -> 0 bytes cmake-build-debug/print-bfd.o | Bin 7992 -> 0 bytes cmake-build-debug/print-bgp.o | Bin 68944 -> 0 bytes cmake-build-debug/print-bootp.o | Bin 26496 -> 0 bytes cmake-build-debug/print-bt.o | Bin 1952 -> 0 bytes cmake-build-debug/print-calm-fast.o | Bin 1832 -> 0 bytes cmake-build-debug/print-carp.o | Bin 2912 -> 0 bytes cmake-build-debug/print-cdp.o | Bin 11368 -> 0 bytes cmake-build-debug/print-cfm.o | Bin 14288 -> 0 bytes cmake-build-debug/print-chdlc.o | Bin 4952 -> 0 bytes cmake-build-debug/print-cip.o | Bin 2160 -> 0 bytes cmake-build-debug/print-cnfp.o | Bin 9800 -> 0 bytes cmake-build-debug/print-dccp.o | Bin 17336 -> 0 bytes cmake-build-debug/print-decnet.o | Bin 20296 -> 0 bytes cmake-build-debug/print-dhcp6.o | Bin 19232 -> 0 bytes cmake-build-debug/print-domain.o | Bin 19800 -> 0 bytes cmake-build-debug/print-dtp.o | Bin 3304 -> 0 bytes cmake-build-debug/print-dvmrp.o | Bin 8336 -> 0 bytes cmake-build-debug/print-eap.o | Bin 8152 -> 0 bytes cmake-build-debug/print-egp.o | Bin 8112 -> 0 bytes cmake-build-debug/print-eigrp.o | Bin 9976 -> 0 bytes cmake-build-debug/print-enc.o | Bin 2512 -> 0 bytes cmake-build-debug/print-esp.o | Bin 11704 -> 0 bytes cmake-build-debug/print-ether.o | Bin 10304 -> 0 bytes cmake-build-debug/print-fddi.o | Bin 4728 -> 0 bytes cmake-build-debug/print-forces.o | Bin 32848 -> 0 bytes cmake-build-debug/print-fr.o | Bin 17240 -> 0 bytes cmake-build-debug/print-frag6.o | Bin 2344 -> 0 bytes cmake-build-debug/print-ftp.o | Bin 1592 -> 0 bytes cmake-build-debug/print-geneve.o | Bin 5768 -> 0 bytes cmake-build-debug/print-geonet.o | Bin 6440 -> 0 bytes cmake-build-debug/print-gre.o | Bin 8136 -> 0 bytes cmake-build-debug/print-hncp.o | Bin 16576 -> 0 bytes cmake-build-debug/print-hsrp.o | Bin 4136 -> 0 bytes cmake-build-debug/print-http.o | Bin 3248 -> 0 bytes cmake-build-debug/print-icmp.o | Bin 14400 -> 0 bytes cmake-build-debug/print-icmp6.o | Bin 48408 -> 0 bytes cmake-build-debug/print-igmp.o | Bin 10144 -> 0 bytes cmake-build-debug/print-igrp.o | Bin 3576 -> 0 bytes cmake-build-debug/print-ip.o | Bin 18816 -> 0 bytes cmake-build-debug/print-ip6.o | Bin 10976 -> 0 bytes cmake-build-debug/print-ip6opts.o | Bin 5456 -> 0 bytes cmake-build-debug/print-ipcomp.o | Bin 1816 -> 0 bytes cmake-build-debug/print-ipfc.o | Bin 2488 -> 0 bytes cmake-build-debug/print-ipnet.o | Bin 2936 -> 0 bytes cmake-build-debug/print-ipx.o | Bin 6240 -> 0 bytes cmake-build-debug/print-isakmp.o | Bin 77592 -> 0 bytes cmake-build-debug/print-isoclns.o | Bin 81040 -> 0 bytes cmake-build-debug/print-juniper.o | Bin 25656 -> 0 bytes cmake-build-debug/print-krb.o | Bin 6168 -> 0 bytes cmake-build-debug/print-l2tp.o | Bin 16968 -> 0 bytes cmake-build-debug/print-lane.o | Bin 3512 -> 0 bytes cmake-build-debug/print-ldp.o | Bin 16336 -> 0 bytes cmake-build-debug/print-lisp.o | Bin 8992 -> 0 bytes cmake-build-debug/print-llc.o | Bin 13328 -> 0 bytes cmake-build-debug/print-lldp.o | Bin 39992 -> 0 bytes cmake-build-debug/print-lmp.o | Bin 23832 -> 0 bytes cmake-build-debug/print-loopback.o | Bin 4072 -> 0 bytes cmake-build-debug/print-lspping.o | Bin 14312 -> 0 bytes cmake-build-debug/print-lwapp.o | Bin 7024 -> 0 bytes cmake-build-debug/print-lwres.o | Bin 9040 -> 0 bytes cmake-build-debug/print-m3ua.o | Bin 8440 -> 0 bytes cmake-build-debug/print-medsa.o | Bin 5264 -> 0 bytes cmake-build-debug/print-mobile.o | Bin 2536 -> 0 bytes cmake-build-debug/print-mobility.o | Bin 8488 -> 0 bytes cmake-build-debug/print-mpcp.o | Bin 7016 -> 0 bytes cmake-build-debug/print-mpls.o | Bin 3688 -> 0 bytes cmake-build-debug/print-mptcp.o | Bin 7664 -> 0 bytes cmake-build-debug/print-msdp.o | Bin 3584 -> 0 bytes cmake-build-debug/print-msnlb.o | Bin 2024 -> 0 bytes cmake-build-debug/print-nflog.o | Bin 3352 -> 0 bytes cmake-build-debug/print-nfs.o | Bin 36640 -> 0 bytes cmake-build-debug/print-nsh.o | Bin 4448 -> 0 bytes cmake-build-debug/print-ntp.o | Bin 8472 -> 0 bytes cmake-build-debug/print-null.o | Bin 3856 -> 0 bytes cmake-build-debug/print-olsr.o | Bin 12456 -> 0 bytes cmake-build-debug/print-openflow-1.0.o | Bin 63952 -> 0 bytes cmake-build-debug/print-openflow.o | Bin 4360 -> 0 bytes cmake-build-debug/print-ospf.o | Bin 32072 -> 0 bytes cmake-build-debug/print-ospf6.o | Bin 18848 -> 0 bytes cmake-build-debug/print-otv.o | Bin 2080 -> 0 bytes cmake-build-debug/print-pgm.o | Bin 15312 -> 0 bytes cmake-build-debug/print-pim.o | Bin 25096 -> 0 bytes cmake-build-debug/print-pktap.o | Bin 2912 -> 0 bytes cmake-build-debug/print-ppi.o | Bin 2872 -> 0 bytes cmake-build-debug/print-ppp.o | Bin 35688 -> 0 bytes cmake-build-debug/print-pppoe.o | Bin 5168 -> 0 bytes cmake-build-debug/print-pptp.o | Bin 25360 -> 0 bytes cmake-build-debug/print-radius.o | Bin 31968 -> 0 bytes cmake-build-debug/print-raw.o | Bin 1584 -> 0 bytes cmake-build-debug/print-resp.o | Bin 7024 -> 0 bytes cmake-build-debug/print-rip.o | Bin 6664 -> 0 bytes cmake-build-debug/print-ripng.o | Bin 3432 -> 0 bytes cmake-build-debug/print-rpki-rtr.o | Bin 6968 -> 0 bytes cmake-build-debug/print-rrcp.o | Bin 4136 -> 0 bytes cmake-build-debug/print-rsvp.o | Bin 52144 -> 0 bytes cmake-build-debug/print-rt6.o | Bin 2464 -> 0 bytes cmake-build-debug/print-rtsp.o | Bin 2176 -> 0 bytes cmake-build-debug/print-rx.o | Bin 109376 -> 0 bytes cmake-build-debug/print-sctp.o | Bin 10920 -> 0 bytes cmake-build-debug/print-sflow.o | Bin 16408 -> 0 bytes cmake-build-debug/print-sip.o | Bin 2336 -> 0 bytes cmake-build-debug/print-sl.o | Bin 5192 -> 0 bytes cmake-build-debug/print-sll.o | Bin 4200 -> 0 bytes cmake-build-debug/print-slow.o | Bin 13048 -> 0 bytes cmake-build-debug/print-smb.o | Bin 52248 -> 0 bytes cmake-build-debug/print-smtp.o | Bin 1544 -> 0 bytes cmake-build-debug/print-snmp.o | Bin 75208 -> 0 bytes cmake-build-debug/print-stp.o | Bin 9912 -> 0 bytes cmake-build-debug/print-sunatm.o | Bin 2016 -> 0 bytes cmake-build-debug/print-sunrpc.o | Bin 4224 -> 0 bytes cmake-build-debug/print-symantec.o | Bin 2888 -> 0 bytes cmake-build-debug/print-syslog.o | Bin 4888 -> 0 bytes cmake-build-debug/print-tcp.o | Bin 20160 -> 0 bytes cmake-build-debug/print-telnet.o | Bin 9632 -> 0 bytes cmake-build-debug/print-tftp.o | Bin 4352 -> 0 bytes cmake-build-debug/print-timed.o | Bin 5048 -> 0 bytes cmake-build-debug/print-tipc.o | Bin 8432 -> 0 bytes cmake-build-debug/print-token.o | Bin 4992 -> 0 bytes cmake-build-debug/print-udld.o | Bin 4872 -> 0 bytes cmake-build-debug/print-udp.o | Bin 17168 -> 0 bytes cmake-build-debug/print-usb.o | Bin 3104 -> 0 bytes cmake-build-debug/print-vjc.o | Bin 2328 -> 0 bytes cmake-build-debug/print-vqp.o | Bin 5344 -> 0 bytes cmake-build-debug/print-vrrp.o | Bin 4464 -> 0 bytes cmake-build-debug/print-vtp.o | Bin 7896 -> 0 bytes cmake-build-debug/print-vxlan-gpe.o | Bin 3216 -> 0 bytes cmake-build-debug/print-vxlan.o | Bin 2080 -> 0 bytes cmake-build-debug/print-wb.o | Bin 8424 -> 0 bytes cmake-build-debug/print-zephyr.o | Bin 10704 -> 0 bytes cmake-build-debug/print-zeromq.o | Bin 5480 -> 0 bytes cmake-build-debug/print.o | Bin 10936 -> 0 bytes cmake-build-debug/setsignal.o | Bin 1544 -> 0 bytes cmake-build-debug/signature.o | Bin 3768 -> 0 bytes cmake-build-debug/smbutil.o | Bin 89624 -> 0 bytes cmake-build-debug/strlcat.o | Bin 1552 -> 0 bytes cmake-build-debug/strlcpy.o | Bin 1376 -> 0 bytes cmake-build-debug/strtoaddr.o | Bin 3304 -> 0 bytes cmake-build-debug/tcpdump | Bin 1357784 -> 0 bytes cmake-build-debug/tcpdump.1 | 1975 ---------- cmake-build-debug/tcpdump.o | Bin 64432 -> 0 bytes cmake-build-debug/tcpdump_mesa | Bin 1357784 -> 0 bytes cmake-build-debug/util-print.o | Bin 12728 -> 0 bytes cmake-build-debug/util.o | Bin 4584 -> 0 bytes cmake-build-debug/version.c | 1 - cmake-build-debug/version.cmake | 19 - cmake-build-debug/version.o | Bin 1080 -> 0 bytes 210 files changed, 1 insertion(+), 13745 deletions(-) delete mode 100644 cmake-build-debug/.cmake/api/v1/query/client-vscode/query.json delete mode 100644 cmake-build-debug/.cmake/api/v1/reply/cache-v2-d6be4d7a072d5438b4cc.json delete mode 100644 cmake-build-debug/.cmake/api/v1/reply/codemodel-v2-26d6a3e73bd6e837eafc.json delete mode 100644 cmake-build-debug/.cmake/api/v1/reply/index-2020-09-28T06-04-53-0037.json delete mode 100644 cmake-build-debug/CMakeCache.txt delete mode 100644 cmake-build-debug/CMakeFiles/3.17.3/CMakeCCompiler.cmake delete mode 100644 cmake-build-debug/CMakeFiles/3.17.3/CMakeCXXCompiler.cmake delete mode 100755 cmake-build-debug/CMakeFiles/3.17.3/CMakeDetermineCompilerABI_C.bin delete mode 100755 cmake-build-debug/CMakeFiles/3.17.3/CMakeDetermineCompilerABI_CXX.bin delete mode 100644 cmake-build-debug/CMakeFiles/3.17.3/CMakeSystem.cmake delete mode 100644 cmake-build-debug/CMakeFiles/3.17.3/CompilerIdC/CMakeCCompilerId.c delete mode 100755 cmake-build-debug/CMakeFiles/3.17.3/CompilerIdC/a.out delete mode 100644 cmake-build-debug/CMakeFiles/3.17.3/CompilerIdCXX/CMakeCXXCompilerId.cpp delete mode 100755 cmake-build-debug/CMakeFiles/3.17.3/CompilerIdCXX/a.out delete mode 100644 cmake-build-debug/CMakeFiles/CMakeDirectoryInformation.cmake delete mode 100644 cmake-build-debug/CMakeFiles/CMakeOutput.log delete mode 100644 cmake-build-debug/CMakeFiles/Makefile.cmake delete mode 100644 cmake-build-debug/CMakeFiles/Makefile2 delete mode 100644 cmake-build-debug/CMakeFiles/TargetDirectories.txt delete mode 100644 cmake-build-debug/CMakeFiles/cmake.check_cache delete mode 100755 cmake-build-debug/CMakeFiles/feature_tests.bin delete mode 100644 cmake-build-debug/CMakeFiles/feature_tests.cxx delete mode 100644 cmake-build-debug/CMakeFiles/progress.marks delete mode 100644 cmake-build-debug/CPackConfig.cmake delete mode 100644 cmake-build-debug/CPackSourceConfig.cmake delete mode 100644 cmake-build-debug/Makefile delete mode 100644 cmake-build-debug/addrtoname.o delete mode 100644 cmake-build-debug/addrtostr.o delete mode 100644 cmake-build-debug/af.o delete mode 100644 cmake-build-debug/ascii_strcasecmp.o delete mode 100755 cmake-build-debug/autorevision.sh delete mode 100644 cmake-build-debug/changelog.txt delete mode 100644 cmake-build-debug/checksum.o delete mode 100644 cmake-build-debug/cmake_install.cmake delete mode 100644 cmake-build-debug/config.h delete mode 100644 cmake-build-debug/config.log delete mode 100755 cmake-build-debug/config.status delete mode 100644 cmake-build-debug/cpack.o delete mode 100644 cmake-build-debug/gmpls.o delete mode 100644 cmake-build-debug/gmt2local.o delete mode 100644 cmake-build-debug/in_cksum.o delete mode 100644 cmake-build-debug/ipproto.o delete mode 100644 cmake-build-debug/l2vpn.o delete mode 100644 cmake-build-debug/libnetdissect.a delete mode 100644 cmake-build-debug/machdep.o delete mode 100644 cmake-build-debug/net_common.o delete mode 100644 cmake-build-debug/nlpid.o delete mode 100644 cmake-build-debug/oui.o delete mode 100644 cmake-build-debug/parsenfsfh.o delete mode 100644 cmake-build-debug/print-802_11.o delete mode 100644 cmake-build-debug/print-802_15_4.o delete mode 100644 cmake-build-debug/print-ah.o delete mode 100644 cmake-build-debug/print-ahcp.o delete mode 100644 cmake-build-debug/print-aodv.o delete mode 100644 cmake-build-debug/print-aoe.o delete mode 100644 cmake-build-debug/print-ap1394.o delete mode 100644 cmake-build-debug/print-arcnet.o delete mode 100644 cmake-build-debug/print-arp.o delete mode 100644 cmake-build-debug/print-ascii.o delete mode 100644 cmake-build-debug/print-atalk.o delete mode 100644 cmake-build-debug/print-atm.o delete mode 100644 cmake-build-debug/print-babel.o delete mode 100644 cmake-build-debug/print-beep.o delete mode 100644 cmake-build-debug/print-bfd.o delete mode 100644 cmake-build-debug/print-bgp.o delete mode 100644 cmake-build-debug/print-bootp.o delete mode 100644 cmake-build-debug/print-bt.o delete mode 100644 cmake-build-debug/print-calm-fast.o delete mode 100644 cmake-build-debug/print-carp.o delete mode 100644 cmake-build-debug/print-cdp.o delete mode 100644 cmake-build-debug/print-cfm.o delete mode 100644 cmake-build-debug/print-chdlc.o delete mode 100644 cmake-build-debug/print-cip.o delete mode 100644 cmake-build-debug/print-cnfp.o delete mode 100644 cmake-build-debug/print-dccp.o delete mode 100644 cmake-build-debug/print-decnet.o delete mode 100644 cmake-build-debug/print-dhcp6.o delete mode 100644 cmake-build-debug/print-domain.o delete mode 100644 cmake-build-debug/print-dtp.o delete mode 100644 cmake-build-debug/print-dvmrp.o delete mode 100644 cmake-build-debug/print-eap.o delete mode 100644 cmake-build-debug/print-egp.o delete mode 100644 cmake-build-debug/print-eigrp.o delete mode 100644 cmake-build-debug/print-enc.o delete mode 100644 cmake-build-debug/print-esp.o delete mode 100644 cmake-build-debug/print-ether.o delete mode 100644 cmake-build-debug/print-fddi.o delete mode 100644 cmake-build-debug/print-forces.o delete mode 100644 cmake-build-debug/print-fr.o delete mode 100644 cmake-build-debug/print-frag6.o delete mode 100644 cmake-build-debug/print-ftp.o delete mode 100644 cmake-build-debug/print-geneve.o delete mode 100644 cmake-build-debug/print-geonet.o delete mode 100644 cmake-build-debug/print-gre.o delete mode 100644 cmake-build-debug/print-hncp.o delete mode 100644 cmake-build-debug/print-hsrp.o delete mode 100644 cmake-build-debug/print-http.o delete mode 100644 cmake-build-debug/print-icmp.o delete mode 100644 cmake-build-debug/print-icmp6.o delete mode 100644 cmake-build-debug/print-igmp.o delete mode 100644 cmake-build-debug/print-igrp.o delete mode 100644 cmake-build-debug/print-ip.o delete mode 100644 cmake-build-debug/print-ip6.o delete mode 100644 cmake-build-debug/print-ip6opts.o delete mode 100644 cmake-build-debug/print-ipcomp.o delete mode 100644 cmake-build-debug/print-ipfc.o delete mode 100644 cmake-build-debug/print-ipnet.o delete mode 100644 cmake-build-debug/print-ipx.o delete mode 100644 cmake-build-debug/print-isakmp.o delete mode 100644 cmake-build-debug/print-isoclns.o delete mode 100644 cmake-build-debug/print-juniper.o delete mode 100644 cmake-build-debug/print-krb.o delete mode 100644 cmake-build-debug/print-l2tp.o delete mode 100644 cmake-build-debug/print-lane.o delete mode 100644 cmake-build-debug/print-ldp.o delete mode 100644 cmake-build-debug/print-lisp.o delete mode 100644 cmake-build-debug/print-llc.o delete mode 100644 cmake-build-debug/print-lldp.o delete mode 100644 cmake-build-debug/print-lmp.o delete mode 100644 cmake-build-debug/print-loopback.o delete mode 100644 cmake-build-debug/print-lspping.o delete mode 100644 cmake-build-debug/print-lwapp.o delete mode 100644 cmake-build-debug/print-lwres.o delete mode 100644 cmake-build-debug/print-m3ua.o delete mode 100644 cmake-build-debug/print-medsa.o delete mode 100644 cmake-build-debug/print-mobile.o delete mode 100644 cmake-build-debug/print-mobility.o delete mode 100644 cmake-build-debug/print-mpcp.o delete mode 100644 cmake-build-debug/print-mpls.o delete mode 100644 cmake-build-debug/print-mptcp.o delete mode 100644 cmake-build-debug/print-msdp.o delete mode 100644 cmake-build-debug/print-msnlb.o delete mode 100644 cmake-build-debug/print-nflog.o delete mode 100644 cmake-build-debug/print-nfs.o delete mode 100644 cmake-build-debug/print-nsh.o delete mode 100644 cmake-build-debug/print-ntp.o delete mode 100644 cmake-build-debug/print-null.o delete mode 100644 cmake-build-debug/print-olsr.o delete mode 100644 cmake-build-debug/print-openflow-1.0.o delete mode 100644 cmake-build-debug/print-openflow.o delete mode 100644 cmake-build-debug/print-ospf.o delete mode 100644 cmake-build-debug/print-ospf6.o delete mode 100644 cmake-build-debug/print-otv.o delete mode 100644 cmake-build-debug/print-pgm.o delete mode 100644 cmake-build-debug/print-pim.o delete mode 100644 cmake-build-debug/print-pktap.o delete mode 100644 cmake-build-debug/print-ppi.o delete mode 100644 cmake-build-debug/print-ppp.o delete mode 100644 cmake-build-debug/print-pppoe.o delete mode 100644 cmake-build-debug/print-pptp.o delete mode 100644 cmake-build-debug/print-radius.o delete mode 100644 cmake-build-debug/print-raw.o delete mode 100644 cmake-build-debug/print-resp.o delete mode 100644 cmake-build-debug/print-rip.o delete mode 100644 cmake-build-debug/print-ripng.o delete mode 100644 cmake-build-debug/print-rpki-rtr.o delete mode 100644 cmake-build-debug/print-rrcp.o delete mode 100644 cmake-build-debug/print-rsvp.o delete mode 100644 cmake-build-debug/print-rt6.o delete mode 100644 cmake-build-debug/print-rtsp.o delete mode 100644 cmake-build-debug/print-rx.o delete mode 100644 cmake-build-debug/print-sctp.o delete mode 100644 cmake-build-debug/print-sflow.o delete mode 100644 cmake-build-debug/print-sip.o delete mode 100644 cmake-build-debug/print-sl.o delete mode 100644 cmake-build-debug/print-sll.o delete mode 100644 cmake-build-debug/print-slow.o delete mode 100644 cmake-build-debug/print-smb.o delete mode 100644 cmake-build-debug/print-smtp.o delete mode 100644 cmake-build-debug/print-snmp.o delete mode 100644 cmake-build-debug/print-stp.o delete mode 100644 cmake-build-debug/print-sunatm.o delete mode 100644 cmake-build-debug/print-sunrpc.o delete mode 100644 cmake-build-debug/print-symantec.o delete mode 100644 cmake-build-debug/print-syslog.o delete mode 100644 cmake-build-debug/print-tcp.o delete mode 100644 cmake-build-debug/print-telnet.o delete mode 100644 cmake-build-debug/print-tftp.o delete mode 100644 cmake-build-debug/print-timed.o delete mode 100644 cmake-build-debug/print-tipc.o delete mode 100644 cmake-build-debug/print-token.o delete mode 100644 cmake-build-debug/print-udld.o delete mode 100644 cmake-build-debug/print-udp.o delete mode 100644 cmake-build-debug/print-usb.o delete mode 100644 cmake-build-debug/print-vjc.o delete mode 100644 cmake-build-debug/print-vqp.o delete mode 100644 cmake-build-debug/print-vrrp.o delete mode 100644 cmake-build-debug/print-vtp.o delete mode 100644 cmake-build-debug/print-vxlan-gpe.o delete mode 100644 cmake-build-debug/print-vxlan.o delete mode 100644 cmake-build-debug/print-wb.o delete mode 100644 cmake-build-debug/print-zephyr.o delete mode 100644 cmake-build-debug/print-zeromq.o delete mode 100644 cmake-build-debug/print.o delete mode 100644 cmake-build-debug/setsignal.o delete mode 100644 cmake-build-debug/signature.o delete mode 100644 cmake-build-debug/smbutil.o delete mode 100644 cmake-build-debug/strlcat.o delete mode 100644 cmake-build-debug/strlcpy.o delete mode 100644 cmake-build-debug/strtoaddr.o delete mode 100755 cmake-build-debug/tcpdump delete mode 100644 cmake-build-debug/tcpdump.1 delete mode 100644 cmake-build-debug/tcpdump.o delete mode 100755 cmake-build-debug/tcpdump_mesa delete mode 100644 cmake-build-debug/util-print.o delete mode 100644 cmake-build-debug/util.o delete mode 100644 cmake-build-debug/version.c delete mode 100644 cmake-build-debug/version.cmake delete mode 100644 cmake-build-debug/version.o diff --git a/.gitignore b/.gitignore index e524d79..a223255 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ .vscode/ build/ +cmake-build-* diff --git a/cmake-build-debug/.cmake/api/v1/query/client-vscode/query.json b/cmake-build-debug/.cmake/api/v1/query/client-vscode/query.json deleted file mode 100644 index 7730820..0000000 --- a/cmake-build-debug/.cmake/api/v1/query/client-vscode/query.json +++ /dev/null @@ -1 +0,0 @@ -{"requests":[{"kind":"cache","version":2},{"kind":"codemodel","version":2}]} \ No newline at end of file diff --git a/cmake-build-debug/.cmake/api/v1/reply/cache-v2-d6be4d7a072d5438b4cc.json b/cmake-build-debug/.cmake/api/v1/reply/cache-v2-d6be4d7a072d5438b4cc.json deleted file mode 100644 index 5aa1f52..0000000 --- a/cmake-build-debug/.cmake/api/v1/reply/cache-v2-d6be4d7a072d5438b4cc.json +++ /dev/null @@ -1,1275 +0,0 @@ -{ - "entries" : - [ - { - "name" : "CMAKE_ADDR2LINE", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "/usr/bin/addr2line" - }, - { - "name" : "CMAKE_AR", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "/usr/bin/ar" - }, - { - "name" : "CMAKE_BUILD_TYPE", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "No help, variable specified on the command line." - } - ], - "type" : "STRING", - "value" : "Debug" - }, - { - "name" : "CMAKE_CACHEFILE_DIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "This is the directory where this CMakeCache.txt was created" - } - ], - "type" : "INTERNAL", - "value" : "/home/yangwei/tcpdump_mesa/cmake-build-debug" - }, - { - "name" : "CMAKE_CACHE_MAJOR_VERSION", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Major version of cmake used to create the current loaded cache" - } - ], - "type" : "INTERNAL", - "value" : "3" - }, - { - "name" : "CMAKE_CACHE_MINOR_VERSION", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Minor version of cmake used to create the current loaded cache" - } - ], - "type" : "INTERNAL", - "value" : "17" - }, - { - "name" : "CMAKE_CACHE_PATCH_VERSION", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Patch version of cmake used to create the current loaded cache" - } - ], - "type" : "INTERNAL", - "value" : "3" - }, - { - "name" : "CMAKE_COLOR_MAKEFILE", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Enable/Disable color output during build." - } - ], - "type" : "BOOL", - "value" : "ON" - }, - { - "name" : "CMAKE_COMMAND", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Path to CMake executable." - } - ], - "type" : "INTERNAL", - "value" : "/usr/bin/cmake3" - }, - { - "name" : "CMAKE_CPACK_COMMAND", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Path to cpack program executable." - } - ], - "type" : "INTERNAL", - "value" : "/usr/bin/cpack3" - }, - { - "name" : "CMAKE_CTEST_COMMAND", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Path to ctest program executable." - } - ], - "type" : "INTERNAL", - "value" : "/usr/bin/ctest3" - }, - { - "name" : "CMAKE_CXX_COMPILER", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "No help, variable specified on the command line." - } - ], - "type" : "FILEPATH", - "value" : "/usr/bin/g++" - }, - { - "name" : "CMAKE_CXX_COMPILER_AR", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "A wrapper around 'ar' adding the appropriate '--plugin' option for the GCC compiler" - } - ], - "type" : "FILEPATH", - "value" : "/usr/bin/gcc-ar" - }, - { - "name" : "CMAKE_CXX_COMPILER_RANLIB", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "A wrapper around 'ranlib' adding the appropriate '--plugin' option for the GCC compiler" - } - ], - "type" : "FILEPATH", - "value" : "/usr/bin/gcc-ranlib" - }, - { - "name" : "CMAKE_CXX_FLAGS", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the CXX compiler during all build types." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_CXX_FLAGS_DEBUG", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the CXX compiler during DEBUG builds." - } - ], - "type" : "STRING", - "value" : "-g" - }, - { - "name" : "CMAKE_CXX_FLAGS_MINSIZEREL", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the CXX compiler during MINSIZEREL builds." - } - ], - "type" : "STRING", - "value" : "-Os -DNDEBUG" - }, - { - "name" : "CMAKE_CXX_FLAGS_RELEASE", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the CXX compiler during RELEASE builds." - } - ], - "type" : "STRING", - "value" : "-O2 -DNDEBUG" - }, - { - "name" : "CMAKE_CXX_FLAGS_RELWITHDEBINFO", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the CXX compiler during RELWITHDEBINFO builds." - } - ], - "type" : "STRING", - "value" : "-O2 -g -DNDEBUG" - }, - { - "name" : "CMAKE_C_COMPILER", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "No help, variable specified on the command line." - } - ], - "type" : "FILEPATH", - "value" : "/usr/bin/gcc" - }, - { - "name" : "CMAKE_C_COMPILER_AR", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "A wrapper around 'ar' adding the appropriate '--plugin' option for the GCC compiler" - } - ], - "type" : "FILEPATH", - "value" : "/usr/bin/gcc-ar" - }, - { - "name" : "CMAKE_C_COMPILER_RANLIB", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "A wrapper around 'ranlib' adding the appropriate '--plugin' option for the GCC compiler" - } - ], - "type" : "FILEPATH", - "value" : "/usr/bin/gcc-ranlib" - }, - { - "name" : "CMAKE_C_FLAGS", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the C compiler during all build types." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_C_FLAGS_DEBUG", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the C compiler during DEBUG builds." - } - ], - "type" : "STRING", - "value" : "-g" - }, - { - "name" : "CMAKE_C_FLAGS_MINSIZEREL", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the C compiler during MINSIZEREL builds." - } - ], - "type" : "STRING", - "value" : "-Os -DNDEBUG" - }, - { - "name" : "CMAKE_C_FLAGS_RELEASE", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the C compiler during RELEASE builds." - } - ], - "type" : "STRING", - "value" : "-O2 -DNDEBUG" - }, - { - "name" : "CMAKE_C_FLAGS_RELWITHDEBINFO", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the C compiler during RELWITHDEBINFO builds." - } - ], - "type" : "STRING", - "value" : "-O2 -g -DNDEBUG" - }, - { - "name" : "CMAKE_DLLTOOL", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "CMAKE_DLLTOOL-NOTFOUND" - }, - { - "name" : "CMAKE_EDIT_COMMAND", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Path to cache edit program executable." - } - ], - "type" : "INTERNAL", - "value" : "/usr/bin/ccmake3" - }, - { - "name" : "CMAKE_EXECUTABLE_FORMAT", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Executable file format" - } - ], - "type" : "INTERNAL", - "value" : "ELF" - }, - { - "name" : "CMAKE_EXE_LINKER_FLAGS", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during all build types." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_EXE_LINKER_FLAGS_DEBUG", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during DEBUG builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_EXE_LINKER_FLAGS_MINSIZEREL", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during MINSIZEREL builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_EXE_LINKER_FLAGS_RELEASE", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during RELEASE builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during RELWITHDEBINFO builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_EXPORT_COMPILE_COMMANDS", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "No help, variable specified on the command line." - } - ], - "type" : "BOOL", - "value" : "TRUE" - }, - { - "name" : "CMAKE_EXTRA_GENERATOR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Name of external makefile project generator." - } - ], - "type" : "INTERNAL", - "value" : "" - }, - { - "name" : "CMAKE_GENERATOR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Name of generator." - } - ], - "type" : "INTERNAL", - "value" : "Unix Makefiles" - }, - { - "name" : "CMAKE_GENERATOR_INSTANCE", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Generator instance identifier." - } - ], - "type" : "INTERNAL", - "value" : "" - }, - { - "name" : "CMAKE_GENERATOR_PLATFORM", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Name of generator platform." - } - ], - "type" : "INTERNAL", - "value" : "" - }, - { - "name" : "CMAKE_GENERATOR_TOOLSET", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Name of generator toolset." - } - ], - "type" : "INTERNAL", - "value" : "" - }, - { - "name" : "CMAKE_HOME_DIRECTORY", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Source directory with the top level CMakeLists.txt file for this project" - } - ], - "type" : "INTERNAL", - "value" : "/home/yangwei/tcpdump_mesa" - }, - { - "name" : "CMAKE_INSTALL_PREFIX", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Install path prefix, prepended onto install directories." - } - ], - "type" : "PATH", - "value" : "/usr/local" - }, - { - "name" : "CMAKE_INSTALL_SO_NO_EXE", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Install .so files without execute permission." - } - ], - "type" : "INTERNAL", - "value" : "0" - }, - { - "name" : "CMAKE_LINKER", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "/usr/bin/ld" - }, - { - "name" : "CMAKE_MAKE_PROGRAM", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "/usr/bin/gmake" - }, - { - "name" : "CMAKE_MODULE_LINKER_FLAGS", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of modules during all build types." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_MODULE_LINKER_FLAGS_DEBUG", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of modules during DEBUG builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of modules during MINSIZEREL builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_MODULE_LINKER_FLAGS_RELEASE", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of modules during RELEASE builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of modules during RELWITHDEBINFO builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_NM", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "/usr/bin/nm" - }, - { - "name" : "CMAKE_NUMBER_OF_MAKEFILES", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "number of local generators" - } - ], - "type" : "INTERNAL", - "value" : "1" - }, - { - "name" : "CMAKE_OBJCOPY", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "/usr/bin/objcopy" - }, - { - "name" : "CMAKE_OBJDUMP", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "/usr/bin/objdump" - }, - { - "name" : "CMAKE_PLATFORM_INFO_INITIALIZED", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Platform information initialized" - } - ], - "type" : "INTERNAL", - "value" : "1" - }, - { - "name" : "CMAKE_PROJECT_DESCRIPTION", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Value Computed by CMake" - } - ], - "type" : "STATIC", - "value" : "" - }, - { - "name" : "CMAKE_PROJECT_HOMEPAGE_URL", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Value Computed by CMake" - } - ], - "type" : "STATIC", - "value" : "" - }, - { - "name" : "CMAKE_PROJECT_NAME", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Value Computed by CMake" - } - ], - "type" : "STATIC", - "value" : "tcpdump_mesa" - }, - { - "name" : "CMAKE_RANLIB", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "/usr/bin/ranlib" - }, - { - "name" : "CMAKE_READELF", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "/usr/bin/readelf" - }, - { - "name" : "CMAKE_ROOT", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Path to CMake installation." - } - ], - "type" : "INTERNAL", - "value" : "/usr/share/cmake3" - }, - { - "name" : "CMAKE_SHARED_LINKER_FLAGS", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of shared libraries during all build types." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_SHARED_LINKER_FLAGS_DEBUG", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of shared libraries during DEBUG builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of shared libraries during MINSIZEREL builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_SHARED_LINKER_FLAGS_RELEASE", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of shared libraries during RELEASE builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of shared libraries during RELWITHDEBINFO builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_SKIP_INSTALL_RPATH", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "If set, runtime paths are not added when installing shared libraries, but are added when building." - } - ], - "type" : "BOOL", - "value" : "NO" - }, - { - "name" : "CMAKE_SKIP_RPATH", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "If set, runtime paths are not added when using shared libraries." - } - ], - "type" : "BOOL", - "value" : "NO" - }, - { - "name" : "CMAKE_STATIC_LINKER_FLAGS", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of static libraries during all build types." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_STATIC_LINKER_FLAGS_DEBUG", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of static libraries during DEBUG builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of static libraries during MINSIZEREL builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_STATIC_LINKER_FLAGS_RELEASE", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of static libraries during RELEASE builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of static libraries during RELWITHDEBINFO builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_STRIP", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "/usr/bin/strip" - }, - { - "name" : "CMAKE_UNAME", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "uname command" - } - ], - "type" : "INTERNAL", - "value" : "/usr/bin/uname" - }, - { - "name" : "CMAKE_VERBOSE_MAKEFILE", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "If this value is on, makefiles will be generated without the .SILENT directive, and all commands will be echoed to the console during the make. This is useful for debugging only. With Visual Studio IDE projects all commands are done without /nologo." - } - ], - "type" : "BOOL", - "value" : "FALSE" - }, - { - "name" : "CPACK_SOURCE_RPM", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Enable to build RPM source packages" - } - ], - "type" : "BOOL", - "value" : "OFF" - }, - { - "name" : "CPACK_SOURCE_TBZ2", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Enable to build TBZ2 source packages" - } - ], - "type" : "BOOL", - "value" : "ON" - }, - { - "name" : "CPACK_SOURCE_TGZ", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Enable to build TGZ source packages" - } - ], - "type" : "BOOL", - "value" : "ON" - }, - { - "name" : "CPACK_SOURCE_TXZ", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Enable to build TXZ source packages" - } - ], - "type" : "BOOL", - "value" : "ON" - }, - { - "name" : "CPACK_SOURCE_TZ", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Enable to build TZ source packages" - } - ], - "type" : "BOOL", - "value" : "ON" - }, - { - "name" : "CPACK_SOURCE_ZIP", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Enable to build ZIP source packages" - } - ], - "type" : "BOOL", - "value" : "OFF" - }, - { - "name" : "DEFINE_GIT_VERSION", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Set DEFINE_GIT_VERSION to TRUE or FALSE" - } - ], - "type" : "BOOL", - "value" : "ON" - }, - { - "name" : "tcpdump_mesa_BINARY_DIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Value Computed by CMake" - } - ], - "type" : "STATIC", - "value" : "/home/yangwei/tcpdump_mesa/cmake-build-debug" - }, - { - "name" : "tcpdump_mesa_SOURCE_DIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Value Computed by CMake" - } - ], - "type" : "STATIC", - "value" : "/home/yangwei/tcpdump_mesa" - } - ], - "kind" : "cache", - "version" : - { - "major" : 2, - "minor" : 0 - } -} diff --git a/cmake-build-debug/.cmake/api/v1/reply/codemodel-v2-26d6a3e73bd6e837eafc.json b/cmake-build-debug/.cmake/api/v1/reply/codemodel-v2-26d6a3e73bd6e837eafc.json deleted file mode 100644 index 5350ff2..0000000 --- a/cmake-build-debug/.cmake/api/v1/reply/codemodel-v2-26d6a3e73bd6e837eafc.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "configurations" : - [ - { - "directories" : - [ - { - "build" : ".", - "hasInstallRule" : true, - "minimumCMakeVersion" : - { - "string" : "2.8" - }, - "projectIndex" : 0, - "source" : "." - } - ], - "name" : "Debug", - "projects" : - [ - { - "directoryIndexes" : - [ - 0 - ], - "name" : "tcpdump_mesa" - } - ], - "targets" : [] - } - ], - "kind" : "codemodel", - "paths" : - { - "build" : "/home/yangwei/tcpdump_mesa/cmake-build-debug", - "source" : "/home/yangwei/tcpdump_mesa" - }, - "version" : - { - "major" : 2, - "minor" : 0 - } -} diff --git a/cmake-build-debug/.cmake/api/v1/reply/index-2020-09-28T06-04-53-0037.json b/cmake-build-debug/.cmake/api/v1/reply/index-2020-09-28T06-04-53-0037.json deleted file mode 100644 index 9e1074c..0000000 --- a/cmake-build-debug/.cmake/api/v1/reply/index-2020-09-28T06-04-53-0037.json +++ /dev/null @@ -1,88 +0,0 @@ -{ - "cmake" : - { - "generator" : - { - "multiConfig" : false, - "name" : "Unix Makefiles" - }, - "paths" : - { - "cmake" : "/usr/bin/cmake3", - "cpack" : "/usr/bin/cpack3", - "ctest" : "/usr/bin/ctest3", - "root" : "/usr/share/cmake3" - }, - "version" : - { - "isDirty" : false, - "major" : 3, - "minor" : 17, - "patch" : 3, - "string" : "3.17.3", - "suffix" : "" - } - }, - "objects" : - [ - { - "jsonFile" : "codemodel-v2-26d6a3e73bd6e837eafc.json", - "kind" : "codemodel", - "version" : - { - "major" : 2, - "minor" : 0 - } - }, - { - "jsonFile" : "cache-v2-d6be4d7a072d5438b4cc.json", - "kind" : "cache", - "version" : - { - "major" : 2, - "minor" : 0 - } - } - ], - "reply" : - { - "client-vscode" : - { - "query.json" : - { - "requests" : - [ - { - "kind" : "cache", - "version" : 2 - }, - { - "kind" : "codemodel", - "version" : 2 - } - ], - "responses" : - [ - { - "jsonFile" : "cache-v2-d6be4d7a072d5438b4cc.json", - "kind" : "cache", - "version" : - { - "major" : 2, - "minor" : 0 - } - }, - { - "jsonFile" : "codemodel-v2-26d6a3e73bd6e837eafc.json", - "kind" : "codemodel", - "version" : - { - "major" : 2, - "minor" : 0 - } - } - ] - } - } - } -} diff --git a/cmake-build-debug/CMakeCache.txt b/cmake-build-debug/CMakeCache.txt deleted file mode 100644 index 19ce3e5..0000000 --- a/cmake-build-debug/CMakeCache.txt +++ /dev/null @@ -1,400 +0,0 @@ -# This is the CMakeCache file. -# For build in directory: /home/yangwei/tcpdump_mesa/cmake-build-debug -# It was generated by CMake: /usr/bin/cmake3 -# You can edit this file to change values found and used by cmake. -# If you do not want to change any of the values, simply exit the editor. -# If you do want to change a value, simply edit, save, and exit the editor. -# The syntax for the file is as follows: -# KEY:TYPE=VALUE -# KEY is the name of a variable in the cache. -# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. -# VALUE is the current value for the KEY. - -######################## -# EXTERNAL cache entries -######################## - -//Path to a program. -CMAKE_ADDR2LINE:FILEPATH=/usr/bin/addr2line - -//Path to a program. -CMAKE_AR:FILEPATH=/usr/bin/ar - -//No help, variable specified on the command line. -CMAKE_BUILD_TYPE:STRING=Debug - -//Enable/Disable color output during build. -CMAKE_COLOR_MAKEFILE:BOOL=ON - -//No help, variable specified on the command line. -CMAKE_CXX_COMPILER:FILEPATH=/usr/bin/g++ - -//A wrapper around 'ar' adding the appropriate '--plugin' option -// for the GCC compiler -CMAKE_CXX_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar - -//A wrapper around 'ranlib' adding the appropriate '--plugin' option -// for the GCC compiler -CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib - -//Flags used by the CXX compiler during all build types. -CMAKE_CXX_FLAGS:STRING= - -//Flags used by the CXX compiler during DEBUG builds. -CMAKE_CXX_FLAGS_DEBUG:STRING=-g - -//Flags used by the CXX compiler during MINSIZEREL builds. -CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG - -//Flags used by the CXX compiler during RELEASE builds. -CMAKE_CXX_FLAGS_RELEASE:STRING=-O2 -DNDEBUG - -//Flags used by the CXX compiler during RELWITHDEBINFO builds. -CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG - -//No help, variable specified on the command line. -CMAKE_C_COMPILER:FILEPATH=/usr/bin/gcc - -//A wrapper around 'ar' adding the appropriate '--plugin' option -// for the GCC compiler -CMAKE_C_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar - -//A wrapper around 'ranlib' adding the appropriate '--plugin' option -// for the GCC compiler -CMAKE_C_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib - -//Flags used by the C compiler during all build types. -CMAKE_C_FLAGS:STRING= - -//Flags used by the C compiler during DEBUG builds. -CMAKE_C_FLAGS_DEBUG:STRING=-g - -//Flags used by the C compiler during MINSIZEREL builds. -CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG - -//Flags used by the C compiler during RELEASE builds. -CMAKE_C_FLAGS_RELEASE:STRING=-O2 -DNDEBUG - -//Flags used by the C compiler during RELWITHDEBINFO builds. -CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG - -//Path to a program. -CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND - -//Flags used by the linker during all build types. -CMAKE_EXE_LINKER_FLAGS:STRING= - -//Flags used by the linker during DEBUG builds. -CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= - -//Flags used by the linker during MINSIZEREL builds. -CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= - -//Flags used by the linker during RELEASE builds. -CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= - -//Flags used by the linker during RELWITHDEBINFO builds. -CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= - -//No help, variable specified on the command line. -CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=TRUE - -//Install path prefix, prepended onto install directories. -CMAKE_INSTALL_PREFIX:PATH=/usr/local - -//Path to a program. -CMAKE_LINKER:FILEPATH=/usr/bin/ld - -//Path to a program. -CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/gmake - -//Flags used by the linker during the creation of modules during -// all build types. -CMAKE_MODULE_LINKER_FLAGS:STRING= - -//Flags used by the linker during the creation of modules during -// DEBUG builds. -CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= - -//Flags used by the linker during the creation of modules during -// MINSIZEREL builds. -CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= - -//Flags used by the linker during the creation of modules during -// RELEASE builds. -CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= - -//Flags used by the linker during the creation of modules during -// RELWITHDEBINFO builds. -CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= - -//Path to a program. -CMAKE_NM:FILEPATH=/usr/bin/nm - -//Path to a program. -CMAKE_OBJCOPY:FILEPATH=/usr/bin/objcopy - -//Path to a program. -CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump - -//Value Computed by CMake -CMAKE_PROJECT_DESCRIPTION:STATIC= - -//Value Computed by CMake -CMAKE_PROJECT_HOMEPAGE_URL:STATIC= - -//Value Computed by CMake -CMAKE_PROJECT_NAME:STATIC=tcpdump_mesa - -//Path to a program. -CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib - -//Path to a program. -CMAKE_READELF:FILEPATH=/usr/bin/readelf - -//Flags used by the linker during the creation of shared libraries -// during all build types. -CMAKE_SHARED_LINKER_FLAGS:STRING= - -//Flags used by the linker during the creation of shared libraries -// during DEBUG builds. -CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= - -//Flags used by the linker during the creation of shared libraries -// during MINSIZEREL builds. -CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= - -//Flags used by the linker during the creation of shared libraries -// during RELEASE builds. -CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= - -//Flags used by the linker during the creation of shared libraries -// during RELWITHDEBINFO builds. -CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= - -//If set, runtime paths are not added when installing shared libraries, -// but are added when building. -CMAKE_SKIP_INSTALL_RPATH:BOOL=NO - -//If set, runtime paths are not added when using shared libraries. -CMAKE_SKIP_RPATH:BOOL=NO - -//Flags used by the linker during the creation of static libraries -// during all build types. -CMAKE_STATIC_LINKER_FLAGS:STRING= - -//Flags used by the linker during the creation of static libraries -// during DEBUG builds. -CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= - -//Flags used by the linker during the creation of static libraries -// during MINSIZEREL builds. -CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= - -//Flags used by the linker during the creation of static libraries -// during RELEASE builds. -CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= - -//Flags used by the linker during the creation of static libraries -// during RELWITHDEBINFO builds. -CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= - -//Path to a program. -CMAKE_STRIP:FILEPATH=/usr/bin/strip - -//If this value is on, makefiles will be generated without the -// .SILENT directive, and all commands will be echoed to the console -// during the make. This is useful for debugging only. With Visual -// Studio IDE projects all commands are done without /nologo. -CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE - -//Enable to build RPM source packages -CPACK_SOURCE_RPM:BOOL=OFF - -//Enable to build TBZ2 source packages -CPACK_SOURCE_TBZ2:BOOL=ON - -//Enable to build TGZ source packages -CPACK_SOURCE_TGZ:BOOL=ON - -//Enable to build TXZ source packages -CPACK_SOURCE_TXZ:BOOL=ON - -//Enable to build TZ source packages -CPACK_SOURCE_TZ:BOOL=ON - -//Enable to build ZIP source packages -CPACK_SOURCE_ZIP:BOOL=OFF - -//Set DEFINE_GIT_VERSION to TRUE or FALSE -DEFINE_GIT_VERSION:BOOL=ON - -//Value Computed by CMake -tcpdump_mesa_BINARY_DIR:STATIC=/home/yangwei/tcpdump_mesa/cmake-build-debug - -//Value Computed by CMake -tcpdump_mesa_SOURCE_DIR:STATIC=/home/yangwei/tcpdump_mesa - - -######################## -# INTERNAL cache entries -######################## - -//ADVANCED property for variable: CMAKE_ADDR2LINE -CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_AR -CMAKE_AR-ADVANCED:INTERNAL=1 -//This is the directory where this CMakeCache.txt was created -CMAKE_CACHEFILE_DIR:INTERNAL=/home/yangwei/tcpdump_mesa/cmake-build-debug -//Major version of cmake used to create the current loaded cache -CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 -//Minor version of cmake used to create the current loaded cache -CMAKE_CACHE_MINOR_VERSION:INTERNAL=17 -//Patch version of cmake used to create the current loaded cache -CMAKE_CACHE_PATCH_VERSION:INTERNAL=3 -//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE -CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1 -//Path to CMake executable. -CMAKE_COMMAND:INTERNAL=/usr/bin/cmake3 -//Path to cpack program executable. -CMAKE_CPACK_COMMAND:INTERNAL=/usr/bin/cpack3 -//Path to ctest program executable. -CMAKE_CTEST_COMMAND:INTERNAL=/usr/bin/ctest3 -//ADVANCED property for variable: CMAKE_CXX_COMPILER -CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR -CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB -CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_FLAGS -CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG -CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL -CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE -CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO -CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_COMPILER -CMAKE_C_COMPILER-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_COMPILER_AR -CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB -CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_FLAGS -CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG -CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL -CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE -CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO -CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_DLLTOOL -CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 -//Path to cache edit program executable. -CMAKE_EDIT_COMMAND:INTERNAL=/usr/bin/ccmake3 -//Executable file format -CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS -CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG -CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL -CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE -CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO -CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS -CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 -//Name of external makefile project generator. -CMAKE_EXTRA_GENERATOR:INTERNAL= -//Name of generator. -CMAKE_GENERATOR:INTERNAL=Unix Makefiles -//Generator instance identifier. -CMAKE_GENERATOR_INSTANCE:INTERNAL= -//Name of generator platform. -CMAKE_GENERATOR_PLATFORM:INTERNAL= -//Name of generator toolset. -CMAKE_GENERATOR_TOOLSET:INTERNAL= -//Source directory with the top level CMakeLists.txt file for this -// project -CMAKE_HOME_DIRECTORY:INTERNAL=/home/yangwei/tcpdump_mesa -//Install .so files without execute permission. -CMAKE_INSTALL_SO_NO_EXE:INTERNAL=0 -//ADVANCED property for variable: CMAKE_LINKER -CMAKE_LINKER-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MAKE_PROGRAM -CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS -CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG -CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL -CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE -CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO -CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_NM -CMAKE_NM-ADVANCED:INTERNAL=1 -//number of local generators -CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 -//ADVANCED property for variable: CMAKE_OBJCOPY -CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_OBJDUMP -CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 -//Platform information initialized -CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_RANLIB -CMAKE_RANLIB-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_READELF -CMAKE_READELF-ADVANCED:INTERNAL=1 -//Path to CMake installation. -CMAKE_ROOT:INTERNAL=/usr/share/cmake3 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS -CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG -CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL -CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE -CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO -CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH -CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SKIP_RPATH -CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS -CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG -CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL -CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE -CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO -CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STRIP -CMAKE_STRIP-ADVANCED:INTERNAL=1 -//uname command -CMAKE_UNAME:INTERNAL=/usr/bin/uname -//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE -CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CPACK_SOURCE_RPM -CPACK_SOURCE_RPM-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CPACK_SOURCE_TBZ2 -CPACK_SOURCE_TBZ2-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CPACK_SOURCE_TGZ -CPACK_SOURCE_TGZ-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CPACK_SOURCE_TXZ -CPACK_SOURCE_TXZ-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CPACK_SOURCE_TZ -CPACK_SOURCE_TZ-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CPACK_SOURCE_ZIP -CPACK_SOURCE_ZIP-ADVANCED:INTERNAL=1 - diff --git a/cmake-build-debug/CMakeFiles/3.17.3/CMakeCCompiler.cmake b/cmake-build-debug/CMakeFiles/3.17.3/CMakeCCompiler.cmake deleted file mode 100644 index d7f667d..0000000 --- a/cmake-build-debug/CMakeFiles/3.17.3/CMakeCCompiler.cmake +++ /dev/null @@ -1,76 +0,0 @@ -set(CMAKE_C_COMPILER "/usr/bin/gcc") -set(CMAKE_C_COMPILER_ARG1 "") -set(CMAKE_C_COMPILER_ID "GNU") -set(CMAKE_C_COMPILER_VERSION "4.8.5") -set(CMAKE_C_COMPILER_VERSION_INTERNAL "") -set(CMAKE_C_COMPILER_WRAPPER "") -set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "90") -set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert") -set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") -set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") -set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") - -set(CMAKE_C_PLATFORM_ID "Linux") -set(CMAKE_C_SIMULATE_ID "") -set(CMAKE_C_COMPILER_FRONTEND_VARIANT "") -set(CMAKE_C_SIMULATE_VERSION "") - - - -set(CMAKE_AR "/usr/bin/ar") -set(CMAKE_C_COMPILER_AR "/usr/bin/gcc-ar") -set(CMAKE_RANLIB "/usr/bin/ranlib") -set(CMAKE_C_COMPILER_RANLIB "/usr/bin/gcc-ranlib") -set(CMAKE_LINKER "/usr/bin/ld") -set(CMAKE_MT "") -set(CMAKE_COMPILER_IS_GNUCC 1) -set(CMAKE_C_COMPILER_LOADED 1) -set(CMAKE_C_COMPILER_WORKS TRUE) -set(CMAKE_C_ABI_COMPILED TRUE) -set(CMAKE_COMPILER_IS_MINGW ) -set(CMAKE_COMPILER_IS_CYGWIN ) -if(CMAKE_COMPILER_IS_CYGWIN) - set(CYGWIN 1) - set(UNIX 1) -endif() - -set(CMAKE_C_COMPILER_ENV_VAR "CC") - -if(CMAKE_COMPILER_IS_MINGW) - set(MINGW 1) -endif() -set(CMAKE_C_COMPILER_ID_RUN 1) -set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) -set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) -set(CMAKE_C_LINKER_PREFERENCE 10) - -# Save compiler ABI information. -set(CMAKE_C_SIZEOF_DATA_PTR "8") -set(CMAKE_C_COMPILER_ABI "ELF") -set(CMAKE_C_LIBRARY_ARCHITECTURE "") - -if(CMAKE_C_SIZEOF_DATA_PTR) - set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") -endif() - -if(CMAKE_C_COMPILER_ABI) - set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") -endif() - -if(CMAKE_C_LIBRARY_ARCHITECTURE) - set(CMAKE_LIBRARY_ARCHITECTURE "") -endif() - -set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") -if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) - set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") -endif() - - - - - -set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/opt/mrzcpd/include;/opt/MESA/include;/opt/MESA/include/MESA;/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include;/usr/local/include;/usr/include") -set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;gcc_s;c;gcc;gcc_s") -set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/usr/local/lib64;/usr/lib/gcc/x86_64-redhat-linux/4.8.5;/usr/lib64;/lib64;/opt/mrzcpd/lib;/opt/MESA/lib;/usr/local/lib;/usr/lib") -set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/cmake-build-debug/CMakeFiles/3.17.3/CMakeCXXCompiler.cmake b/cmake-build-debug/CMakeFiles/3.17.3/CMakeCXXCompiler.cmake deleted file mode 100644 index 90a9152..0000000 --- a/cmake-build-debug/CMakeFiles/3.17.3/CMakeCXXCompiler.cmake +++ /dev/null @@ -1,88 +0,0 @@ -set(CMAKE_CXX_COMPILER "/usr/bin/g++") -set(CMAKE_CXX_COMPILER_ARG1 "") -set(CMAKE_CXX_COMPILER_ID "GNU") -set(CMAKE_CXX_COMPILER_VERSION "4.8.5") -set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") -set(CMAKE_CXX_COMPILER_WRAPPER "") -set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "98") -set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_template_template_parameters") -set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") -set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") -set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_template_template_parameters") -set(CMAKE_CXX17_COMPILE_FEATURES "") -set(CMAKE_CXX20_COMPILE_FEATURES "") - -set(CMAKE_CXX_PLATFORM_ID "Linux") -set(CMAKE_CXX_SIMULATE_ID "") -set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "") -set(CMAKE_CXX_SIMULATE_VERSION "") - - - -set(CMAKE_AR "/usr/bin/ar") -set(CMAKE_CXX_COMPILER_AR "/usr/bin/gcc-ar") -set(CMAKE_RANLIB "/usr/bin/ranlib") -set(CMAKE_CXX_COMPILER_RANLIB "/usr/bin/gcc-ranlib") -set(CMAKE_LINKER "/usr/bin/ld") -set(CMAKE_MT "") -set(CMAKE_COMPILER_IS_GNUCXX 1) -set(CMAKE_CXX_COMPILER_LOADED 1) -set(CMAKE_CXX_COMPILER_WORKS TRUE) -set(CMAKE_CXX_ABI_COMPILED TRUE) -set(CMAKE_COMPILER_IS_MINGW ) -set(CMAKE_COMPILER_IS_CYGWIN ) -if(CMAKE_COMPILER_IS_CYGWIN) - set(CYGWIN 1) - set(UNIX 1) -endif() - -set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") - -if(CMAKE_COMPILER_IS_MINGW) - set(MINGW 1) -endif() -set(CMAKE_CXX_COMPILER_ID_RUN 1) -set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;CPP) -set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) - -foreach (lang C OBJC OBJCXX) - if (CMAKE_${lang}_COMPILER_ID_RUN) - foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) - list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) - endforeach() - endif() -endforeach() - -set(CMAKE_CXX_LINKER_PREFERENCE 30) -set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) - -# Save compiler ABI information. -set(CMAKE_CXX_SIZEOF_DATA_PTR "8") -set(CMAKE_CXX_COMPILER_ABI "ELF") -set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") - -if(CMAKE_CXX_SIZEOF_DATA_PTR) - set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") -endif() - -if(CMAKE_CXX_COMPILER_ABI) - set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") -endif() - -if(CMAKE_CXX_LIBRARY_ARCHITECTURE) - set(CMAKE_LIBRARY_ARCHITECTURE "") -endif() - -set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") -if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) - set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") -endif() - - - - - -set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/opt/mrzcpd/include;/opt/MESA/include;/opt/MESA/include/MESA;/usr/include/c++/4.8.5;/usr/include/c++/4.8.5/x86_64-redhat-linux;/usr/include/c++/4.8.5/backward;/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include;/usr/local/include;/usr/include") -set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc_s;gcc;c;gcc_s;gcc") -set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/usr/local/lib64;/usr/lib/gcc/x86_64-redhat-linux/4.8.5;/usr/lib64;/lib64;/opt/mrzcpd/lib;/opt/MESA/lib;/usr/local/lib;/usr/lib") -set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/cmake-build-debug/CMakeFiles/3.17.3/CMakeDetermineCompilerABI_C.bin b/cmake-build-debug/CMakeFiles/3.17.3/CMakeDetermineCompilerABI_C.bin deleted file mode 100755 index f3b819d..0000000 Binary files a/cmake-build-debug/CMakeFiles/3.17.3/CMakeDetermineCompilerABI_C.bin and /dev/null differ diff --git a/cmake-build-debug/CMakeFiles/3.17.3/CMakeDetermineCompilerABI_CXX.bin b/cmake-build-debug/CMakeFiles/3.17.3/CMakeDetermineCompilerABI_CXX.bin deleted file mode 100755 index 25f2992..0000000 Binary files a/cmake-build-debug/CMakeFiles/3.17.3/CMakeDetermineCompilerABI_CXX.bin and /dev/null differ diff --git a/cmake-build-debug/CMakeFiles/3.17.3/CMakeSystem.cmake b/cmake-build-debug/CMakeFiles/3.17.3/CMakeSystem.cmake deleted file mode 100644 index eae8f4a..0000000 --- a/cmake-build-debug/CMakeFiles/3.17.3/CMakeSystem.cmake +++ /dev/null @@ -1,15 +0,0 @@ -set(CMAKE_HOST_SYSTEM "Linux-3.10.0-693.el7.x86_64") -set(CMAKE_HOST_SYSTEM_NAME "Linux") -set(CMAKE_HOST_SYSTEM_VERSION "3.10.0-693.el7.x86_64") -set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64") - - - -set(CMAKE_SYSTEM "Linux-3.10.0-693.el7.x86_64") -set(CMAKE_SYSTEM_NAME "Linux") -set(CMAKE_SYSTEM_VERSION "3.10.0-693.el7.x86_64") -set(CMAKE_SYSTEM_PROCESSOR "x86_64") - -set(CMAKE_CROSSCOMPILING "FALSE") - -set(CMAKE_SYSTEM_LOADED 1) diff --git a/cmake-build-debug/CMakeFiles/3.17.3/CompilerIdC/CMakeCCompilerId.c b/cmake-build-debug/CMakeFiles/3.17.3/CompilerIdC/CMakeCCompilerId.c deleted file mode 100644 index d884b50..0000000 --- a/cmake-build-debug/CMakeFiles/3.17.3/CompilerIdC/CMakeCCompilerId.c +++ /dev/null @@ -1,671 +0,0 @@ -#ifdef __cplusplus -# error "A C++ compiler has been selected for C." -#endif - -#if defined(__18CXX) -# define ID_VOID_MAIN -#endif -#if defined(__CLASSIC_C__) -/* cv-qualifiers did not exist in K&R C */ -# define const -# define volatile -#endif - - -/* Version number components: V=Version, R=Revision, P=Patch - Version date components: YYYY=Year, MM=Month, DD=Day */ - -#if defined(__INTEL_COMPILER) || defined(__ICC) -# define COMPILER_ID "Intel" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# if defined(__GNUC__) -# define SIMULATE_ID "GNU" -# endif - /* __INTEL_COMPILER = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) -# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) -# if defined(__INTEL_COMPILER_UPDATE) -# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) -# else -# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) -# endif -# if defined(__INTEL_COMPILER_BUILD_DATE) - /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ -# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) -# endif -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif -# if defined(__GNUC__) -# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) -# elif defined(__GNUG__) -# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) -# endif -# if defined(__GNUC_MINOR__) -# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) -# endif -# if defined(__GNUC_PATCHLEVEL__) -# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -# endif - -#elif defined(__PATHCC__) -# define COMPILER_ID "PathScale" -# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) -# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) -# if defined(__PATHCC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) -# endif - -#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) -# define COMPILER_ID "Embarcadero" -# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) -# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) -# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) - -#elif defined(__BORLANDC__) -# define COMPILER_ID "Borland" - /* __BORLANDC__ = 0xVRR */ -# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) -# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) - -#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 -# define COMPILER_ID "Watcom" - /* __WATCOMC__ = VVRR */ -# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) -# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) -# if (__WATCOMC__ % 10) > 0 -# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) -# endif - -#elif defined(__WATCOMC__) -# define COMPILER_ID "OpenWatcom" - /* __WATCOMC__ = VVRP + 1100 */ -# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) -# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) -# if (__WATCOMC__ % 10) > 0 -# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) -# endif - -#elif defined(__SUNPRO_C) -# define COMPILER_ID "SunPro" -# if __SUNPRO_C >= 0x5100 - /* __SUNPRO_C = 0xVRRP */ -# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) -# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) -# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) -# else - /* __SUNPRO_CC = 0xVRP */ -# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) -# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) -# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) -# endif - -#elif defined(__HP_cc) -# define COMPILER_ID "HP" - /* __HP_cc = VVRRPP */ -# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) -# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) -# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) - -#elif defined(__DECC) -# define COMPILER_ID "Compaq" - /* __DECC_VER = VVRRTPPPP */ -# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) -# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) -# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) - -#elif defined(__IBMC__) && defined(__COMPILER_VER__) -# define COMPILER_ID "zOS" - /* __IBMC__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) - -#elif defined(__ibmxl__) && defined(__clang__) -# define COMPILER_ID "XLClang" -# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) -# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) -# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) -# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) - - -#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 -# define COMPILER_ID "XL" - /* __IBMC__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) - -#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 -# define COMPILER_ID "VisualAge" - /* __IBMC__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) - -#elif defined(__PGI) -# define COMPILER_ID "PGI" -# define COMPILER_VERSION_MAJOR DEC(__PGIC__) -# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) -# if defined(__PGIC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) -# endif - -#elif defined(_CRAYC) -# define COMPILER_ID "Cray" -# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) -# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) - -#elif defined(__TI_COMPILER_VERSION__) -# define COMPILER_ID "TI" - /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ -# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) -# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) -# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) - -#elif defined(__FUJITSU) || defined(__FCC_VERSION) || defined(__fcc_version) -# define COMPILER_ID "Fujitsu" - -#elif defined(__ghs__) -# define COMPILER_ID "GHS" -/* __GHS_VERSION_NUMBER = VVVVRP */ -# ifdef __GHS_VERSION_NUMBER -# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) -# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) -# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) -# endif - -#elif defined(__TINYC__) -# define COMPILER_ID "TinyCC" - -#elif defined(__BCC__) -# define COMPILER_ID "Bruce" - -#elif defined(__SCO_VERSION__) -# define COMPILER_ID "SCO" - -#elif defined(__ARMCC_VERSION) && !defined(__clang__) -# define COMPILER_ID "ARMCC" -#if __ARMCC_VERSION >= 1000000 - /* __ARMCC_VERSION = VRRPPPP */ - # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) - # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) - # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) -#else - /* __ARMCC_VERSION = VRPPPP */ - # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) - # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) - # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) -#endif - - -#elif defined(__clang__) && defined(__apple_build_version__) -# define COMPILER_ID "AppleClang" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# define COMPILER_VERSION_MAJOR DEC(__clang_major__) -# define COMPILER_VERSION_MINOR DEC(__clang_minor__) -# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif -# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) - -#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) -# define COMPILER_ID "ARMClang" - # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) - # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) - # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) -# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) - -#elif defined(__clang__) -# define COMPILER_ID "Clang" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# define COMPILER_VERSION_MAJOR DEC(__clang_major__) -# define COMPILER_VERSION_MINOR DEC(__clang_minor__) -# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif - -#elif defined(__GNUC__) -# define COMPILER_ID "GNU" -# define COMPILER_VERSION_MAJOR DEC(__GNUC__) -# if defined(__GNUC_MINOR__) -# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) -# endif -# if defined(__GNUC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -# endif - -#elif defined(_MSC_VER) -# define COMPILER_ID "MSVC" - /* _MSC_VER = VVRR */ -# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) -# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) -# if defined(_MSC_FULL_VER) -# if _MSC_VER >= 1400 - /* _MSC_FULL_VER = VVRRPPPPP */ -# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) -# else - /* _MSC_FULL_VER = VVRRPPPP */ -# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) -# endif -# endif -# if defined(_MSC_BUILD) -# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) -# endif - -#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) -# define COMPILER_ID "ADSP" -#if defined(__VISUALDSPVERSION__) - /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ -# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) -# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) -# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) -#endif - -#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) -# define COMPILER_ID "IAR" -# if defined(__VER__) && defined(__ICCARM__) -# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) -# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) -# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) -# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) -# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__)) -# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) -# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) -# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) -# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) -# endif - -#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) -# define COMPILER_ID "SDCC" -# if defined(__SDCC_VERSION_MAJOR) -# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR) -# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR) -# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH) -# else - /* SDCC = VRP */ -# define COMPILER_VERSION_MAJOR DEC(SDCC/100) -# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) -# define COMPILER_VERSION_PATCH DEC(SDCC % 10) -# endif - - -/* These compilers are either not known or too old to define an - identification macro. Try to identify the platform and guess that - it is the native compiler. */ -#elif defined(__hpux) || defined(__hpua) -# define COMPILER_ID "HP" - -#else /* unknown compiler */ -# define COMPILER_ID "" -#endif - -/* Construct the string literal in pieces to prevent the source from - getting matched. Store it in a pointer rather than an array - because some compilers will just produce instructions to fill the - array rather than assigning a pointer to a static array. */ -char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; -#ifdef SIMULATE_ID -char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; -#endif - -#ifdef __QNXNTO__ -char const* qnxnto = "INFO" ":" "qnxnto[]"; -#endif - -#if defined(__CRAYXE) || defined(__CRAYXC) -char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; -#endif - -#define STRINGIFY_HELPER(X) #X -#define STRINGIFY(X) STRINGIFY_HELPER(X) - -/* Identify known platforms by name. */ -#if defined(__linux) || defined(__linux__) || defined(linux) -# define PLATFORM_ID "Linux" - -#elif defined(__CYGWIN__) -# define PLATFORM_ID "Cygwin" - -#elif defined(__MINGW32__) -# define PLATFORM_ID "MinGW" - -#elif defined(__APPLE__) -# define PLATFORM_ID "Darwin" - -#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) -# define PLATFORM_ID "Windows" - -#elif defined(__FreeBSD__) || defined(__FreeBSD) -# define PLATFORM_ID "FreeBSD" - -#elif defined(__NetBSD__) || defined(__NetBSD) -# define PLATFORM_ID "NetBSD" - -#elif defined(__OpenBSD__) || defined(__OPENBSD) -# define PLATFORM_ID "OpenBSD" - -#elif defined(__sun) || defined(sun) -# define PLATFORM_ID "SunOS" - -#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) -# define PLATFORM_ID "AIX" - -#elif defined(__hpux) || defined(__hpux__) -# define PLATFORM_ID "HP-UX" - -#elif defined(__HAIKU__) -# define PLATFORM_ID "Haiku" - -#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) -# define PLATFORM_ID "BeOS" - -#elif defined(__QNX__) || defined(__QNXNTO__) -# define PLATFORM_ID "QNX" - -#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) -# define PLATFORM_ID "Tru64" - -#elif defined(__riscos) || defined(__riscos__) -# define PLATFORM_ID "RISCos" - -#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) -# define PLATFORM_ID "SINIX" - -#elif defined(__UNIX_SV__) -# define PLATFORM_ID "UNIX_SV" - -#elif defined(__bsdos__) -# define PLATFORM_ID "BSDOS" - -#elif defined(_MPRAS) || defined(MPRAS) -# define PLATFORM_ID "MP-RAS" - -#elif defined(__osf) || defined(__osf__) -# define PLATFORM_ID "OSF1" - -#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) -# define PLATFORM_ID "SCO_SV" - -#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) -# define PLATFORM_ID "ULTRIX" - -#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) -# define PLATFORM_ID "Xenix" - -#elif defined(__WATCOMC__) -# if defined(__LINUX__) -# define PLATFORM_ID "Linux" - -# elif defined(__DOS__) -# define PLATFORM_ID "DOS" - -# elif defined(__OS2__) -# define PLATFORM_ID "OS2" - -# elif defined(__WINDOWS__) -# define PLATFORM_ID "Windows3x" - -# else /* unknown platform */ -# define PLATFORM_ID -# endif - -#elif defined(__INTEGRITY) -# if defined(INT_178B) -# define PLATFORM_ID "Integrity178" - -# else /* regular Integrity */ -# define PLATFORM_ID "Integrity" -# endif - -#else /* unknown platform */ -# define PLATFORM_ID - -#endif - -/* For windows compilers MSVC and Intel we can determine - the architecture of the compiler being used. This is because - the compilers do not have flags that can change the architecture, - but rather depend on which compiler is being used -*/ -#if defined(_WIN32) && defined(_MSC_VER) -# if defined(_M_IA64) -# define ARCHITECTURE_ID "IA64" - -# elif defined(_M_X64) || defined(_M_AMD64) -# define ARCHITECTURE_ID "x64" - -# elif defined(_M_IX86) -# define ARCHITECTURE_ID "X86" - -# elif defined(_M_ARM64) -# define ARCHITECTURE_ID "ARM64" - -# elif defined(_M_ARM) -# if _M_ARM == 4 -# define ARCHITECTURE_ID "ARMV4I" -# elif _M_ARM == 5 -# define ARCHITECTURE_ID "ARMV5I" -# else -# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) -# endif - -# elif defined(_M_MIPS) -# define ARCHITECTURE_ID "MIPS" - -# elif defined(_M_SH) -# define ARCHITECTURE_ID "SHx" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__WATCOMC__) -# if defined(_M_I86) -# define ARCHITECTURE_ID "I86" - -# elif defined(_M_IX86) -# define ARCHITECTURE_ID "X86" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) -# if defined(__ICCARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__ICCRX__) -# define ARCHITECTURE_ID "RX" - -# elif defined(__ICCRH850__) -# define ARCHITECTURE_ID "RH850" - -# elif defined(__ICCRL78__) -# define ARCHITECTURE_ID "RL78" - -# elif defined(__ICCRISCV__) -# define ARCHITECTURE_ID "RISCV" - -# elif defined(__ICCAVR__) -# define ARCHITECTURE_ID "AVR" - -# elif defined(__ICC430__) -# define ARCHITECTURE_ID "MSP430" - -# elif defined(__ICCV850__) -# define ARCHITECTURE_ID "V850" - -# elif defined(__ICC8051__) -# define ARCHITECTURE_ID "8051" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__ghs__) -# if defined(__PPC64__) -# define ARCHITECTURE_ID "PPC64" - -# elif defined(__ppc__) -# define ARCHITECTURE_ID "PPC" - -# elif defined(__ARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__x86_64__) -# define ARCHITECTURE_ID "x64" - -# elif defined(__i386__) -# define ARCHITECTURE_ID "X86" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif -#else -# define ARCHITECTURE_ID -#endif - -/* Convert integer to decimal digit literals. */ -#define DEC(n) \ - ('0' + (((n) / 10000000)%10)), \ - ('0' + (((n) / 1000000)%10)), \ - ('0' + (((n) / 100000)%10)), \ - ('0' + (((n) / 10000)%10)), \ - ('0' + (((n) / 1000)%10)), \ - ('0' + (((n) / 100)%10)), \ - ('0' + (((n) / 10)%10)), \ - ('0' + ((n) % 10)) - -/* Convert integer to hex digit literals. */ -#define HEX(n) \ - ('0' + ((n)>>28 & 0xF)), \ - ('0' + ((n)>>24 & 0xF)), \ - ('0' + ((n)>>20 & 0xF)), \ - ('0' + ((n)>>16 & 0xF)), \ - ('0' + ((n)>>12 & 0xF)), \ - ('0' + ((n)>>8 & 0xF)), \ - ('0' + ((n)>>4 & 0xF)), \ - ('0' + ((n) & 0xF)) - -/* Construct a string literal encoding the version number components. */ -#ifdef COMPILER_VERSION_MAJOR -char const info_version[] = { - 'I', 'N', 'F', 'O', ':', - 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', - COMPILER_VERSION_MAJOR, -# ifdef COMPILER_VERSION_MINOR - '.', COMPILER_VERSION_MINOR, -# ifdef COMPILER_VERSION_PATCH - '.', COMPILER_VERSION_PATCH, -# ifdef COMPILER_VERSION_TWEAK - '.', COMPILER_VERSION_TWEAK, -# endif -# endif -# endif - ']','\0'}; -#endif - -/* Construct a string literal encoding the internal version number. */ -#ifdef COMPILER_VERSION_INTERNAL -char const info_version_internal[] = { - 'I', 'N', 'F', 'O', ':', - 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', - 'i','n','t','e','r','n','a','l','[', - COMPILER_VERSION_INTERNAL,']','\0'}; -#endif - -/* Construct a string literal encoding the version number components. */ -#ifdef SIMULATE_VERSION_MAJOR -char const info_simulate_version[] = { - 'I', 'N', 'F', 'O', ':', - 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', - SIMULATE_VERSION_MAJOR, -# ifdef SIMULATE_VERSION_MINOR - '.', SIMULATE_VERSION_MINOR, -# ifdef SIMULATE_VERSION_PATCH - '.', SIMULATE_VERSION_PATCH, -# ifdef SIMULATE_VERSION_TWEAK - '.', SIMULATE_VERSION_TWEAK, -# endif -# endif -# endif - ']','\0'}; -#endif - -/* Construct the string literal in pieces to prevent the source from - getting matched. Store it in a pointer rather than an array - because some compilers will just produce instructions to fill the - array rather than assigning a pointer to a static array. */ -char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; -char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; - - - - -#if !defined(__STDC__) -# if (defined(_MSC_VER) && !defined(__clang__)) \ - || (defined(__ibmxl__) || defined(__IBMC__)) -# define C_DIALECT "90" -# else -# define C_DIALECT -# endif -#elif __STDC_VERSION__ >= 201000L -# define C_DIALECT "11" -#elif __STDC_VERSION__ >= 199901L -# define C_DIALECT "99" -#else -# define C_DIALECT "90" -#endif -const char* info_language_dialect_default = - "INFO" ":" "dialect_default[" C_DIALECT "]"; - -/*--------------------------------------------------------------------------*/ - -#ifdef ID_VOID_MAIN -void main() {} -#else -# if defined(__CLASSIC_C__) -int main(argc, argv) int argc; char *argv[]; -# else -int main(int argc, char* argv[]) -# endif -{ - int require = 0; - require += info_compiler[argc]; - require += info_platform[argc]; - require += info_arch[argc]; -#ifdef COMPILER_VERSION_MAJOR - require += info_version[argc]; -#endif -#ifdef COMPILER_VERSION_INTERNAL - require += info_version_internal[argc]; -#endif -#ifdef SIMULATE_ID - require += info_simulate[argc]; -#endif -#ifdef SIMULATE_VERSION_MAJOR - require += info_simulate_version[argc]; -#endif -#if defined(__CRAYXE) || defined(__CRAYXC) - require += info_cray[argc]; -#endif - require += info_language_dialect_default[argc]; - (void)argv; - return require; -} -#endif diff --git a/cmake-build-debug/CMakeFiles/3.17.3/CompilerIdC/a.out b/cmake-build-debug/CMakeFiles/3.17.3/CompilerIdC/a.out deleted file mode 100755 index c520a05..0000000 Binary files a/cmake-build-debug/CMakeFiles/3.17.3/CompilerIdC/a.out and /dev/null differ diff --git a/cmake-build-debug/CMakeFiles/3.17.3/CompilerIdCXX/CMakeCXXCompilerId.cpp b/cmake-build-debug/CMakeFiles/3.17.3/CompilerIdCXX/CMakeCXXCompilerId.cpp deleted file mode 100644 index 69cfdba..0000000 --- a/cmake-build-debug/CMakeFiles/3.17.3/CompilerIdCXX/CMakeCXXCompilerId.cpp +++ /dev/null @@ -1,660 +0,0 @@ -/* This source file must have a .cpp extension so that all C++ compilers - recognize the extension without flags. Borland does not know .cxx for - example. */ -#ifndef __cplusplus -# error "A C compiler has been selected for C++." -#endif - - -/* Version number components: V=Version, R=Revision, P=Patch - Version date components: YYYY=Year, MM=Month, DD=Day */ - -#if defined(__COMO__) -# define COMPILER_ID "Comeau" - /* __COMO_VERSION__ = VRR */ -# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100) -# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100) - -#elif defined(__INTEL_COMPILER) || defined(__ICC) -# define COMPILER_ID "Intel" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# if defined(__GNUC__) -# define SIMULATE_ID "GNU" -# endif - /* __INTEL_COMPILER = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) -# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) -# if defined(__INTEL_COMPILER_UPDATE) -# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) -# else -# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) -# endif -# if defined(__INTEL_COMPILER_BUILD_DATE) - /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ -# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) -# endif -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif -# if defined(__GNUC__) -# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) -# elif defined(__GNUG__) -# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) -# endif -# if defined(__GNUC_MINOR__) -# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) -# endif -# if defined(__GNUC_PATCHLEVEL__) -# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -# endif - -#elif defined(__PATHCC__) -# define COMPILER_ID "PathScale" -# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) -# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) -# if defined(__PATHCC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) -# endif - -#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) -# define COMPILER_ID "Embarcadero" -# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) -# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) -# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) - -#elif defined(__BORLANDC__) -# define COMPILER_ID "Borland" - /* __BORLANDC__ = 0xVRR */ -# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) -# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) - -#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 -# define COMPILER_ID "Watcom" - /* __WATCOMC__ = VVRR */ -# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) -# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) -# if (__WATCOMC__ % 10) > 0 -# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) -# endif - -#elif defined(__WATCOMC__) -# define COMPILER_ID "OpenWatcom" - /* __WATCOMC__ = VVRP + 1100 */ -# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) -# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) -# if (__WATCOMC__ % 10) > 0 -# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) -# endif - -#elif defined(__SUNPRO_CC) -# define COMPILER_ID "SunPro" -# if __SUNPRO_CC >= 0x5100 - /* __SUNPRO_CC = 0xVRRP */ -# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) -# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) -# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) -# else - /* __SUNPRO_CC = 0xVRP */ -# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) -# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) -# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) -# endif - -#elif defined(__HP_aCC) -# define COMPILER_ID "HP" - /* __HP_aCC = VVRRPP */ -# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) -# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) -# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) - -#elif defined(__DECCXX) -# define COMPILER_ID "Compaq" - /* __DECCXX_VER = VVRRTPPPP */ -# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) -# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) -# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) - -#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) -# define COMPILER_ID "zOS" - /* __IBMCPP__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) - -#elif defined(__ibmxl__) && defined(__clang__) -# define COMPILER_ID "XLClang" -# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) -# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) -# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) -# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) - - -#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 -# define COMPILER_ID "XL" - /* __IBMCPP__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) - -#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 -# define COMPILER_ID "VisualAge" - /* __IBMCPP__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) - -#elif defined(__PGI) -# define COMPILER_ID "PGI" -# define COMPILER_VERSION_MAJOR DEC(__PGIC__) -# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) -# if defined(__PGIC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) -# endif - -#elif defined(_CRAYC) -# define COMPILER_ID "Cray" -# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) -# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) - -#elif defined(__TI_COMPILER_VERSION__) -# define COMPILER_ID "TI" - /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ -# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) -# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) -# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) - -#elif defined(__FUJITSU) || defined(__FCC_VERSION) || defined(__fcc_version) -# define COMPILER_ID "Fujitsu" - -#elif defined(__ghs__) -# define COMPILER_ID "GHS" -/* __GHS_VERSION_NUMBER = VVVVRP */ -# ifdef __GHS_VERSION_NUMBER -# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) -# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) -# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) -# endif - -#elif defined(__SCO_VERSION__) -# define COMPILER_ID "SCO" - -#elif defined(__ARMCC_VERSION) && !defined(__clang__) -# define COMPILER_ID "ARMCC" -#if __ARMCC_VERSION >= 1000000 - /* __ARMCC_VERSION = VRRPPPP */ - # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) - # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) - # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) -#else - /* __ARMCC_VERSION = VRPPPP */ - # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) - # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) - # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) -#endif - - -#elif defined(__clang__) && defined(__apple_build_version__) -# define COMPILER_ID "AppleClang" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# define COMPILER_VERSION_MAJOR DEC(__clang_major__) -# define COMPILER_VERSION_MINOR DEC(__clang_minor__) -# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif -# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) - -#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) -# define COMPILER_ID "ARMClang" - # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) - # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) - # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) -# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) - -#elif defined(__clang__) -# define COMPILER_ID "Clang" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# define COMPILER_VERSION_MAJOR DEC(__clang_major__) -# define COMPILER_VERSION_MINOR DEC(__clang_minor__) -# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif - -#elif defined(__GNUC__) || defined(__GNUG__) -# define COMPILER_ID "GNU" -# if defined(__GNUC__) -# define COMPILER_VERSION_MAJOR DEC(__GNUC__) -# else -# define COMPILER_VERSION_MAJOR DEC(__GNUG__) -# endif -# if defined(__GNUC_MINOR__) -# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) -# endif -# if defined(__GNUC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -# endif - -#elif defined(_MSC_VER) -# define COMPILER_ID "MSVC" - /* _MSC_VER = VVRR */ -# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) -# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) -# if defined(_MSC_FULL_VER) -# if _MSC_VER >= 1400 - /* _MSC_FULL_VER = VVRRPPPPP */ -# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) -# else - /* _MSC_FULL_VER = VVRRPPPP */ -# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) -# endif -# endif -# if defined(_MSC_BUILD) -# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) -# endif - -#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) -# define COMPILER_ID "ADSP" -#if defined(__VISUALDSPVERSION__) - /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ -# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) -# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) -# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) -#endif - -#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) -# define COMPILER_ID "IAR" -# if defined(__VER__) && defined(__ICCARM__) -# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) -# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) -# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) -# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) -# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__)) -# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) -# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) -# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) -# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) -# endif - - -/* These compilers are either not known or too old to define an - identification macro. Try to identify the platform and guess that - it is the native compiler. */ -#elif defined(__hpux) || defined(__hpua) -# define COMPILER_ID "HP" - -#else /* unknown compiler */ -# define COMPILER_ID "" -#endif - -/* Construct the string literal in pieces to prevent the source from - getting matched. Store it in a pointer rather than an array - because some compilers will just produce instructions to fill the - array rather than assigning a pointer to a static array. */ -char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; -#ifdef SIMULATE_ID -char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; -#endif - -#ifdef __QNXNTO__ -char const* qnxnto = "INFO" ":" "qnxnto[]"; -#endif - -#if defined(__CRAYXE) || defined(__CRAYXC) -char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; -#endif - -#define STRINGIFY_HELPER(X) #X -#define STRINGIFY(X) STRINGIFY_HELPER(X) - -/* Identify known platforms by name. */ -#if defined(__linux) || defined(__linux__) || defined(linux) -# define PLATFORM_ID "Linux" - -#elif defined(__CYGWIN__) -# define PLATFORM_ID "Cygwin" - -#elif defined(__MINGW32__) -# define PLATFORM_ID "MinGW" - -#elif defined(__APPLE__) -# define PLATFORM_ID "Darwin" - -#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) -# define PLATFORM_ID "Windows" - -#elif defined(__FreeBSD__) || defined(__FreeBSD) -# define PLATFORM_ID "FreeBSD" - -#elif defined(__NetBSD__) || defined(__NetBSD) -# define PLATFORM_ID "NetBSD" - -#elif defined(__OpenBSD__) || defined(__OPENBSD) -# define PLATFORM_ID "OpenBSD" - -#elif defined(__sun) || defined(sun) -# define PLATFORM_ID "SunOS" - -#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) -# define PLATFORM_ID "AIX" - -#elif defined(__hpux) || defined(__hpux__) -# define PLATFORM_ID "HP-UX" - -#elif defined(__HAIKU__) -# define PLATFORM_ID "Haiku" - -#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) -# define PLATFORM_ID "BeOS" - -#elif defined(__QNX__) || defined(__QNXNTO__) -# define PLATFORM_ID "QNX" - -#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) -# define PLATFORM_ID "Tru64" - -#elif defined(__riscos) || defined(__riscos__) -# define PLATFORM_ID "RISCos" - -#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) -# define PLATFORM_ID "SINIX" - -#elif defined(__UNIX_SV__) -# define PLATFORM_ID "UNIX_SV" - -#elif defined(__bsdos__) -# define PLATFORM_ID "BSDOS" - -#elif defined(_MPRAS) || defined(MPRAS) -# define PLATFORM_ID "MP-RAS" - -#elif defined(__osf) || defined(__osf__) -# define PLATFORM_ID "OSF1" - -#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) -# define PLATFORM_ID "SCO_SV" - -#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) -# define PLATFORM_ID "ULTRIX" - -#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) -# define PLATFORM_ID "Xenix" - -#elif defined(__WATCOMC__) -# if defined(__LINUX__) -# define PLATFORM_ID "Linux" - -# elif defined(__DOS__) -# define PLATFORM_ID "DOS" - -# elif defined(__OS2__) -# define PLATFORM_ID "OS2" - -# elif defined(__WINDOWS__) -# define PLATFORM_ID "Windows3x" - -# else /* unknown platform */ -# define PLATFORM_ID -# endif - -#elif defined(__INTEGRITY) -# if defined(INT_178B) -# define PLATFORM_ID "Integrity178" - -# else /* regular Integrity */ -# define PLATFORM_ID "Integrity" -# endif - -#else /* unknown platform */ -# define PLATFORM_ID - -#endif - -/* For windows compilers MSVC and Intel we can determine - the architecture of the compiler being used. This is because - the compilers do not have flags that can change the architecture, - but rather depend on which compiler is being used -*/ -#if defined(_WIN32) && defined(_MSC_VER) -# if defined(_M_IA64) -# define ARCHITECTURE_ID "IA64" - -# elif defined(_M_X64) || defined(_M_AMD64) -# define ARCHITECTURE_ID "x64" - -# elif defined(_M_IX86) -# define ARCHITECTURE_ID "X86" - -# elif defined(_M_ARM64) -# define ARCHITECTURE_ID "ARM64" - -# elif defined(_M_ARM) -# if _M_ARM == 4 -# define ARCHITECTURE_ID "ARMV4I" -# elif _M_ARM == 5 -# define ARCHITECTURE_ID "ARMV5I" -# else -# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) -# endif - -# elif defined(_M_MIPS) -# define ARCHITECTURE_ID "MIPS" - -# elif defined(_M_SH) -# define ARCHITECTURE_ID "SHx" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__WATCOMC__) -# if defined(_M_I86) -# define ARCHITECTURE_ID "I86" - -# elif defined(_M_IX86) -# define ARCHITECTURE_ID "X86" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) -# if defined(__ICCARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__ICCRX__) -# define ARCHITECTURE_ID "RX" - -# elif defined(__ICCRH850__) -# define ARCHITECTURE_ID "RH850" - -# elif defined(__ICCRL78__) -# define ARCHITECTURE_ID "RL78" - -# elif defined(__ICCRISCV__) -# define ARCHITECTURE_ID "RISCV" - -# elif defined(__ICCAVR__) -# define ARCHITECTURE_ID "AVR" - -# elif defined(__ICC430__) -# define ARCHITECTURE_ID "MSP430" - -# elif defined(__ICCV850__) -# define ARCHITECTURE_ID "V850" - -# elif defined(__ICC8051__) -# define ARCHITECTURE_ID "8051" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__ghs__) -# if defined(__PPC64__) -# define ARCHITECTURE_ID "PPC64" - -# elif defined(__ppc__) -# define ARCHITECTURE_ID "PPC" - -# elif defined(__ARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__x86_64__) -# define ARCHITECTURE_ID "x64" - -# elif defined(__i386__) -# define ARCHITECTURE_ID "X86" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif -#else -# define ARCHITECTURE_ID -#endif - -/* Convert integer to decimal digit literals. */ -#define DEC(n) \ - ('0' + (((n) / 10000000)%10)), \ - ('0' + (((n) / 1000000)%10)), \ - ('0' + (((n) / 100000)%10)), \ - ('0' + (((n) / 10000)%10)), \ - ('0' + (((n) / 1000)%10)), \ - ('0' + (((n) / 100)%10)), \ - ('0' + (((n) / 10)%10)), \ - ('0' + ((n) % 10)) - -/* Convert integer to hex digit literals. */ -#define HEX(n) \ - ('0' + ((n)>>28 & 0xF)), \ - ('0' + ((n)>>24 & 0xF)), \ - ('0' + ((n)>>20 & 0xF)), \ - ('0' + ((n)>>16 & 0xF)), \ - ('0' + ((n)>>12 & 0xF)), \ - ('0' + ((n)>>8 & 0xF)), \ - ('0' + ((n)>>4 & 0xF)), \ - ('0' + ((n) & 0xF)) - -/* Construct a string literal encoding the version number components. */ -#ifdef COMPILER_VERSION_MAJOR -char const info_version[] = { - 'I', 'N', 'F', 'O', ':', - 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', - COMPILER_VERSION_MAJOR, -# ifdef COMPILER_VERSION_MINOR - '.', COMPILER_VERSION_MINOR, -# ifdef COMPILER_VERSION_PATCH - '.', COMPILER_VERSION_PATCH, -# ifdef COMPILER_VERSION_TWEAK - '.', COMPILER_VERSION_TWEAK, -# endif -# endif -# endif - ']','\0'}; -#endif - -/* Construct a string literal encoding the internal version number. */ -#ifdef COMPILER_VERSION_INTERNAL -char const info_version_internal[] = { - 'I', 'N', 'F', 'O', ':', - 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', - 'i','n','t','e','r','n','a','l','[', - COMPILER_VERSION_INTERNAL,']','\0'}; -#endif - -/* Construct a string literal encoding the version number components. */ -#ifdef SIMULATE_VERSION_MAJOR -char const info_simulate_version[] = { - 'I', 'N', 'F', 'O', ':', - 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', - SIMULATE_VERSION_MAJOR, -# ifdef SIMULATE_VERSION_MINOR - '.', SIMULATE_VERSION_MINOR, -# ifdef SIMULATE_VERSION_PATCH - '.', SIMULATE_VERSION_PATCH, -# ifdef SIMULATE_VERSION_TWEAK - '.', SIMULATE_VERSION_TWEAK, -# endif -# endif -# endif - ']','\0'}; -#endif - -/* Construct the string literal in pieces to prevent the source from - getting matched. Store it in a pointer rather than an array - because some compilers will just produce instructions to fill the - array rather than assigning a pointer to a static array. */ -char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; -char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; - - - - -#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L -# if defined(__INTEL_CXX11_MODE__) -# if defined(__cpp_aggregate_nsdmi) -# define CXX_STD 201402L -# else -# define CXX_STD 201103L -# endif -# else -# define CXX_STD 199711L -# endif -#elif defined(_MSC_VER) && defined(_MSVC_LANG) -# define CXX_STD _MSVC_LANG -#else -# define CXX_STD __cplusplus -#endif - -const char* info_language_dialect_default = "INFO" ":" "dialect_default[" -#if CXX_STD > 201703L - "20" -#elif CXX_STD >= 201703L - "17" -#elif CXX_STD >= 201402L - "14" -#elif CXX_STD >= 201103L - "11" -#else - "98" -#endif -"]"; - -/*--------------------------------------------------------------------------*/ - -int main(int argc, char* argv[]) -{ - int require = 0; - require += info_compiler[argc]; - require += info_platform[argc]; -#ifdef COMPILER_VERSION_MAJOR - require += info_version[argc]; -#endif -#ifdef COMPILER_VERSION_INTERNAL - require += info_version_internal[argc]; -#endif -#ifdef SIMULATE_ID - require += info_simulate[argc]; -#endif -#ifdef SIMULATE_VERSION_MAJOR - require += info_simulate_version[argc]; -#endif -#if defined(__CRAYXE) || defined(__CRAYXC) - require += info_cray[argc]; -#endif - require += info_language_dialect_default[argc]; - (void)argv; - return require; -} diff --git a/cmake-build-debug/CMakeFiles/3.17.3/CompilerIdCXX/a.out b/cmake-build-debug/CMakeFiles/3.17.3/CompilerIdCXX/a.out deleted file mode 100755 index 001c1eb..0000000 Binary files a/cmake-build-debug/CMakeFiles/3.17.3/CompilerIdCXX/a.out and /dev/null differ diff --git a/cmake-build-debug/CMakeFiles/CMakeDirectoryInformation.cmake b/cmake-build-debug/CMakeFiles/CMakeDirectoryInformation.cmake deleted file mode 100644 index 35f8ff5..0000000 --- a/cmake-build-debug/CMakeFiles/CMakeDirectoryInformation.cmake +++ /dev/null @@ -1,16 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.17 - -# Relative path conversion top directories. -set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/yangwei/tcpdump_mesa") -set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/yangwei/tcpdump_mesa/cmake-build-debug") - -# Force unix paths in dependencies. -set(CMAKE_FORCE_UNIX_PATHS 1) - - -# The C and CXX include file regular expressions for this directory. -set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") -set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") -set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) -set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/cmake-build-debug/CMakeFiles/CMakeOutput.log b/cmake-build-debug/CMakeFiles/CMakeOutput.log deleted file mode 100644 index cbc99d8..0000000 --- a/cmake-build-debug/CMakeFiles/CMakeOutput.log +++ /dev/null @@ -1,498 +0,0 @@ -The system is: Linux - 3.10.0-693.el7.x86_64 - x86_64 -Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. -Compiler: /usr/bin/gcc -Build flags: -Id flags: - -The output was: -0 - - -Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out" - -The C compiler identification is GNU, found in "/home/yangwei/tcpdump_mesa/cmake-build-debug/CMakeFiles/3.17.3/CompilerIdC/a.out" - -Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. -Compiler: /usr/bin/g++ -Build flags: -Id flags: - -The output was: -0 - - -Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out" - -The CXX compiler identification is GNU, found in "/home/yangwei/tcpdump_mesa/cmake-build-debug/CMakeFiles/3.17.3/CompilerIdCXX/a.out" - -Determining if the C compiler works passed with the following output: -Change Dir: /home/yangwei/tcpdump_mesa/cmake-build-debug/CMakeFiles/CMakeTmp - -Run Build Command(s):/usr/bin/gmake cmTC_b2495/fast && /usr/bin/gmake -f CMakeFiles/cmTC_b2495.dir/build.make CMakeFiles/cmTC_b2495.dir/build -gmake[1]: Entering directory `/home/yangwei/tcpdump_mesa/cmake-build-debug/CMakeFiles/CMakeTmp' -Building C object CMakeFiles/cmTC_b2495.dir/testCCompiler.c.o -/usr/bin/gcc -o CMakeFiles/cmTC_b2495.dir/testCCompiler.c.o -c /home/yangwei/tcpdump_mesa/cmake-build-debug/CMakeFiles/CMakeTmp/testCCompiler.c -Linking C executable cmTC_b2495 -/usr/bin/cmake3 -E cmake_link_script CMakeFiles/cmTC_b2495.dir/link.txt --verbose=1 -/usr/bin/gcc -rdynamic CMakeFiles/cmTC_b2495.dir/testCCompiler.c.o -o cmTC_b2495 -gmake[1]: Leaving directory `/home/yangwei/tcpdump_mesa/cmake-build-debug/CMakeFiles/CMakeTmp' - - - -Detecting C compiler ABI info compiled with the following output: -Change Dir: /home/yangwei/tcpdump_mesa/cmake-build-debug/CMakeFiles/CMakeTmp - -Run Build Command(s):/usr/bin/gmake cmTC_bb525/fast && /usr/bin/gmake -f CMakeFiles/cmTC_bb525.dir/build.make CMakeFiles/cmTC_bb525.dir/build -gmake[1]: Entering directory `/home/yangwei/tcpdump_mesa/cmake-build-debug/CMakeFiles/CMakeTmp' -Building C object CMakeFiles/cmTC_bb525.dir/CMakeCCompilerABI.c.o -/usr/bin/gcc -v -o CMakeFiles/cmTC_bb525.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake3/Modules/CMakeCCompilerABI.c -Using built-in specs. -COLLECT_GCC=/usr/bin/gcc -Target: x86_64-redhat-linux -Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-linker-hash-style=gnu --enable-languages=c,c++,objc,obj-c++,java,fortran,ada,go,lto --enable-plugin --enable-initfini-array --disable-libgcj --with-isl=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/isl-install --with-cloog=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/cloog-install --enable-gnu-indirect-function --with-tune=generic --with-arch_32=x86-64 --build=x86_64-redhat-linux -Thread model: posix -gcc version 4.8.5 20150623 (Red Hat 4.8.5-39) (GCC) -COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_bb525.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' - /usr/libexec/gcc/x86_64-redhat-linux/4.8.5/cc1 -quiet -v /usr/share/cmake3/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_bb525.dir/CMakeCCompilerABI.c.o -version -o /tmp/ccs0OxBl.s -GNU C (GCC) version 4.8.5 20150623 (Red Hat 4.8.5-39) (x86_64-redhat-linux) - compiled by GNU C version 4.8.5 20150623 (Red Hat 4.8.5-39), GMP version 6.0.0, MPFR version 3.1.1, MPC version 1.0.1 -GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 -ignoring nonexistent directory "/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include-fixed" -ignoring nonexistent directory "/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../x86_64-redhat-linux/include" -#include "..." search starts here: -#include <...> search starts here: - /opt/mrzcpd/include - /opt/MESA/include - /opt/MESA/include/MESA/ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include - /usr/local/include - /usr/include -End of search list. -GNU C (GCC) version 4.8.5 20150623 (Red Hat 4.8.5-39) (x86_64-redhat-linux) - compiled by GNU C version 4.8.5 20150623 (Red Hat 4.8.5-39), GMP version 6.0.0, MPFR version 3.1.1, MPC version 1.0.1 -GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 -Compiler executable checksum: edd9a53947039836c859e437e8c9af72 -COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_bb525.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' - as -v --64 -o CMakeFiles/cmTC_bb525.dir/CMakeCCompilerABI.c.o /tmp/ccs0OxBl.s -GNU assembler version 2.25.1 (x86_64-redhat-linux) using BFD version version 2.25.1-31.base.el7 -COMPILER_PATH=/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/:/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/:/usr/libexec/gcc/x86_64-redhat-linux/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/:/usr/lib/gcc/x86_64-redhat-linux/ -LIBRARY_PATH=/usr/local/lib/../lib64/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/:/lib/../lib64/:/usr/lib/../lib64/:/opt/mrzcpd/lib/:/opt/MESA/lib/:/usr/local/lib/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../:/lib/:/usr/lib/ -COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_bb525.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' -Linking C executable cmTC_bb525 -/usr/bin/cmake3 -E cmake_link_script CMakeFiles/cmTC_bb525.dir/link.txt --verbose=1 -/usr/bin/gcc -v -rdynamic CMakeFiles/cmTC_bb525.dir/CMakeCCompilerABI.c.o -o cmTC_bb525 -Using built-in specs. -COLLECT_GCC=/usr/bin/gcc -COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/lto-wrapper -Target: x86_64-redhat-linux -Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-linker-hash-style=gnu --enable-languages=c,c++,objc,obj-c++,java,fortran,ada,go,lto --enable-plugin --enable-initfini-array --disable-libgcj --with-isl=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/isl-install --with-cloog=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/cloog-install --enable-gnu-indirect-function --with-tune=generic --with-arch_32=x86-64 --build=x86_64-redhat-linux -Thread model: posix -gcc version 4.8.5 20150623 (Red Hat 4.8.5-39) (GCC) -COMPILER_PATH=/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/:/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/:/usr/libexec/gcc/x86_64-redhat-linux/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/:/usr/lib/gcc/x86_64-redhat-linux/ -LIBRARY_PATH=/usr/local/lib/../lib64/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/:/lib/../lib64/:/usr/lib/../lib64/:/opt/mrzcpd/lib/:/opt/MESA/lib/:/usr/local/lib/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../:/lib/:/usr/lib/ -COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_bb525' '-mtune=generic' '-march=x86-64' - /usr/libexec/gcc/x86_64-redhat-linux/4.8.5/collect2 --build-id --no-add-needed --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -o cmTC_bb525 /usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/crt1.o /usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/crti.o /usr/lib/gcc/x86_64-redhat-linux/4.8.5/crtbegin.o -L/usr/local/lib/../lib64 -L/usr/lib/gcc/x86_64-redhat-linux/4.8.5 -L/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64 -L/lib/../lib64 -L/usr/lib/../lib64 -L/opt/mrzcpd/lib -L/opt/MESA/lib -L/usr/local/lib -L/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../.. CMakeFiles/cmTC_bb525.dir/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/gcc/x86_64-redhat-linux/4.8.5/crtend.o /usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/crtn.o -gmake[1]: Leaving directory `/home/yangwei/tcpdump_mesa/cmake-build-debug/CMakeFiles/CMakeTmp' - - - -Parsed C implicit include dir info from above output: rv=done - found start of include info - found start of implicit include info - add: [/opt/mrzcpd/include] - add: [/opt/MESA/include] - add: [/opt/MESA/include/MESA/] - add: [/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include] - add: [/usr/local/include] - add: [/usr/include] - end of search list found - collapse include dir [/opt/mrzcpd/include] ==> [/opt/mrzcpd/include] - collapse include dir [/opt/MESA/include] ==> [/opt/MESA/include] - collapse include dir [/opt/MESA/include/MESA/] ==> [/opt/MESA/include/MESA] - collapse include dir [/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include] ==> [/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include] - collapse include dir [/usr/local/include] ==> [/usr/local/include] - collapse include dir [/usr/include] ==> [/usr/include] - implicit include dirs: [/opt/mrzcpd/include;/opt/MESA/include;/opt/MESA/include/MESA;/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include;/usr/local/include;/usr/include] - - -Parsed C implicit link information from above output: - link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] - ignore line: [Change Dir: /home/yangwei/tcpdump_mesa/cmake-build-debug/CMakeFiles/CMakeTmp] - ignore line: [] - ignore line: [Run Build Command(s):/usr/bin/gmake cmTC_bb525/fast && /usr/bin/gmake -f CMakeFiles/cmTC_bb525.dir/build.make CMakeFiles/cmTC_bb525.dir/build] - ignore line: [gmake[1]: Entering directory `/home/yangwei/tcpdump_mesa/cmake-build-debug/CMakeFiles/CMakeTmp'] - ignore line: [Building C object CMakeFiles/cmTC_bb525.dir/CMakeCCompilerABI.c.o] - ignore line: [/usr/bin/gcc -v -o CMakeFiles/cmTC_bb525.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake3/Modules/CMakeCCompilerABI.c] - ignore line: [Using built-in specs.] - ignore line: [COLLECT_GCC=/usr/bin/gcc] - ignore line: [Target: x86_64-redhat-linux] - ignore line: [Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-linker-hash-style=gnu --enable-languages=c c++ objc obj-c++ java fortran ada go lto --enable-plugin --enable-initfini-array --disable-libgcj --with-isl=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/isl-install --with-cloog=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/cloog-install --enable-gnu-indirect-function --with-tune=generic --with-arch_32=x86-64 --build=x86_64-redhat-linux] - ignore line: [Thread model: posix] - ignore line: [gcc version 4.8.5 20150623 (Red Hat 4.8.5-39) (GCC) ] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_bb525.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64'] - ignore line: [ /usr/libexec/gcc/x86_64-redhat-linux/4.8.5/cc1 -quiet -v /usr/share/cmake3/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_bb525.dir/CMakeCCompilerABI.c.o -version -o /tmp/ccs0OxBl.s] - ignore line: [GNU C (GCC) version 4.8.5 20150623 (Red Hat 4.8.5-39) (x86_64-redhat-linux)] - ignore line: [ compiled by GNU C version 4.8.5 20150623 (Red Hat 4.8.5-39) GMP version 6.0.0 MPFR version 3.1.1 MPC version 1.0.1] - ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] - ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include-fixed"] - ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../x86_64-redhat-linux/include"] - ignore line: [#include "..." search starts here:] - ignore line: [#include <...> search starts here:] - ignore line: [ /opt/mrzcpd/include] - ignore line: [ /opt/MESA/include] - ignore line: [ /opt/MESA/include/MESA/] - ignore line: [ /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include] - ignore line: [ /usr/local/include] - ignore line: [ /usr/include] - ignore line: [End of search list.] - ignore line: [GNU C (GCC) version 4.8.5 20150623 (Red Hat 4.8.5-39) (x86_64-redhat-linux)] - ignore line: [ compiled by GNU C version 4.8.5 20150623 (Red Hat 4.8.5-39) GMP version 6.0.0 MPFR version 3.1.1 MPC version 1.0.1] - ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] - ignore line: [Compiler executable checksum: edd9a53947039836c859e437e8c9af72] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_bb525.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64'] - ignore line: [ as -v --64 -o CMakeFiles/cmTC_bb525.dir/CMakeCCompilerABI.c.o /tmp/ccs0OxBl.s] - ignore line: [GNU assembler version 2.25.1 (x86_64-redhat-linux) using BFD version version 2.25.1-31.base.el7 ] - ignore line: [COMPILER_PATH=/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/:/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/:/usr/libexec/gcc/x86_64-redhat-linux/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/:/usr/lib/gcc/x86_64-redhat-linux/] - ignore line: [LIBRARY_PATH=/usr/local/lib/../lib64/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/:/lib/../lib64/:/usr/lib/../lib64/:/opt/mrzcpd/lib/:/opt/MESA/lib/:/usr/local/lib/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../:/lib/:/usr/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_bb525.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64'] - ignore line: [Linking C executable cmTC_bb525] - ignore line: [/usr/bin/cmake3 -E cmake_link_script CMakeFiles/cmTC_bb525.dir/link.txt --verbose=1] - ignore line: [/usr/bin/gcc -v -rdynamic CMakeFiles/cmTC_bb525.dir/CMakeCCompilerABI.c.o -o cmTC_bb525 ] - ignore line: [Using built-in specs.] - ignore line: [COLLECT_GCC=/usr/bin/gcc] - ignore line: [COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/lto-wrapper] - ignore line: [Target: x86_64-redhat-linux] - ignore line: [Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-linker-hash-style=gnu --enable-languages=c c++ objc obj-c++ java fortran ada go lto --enable-plugin --enable-initfini-array --disable-libgcj --with-isl=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/isl-install --with-cloog=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/cloog-install --enable-gnu-indirect-function --with-tune=generic --with-arch_32=x86-64 --build=x86_64-redhat-linux] - ignore line: [Thread model: posix] - ignore line: [gcc version 4.8.5 20150623 (Red Hat 4.8.5-39) (GCC) ] - ignore line: [COMPILER_PATH=/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/:/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/:/usr/libexec/gcc/x86_64-redhat-linux/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/:/usr/lib/gcc/x86_64-redhat-linux/] - ignore line: [LIBRARY_PATH=/usr/local/lib/../lib64/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/:/lib/../lib64/:/usr/lib/../lib64/:/opt/mrzcpd/lib/:/opt/MESA/lib/:/usr/local/lib/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../:/lib/:/usr/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_bb525' '-mtune=generic' '-march=x86-64'] - link line: [ /usr/libexec/gcc/x86_64-redhat-linux/4.8.5/collect2 --build-id --no-add-needed --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -o cmTC_bb525 /usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/crt1.o /usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/crti.o /usr/lib/gcc/x86_64-redhat-linux/4.8.5/crtbegin.o -L/usr/local/lib/../lib64 -L/usr/lib/gcc/x86_64-redhat-linux/4.8.5 -L/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64 -L/lib/../lib64 -L/usr/lib/../lib64 -L/opt/mrzcpd/lib -L/opt/MESA/lib -L/usr/local/lib -L/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../.. CMakeFiles/cmTC_bb525.dir/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/gcc/x86_64-redhat-linux/4.8.5/crtend.o /usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/crtn.o] - arg [/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/collect2] ==> ignore - arg [--build-id] ==> ignore - arg [--no-add-needed] ==> ignore - arg [--eh-frame-hdr] ==> ignore - arg [--hash-style=gnu] ==> ignore - arg [-m] ==> ignore - arg [elf_x86_64] ==> ignore - arg [-export-dynamic] ==> ignore - arg [-dynamic-linker] ==> ignore - arg [/lib64/ld-linux-x86-64.so.2] ==> ignore - arg [-o] ==> ignore - arg [cmTC_bb525] ==> ignore - arg [/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/crt1.o] ==> ignore - arg [/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/crti.o] ==> ignore - arg [/usr/lib/gcc/x86_64-redhat-linux/4.8.5/crtbegin.o] ==> ignore - arg [-L/usr/local/lib/../lib64] ==> dir [/usr/local/lib/../lib64] - arg [-L/usr/lib/gcc/x86_64-redhat-linux/4.8.5] ==> dir [/usr/lib/gcc/x86_64-redhat-linux/4.8.5] - arg [-L/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64] ==> dir [/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64] - arg [-L/lib/../lib64] ==> dir [/lib/../lib64] - arg [-L/usr/lib/../lib64] ==> dir [/usr/lib/../lib64] - arg [-L/opt/mrzcpd/lib] ==> dir [/opt/mrzcpd/lib] - arg [-L/opt/MESA/lib] ==> dir [/opt/MESA/lib] - arg [-L/usr/local/lib] ==> dir [/usr/local/lib] - arg [-L/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../..] ==> dir [/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../..] - arg [CMakeFiles/cmTC_bb525.dir/CMakeCCompilerABI.c.o] ==> ignore - arg [-lgcc] ==> lib [gcc] - arg [--as-needed] ==> ignore - arg [-lgcc_s] ==> lib [gcc_s] - arg [--no-as-needed] ==> ignore - arg [-lc] ==> lib [c] - arg [-lgcc] ==> lib [gcc] - arg [--as-needed] ==> ignore - arg [-lgcc_s] ==> lib [gcc_s] - arg [--no-as-needed] ==> ignore - arg [/usr/lib/gcc/x86_64-redhat-linux/4.8.5/crtend.o] ==> ignore - arg [/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/crtn.o] ==> ignore - collapse library dir [/usr/local/lib/../lib64] ==> [/usr/local/lib64] - collapse library dir [/usr/lib/gcc/x86_64-redhat-linux/4.8.5] ==> [/usr/lib/gcc/x86_64-redhat-linux/4.8.5] - collapse library dir [/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64] ==> [/usr/lib64] - collapse library dir [/lib/../lib64] ==> [/lib64] - collapse library dir [/usr/lib/../lib64] ==> [/usr/lib64] - collapse library dir [/opt/mrzcpd/lib] ==> [/opt/mrzcpd/lib] - collapse library dir [/opt/MESA/lib] ==> [/opt/MESA/lib] - collapse library dir [/usr/local/lib] ==> [/usr/local/lib] - collapse library dir [/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../..] ==> [/usr/lib] - implicit libs: [gcc;gcc_s;c;gcc;gcc_s] - implicit dirs: [/usr/local/lib64;/usr/lib/gcc/x86_64-redhat-linux/4.8.5;/usr/lib64;/lib64;/opt/mrzcpd/lib;/opt/MESA/lib;/usr/local/lib;/usr/lib] - implicit fwks: [] - - -Determining if the CXX compiler works passed with the following output: -Change Dir: /home/yangwei/tcpdump_mesa/cmake-build-debug/CMakeFiles/CMakeTmp - -Run Build Command(s):/usr/bin/gmake cmTC_ace38/fast && /usr/bin/gmake -f CMakeFiles/cmTC_ace38.dir/build.make CMakeFiles/cmTC_ace38.dir/build -gmake[1]: Entering directory `/home/yangwei/tcpdump_mesa/cmake-build-debug/CMakeFiles/CMakeTmp' -Building CXX object CMakeFiles/cmTC_ace38.dir/testCXXCompiler.cxx.o -/usr/bin/g++ -o CMakeFiles/cmTC_ace38.dir/testCXXCompiler.cxx.o -c /home/yangwei/tcpdump_mesa/cmake-build-debug/CMakeFiles/CMakeTmp/testCXXCompiler.cxx -Linking CXX executable cmTC_ace38 -/usr/bin/cmake3 -E cmake_link_script CMakeFiles/cmTC_ace38.dir/link.txt --verbose=1 -/usr/bin/g++ -rdynamic CMakeFiles/cmTC_ace38.dir/testCXXCompiler.cxx.o -o cmTC_ace38 -gmake[1]: Leaving directory `/home/yangwei/tcpdump_mesa/cmake-build-debug/CMakeFiles/CMakeTmp' - - - -Detecting CXX compiler ABI info compiled with the following output: -Change Dir: /home/yangwei/tcpdump_mesa/cmake-build-debug/CMakeFiles/CMakeTmp - -Run Build Command(s):/usr/bin/gmake cmTC_5939e/fast && /usr/bin/gmake -f CMakeFiles/cmTC_5939e.dir/build.make CMakeFiles/cmTC_5939e.dir/build -gmake[1]: Entering directory `/home/yangwei/tcpdump_mesa/cmake-build-debug/CMakeFiles/CMakeTmp' -Building CXX object CMakeFiles/cmTC_5939e.dir/CMakeCXXCompilerABI.cpp.o -/usr/bin/g++ -v -o CMakeFiles/cmTC_5939e.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake3/Modules/CMakeCXXCompilerABI.cpp -Using built-in specs. -COLLECT_GCC=/usr/bin/g++ -Target: x86_64-redhat-linux -Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-linker-hash-style=gnu --enable-languages=c,c++,objc,obj-c++,java,fortran,ada,go,lto --enable-plugin --enable-initfini-array --disable-libgcj --with-isl=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/isl-install --with-cloog=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/cloog-install --enable-gnu-indirect-function --with-tune=generic --with-arch_32=x86-64 --build=x86_64-redhat-linux -Thread model: posix -gcc version 4.8.5 20150623 (Red Hat 4.8.5-39) (GCC) -COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_5939e.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' - /usr/libexec/gcc/x86_64-redhat-linux/4.8.5/cc1plus -quiet -v -D_GNU_SOURCE /usr/share/cmake3/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_5939e.dir/CMakeCXXCompilerABI.cpp.o -version -o /tmp/ccpVPyly.s -GNU C++ (GCC) version 4.8.5 20150623 (Red Hat 4.8.5-39) (x86_64-redhat-linux) - compiled by GNU C version 4.8.5 20150623 (Red Hat 4.8.5-39), GMP version 6.0.0, MPFR version 3.1.1, MPC version 1.0.1 -GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 -ignoring nonexistent directory "/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include-fixed" -ignoring nonexistent directory "/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../x86_64-redhat-linux/include" -#include "..." search starts here: -#include <...> search starts here: - /opt/mrzcpd/include - /opt/MESA/include - /opt/MESA/include/MESA/ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../include/c++/4.8.5 - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../include/c++/4.8.5/x86_64-redhat-linux - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../include/c++/4.8.5/backward - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include - /usr/local/include - /usr/include -End of search list. -GNU C++ (GCC) version 4.8.5 20150623 (Red Hat 4.8.5-39) (x86_64-redhat-linux) - compiled by GNU C version 4.8.5 20150623 (Red Hat 4.8.5-39), GMP version 6.0.0, MPFR version 3.1.1, MPC version 1.0.1 -GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 -Compiler executable checksum: 0b3d22846f8ec00d42314b8d2d71514a -COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_5939e.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' - as -v --64 -o CMakeFiles/cmTC_5939e.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccpVPyly.s -GNU assembler version 2.25.1 (x86_64-redhat-linux) using BFD version version 2.25.1-31.base.el7 -COMPILER_PATH=/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/:/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/:/usr/libexec/gcc/x86_64-redhat-linux/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/:/usr/lib/gcc/x86_64-redhat-linux/ -LIBRARY_PATH=/usr/local/lib/../lib64/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/:/lib/../lib64/:/usr/lib/../lib64/:/opt/mrzcpd/lib/:/opt/MESA/lib/:/usr/local/lib/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../:/lib/:/usr/lib/ -COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_5939e.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' -Linking CXX executable cmTC_5939e -/usr/bin/cmake3 -E cmake_link_script CMakeFiles/cmTC_5939e.dir/link.txt --verbose=1 -/usr/bin/g++ -v -rdynamic CMakeFiles/cmTC_5939e.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_5939e -Using built-in specs. -COLLECT_GCC=/usr/bin/g++ -COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/lto-wrapper -Target: x86_64-redhat-linux -Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-linker-hash-style=gnu --enable-languages=c,c++,objc,obj-c++,java,fortran,ada,go,lto --enable-plugin --enable-initfini-array --disable-libgcj --with-isl=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/isl-install --with-cloog=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/cloog-install --enable-gnu-indirect-function --with-tune=generic --with-arch_32=x86-64 --build=x86_64-redhat-linux -Thread model: posix -gcc version 4.8.5 20150623 (Red Hat 4.8.5-39) (GCC) -COMPILER_PATH=/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/:/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/:/usr/libexec/gcc/x86_64-redhat-linux/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/:/usr/lib/gcc/x86_64-redhat-linux/ -LIBRARY_PATH=/usr/local/lib/../lib64/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/:/lib/../lib64/:/usr/lib/../lib64/:/opt/mrzcpd/lib/:/opt/MESA/lib/:/usr/local/lib/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../:/lib/:/usr/lib/ -COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_5939e' '-shared-libgcc' '-mtune=generic' '-march=x86-64' - /usr/libexec/gcc/x86_64-redhat-linux/4.8.5/collect2 --build-id --no-add-needed --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -o cmTC_5939e /usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/crt1.o /usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/crti.o /usr/lib/gcc/x86_64-redhat-linux/4.8.5/crtbegin.o -L/usr/local/lib/../lib64 -L/usr/lib/gcc/x86_64-redhat-linux/4.8.5 -L/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64 -L/lib/../lib64 -L/usr/lib/../lib64 -L/opt/mrzcpd/lib -L/opt/MESA/lib -L/usr/local/lib -L/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../.. CMakeFiles/cmTC_5939e.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-redhat-linux/4.8.5/crtend.o /usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/crtn.o -gmake[1]: Leaving directory `/home/yangwei/tcpdump_mesa/cmake-build-debug/CMakeFiles/CMakeTmp' - - - -Parsed CXX implicit include dir info from above output: rv=done - found start of include info - found start of implicit include info - add: [/opt/mrzcpd/include] - add: [/opt/MESA/include] - add: [/opt/MESA/include/MESA/] - add: [/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../include/c++/4.8.5] - add: [/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../include/c++/4.8.5/x86_64-redhat-linux] - add: [/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../include/c++/4.8.5/backward] - add: [/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include] - add: [/usr/local/include] - add: [/usr/include] - end of search list found - collapse include dir [/opt/mrzcpd/include] ==> [/opt/mrzcpd/include] - collapse include dir [/opt/MESA/include] ==> [/opt/MESA/include] - collapse include dir [/opt/MESA/include/MESA/] ==> [/opt/MESA/include/MESA] - collapse include dir [/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../include/c++/4.8.5] ==> [/usr/include/c++/4.8.5] - collapse include dir [/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../include/c++/4.8.5/x86_64-redhat-linux] ==> [/usr/include/c++/4.8.5/x86_64-redhat-linux] - collapse include dir [/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../include/c++/4.8.5/backward] ==> [/usr/include/c++/4.8.5/backward] - collapse include dir [/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include] ==> [/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include] - collapse include dir [/usr/local/include] ==> [/usr/local/include] - collapse include dir [/usr/include] ==> [/usr/include] - implicit include dirs: [/opt/mrzcpd/include;/opt/MESA/include;/opt/MESA/include/MESA;/usr/include/c++/4.8.5;/usr/include/c++/4.8.5/x86_64-redhat-linux;/usr/include/c++/4.8.5/backward;/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include;/usr/local/include;/usr/include] - - -Parsed CXX implicit link information from above output: - link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] - ignore line: [Change Dir: /home/yangwei/tcpdump_mesa/cmake-build-debug/CMakeFiles/CMakeTmp] - ignore line: [] - ignore line: [Run Build Command(s):/usr/bin/gmake cmTC_5939e/fast && /usr/bin/gmake -f CMakeFiles/cmTC_5939e.dir/build.make CMakeFiles/cmTC_5939e.dir/build] - ignore line: [gmake[1]: Entering directory `/home/yangwei/tcpdump_mesa/cmake-build-debug/CMakeFiles/CMakeTmp'] - ignore line: [Building CXX object CMakeFiles/cmTC_5939e.dir/CMakeCXXCompilerABI.cpp.o] - ignore line: [/usr/bin/g++ -v -o CMakeFiles/cmTC_5939e.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake3/Modules/CMakeCXXCompilerABI.cpp] - ignore line: [Using built-in specs.] - ignore line: [COLLECT_GCC=/usr/bin/g++] - ignore line: [Target: x86_64-redhat-linux] - ignore line: [Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-linker-hash-style=gnu --enable-languages=c c++ objc obj-c++ java fortran ada go lto --enable-plugin --enable-initfini-array --disable-libgcj --with-isl=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/isl-install --with-cloog=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/cloog-install --enable-gnu-indirect-function --with-tune=generic --with-arch_32=x86-64 --build=x86_64-redhat-linux] - ignore line: [Thread model: posix] - ignore line: [gcc version 4.8.5 20150623 (Red Hat 4.8.5-39) (GCC) ] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_5939e.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64'] - ignore line: [ /usr/libexec/gcc/x86_64-redhat-linux/4.8.5/cc1plus -quiet -v -D_GNU_SOURCE /usr/share/cmake3/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_5939e.dir/CMakeCXXCompilerABI.cpp.o -version -o /tmp/ccpVPyly.s] - ignore line: [GNU C++ (GCC) version 4.8.5 20150623 (Red Hat 4.8.5-39) (x86_64-redhat-linux)] - ignore line: [ compiled by GNU C version 4.8.5 20150623 (Red Hat 4.8.5-39) GMP version 6.0.0 MPFR version 3.1.1 MPC version 1.0.1] - ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] - ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include-fixed"] - ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../x86_64-redhat-linux/include"] - ignore line: [#include "..." search starts here:] - ignore line: [#include <...> search starts here:] - ignore line: [ /opt/mrzcpd/include] - ignore line: [ /opt/MESA/include] - ignore line: [ /opt/MESA/include/MESA/] - ignore line: [ /usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../include/c++/4.8.5] - ignore line: [ /usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../include/c++/4.8.5/x86_64-redhat-linux] - ignore line: [ /usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../include/c++/4.8.5/backward] - ignore line: [ /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include] - ignore line: [ /usr/local/include] - ignore line: [ /usr/include] - ignore line: [End of search list.] - ignore line: [GNU C++ (GCC) version 4.8.5 20150623 (Red Hat 4.8.5-39) (x86_64-redhat-linux)] - ignore line: [ compiled by GNU C version 4.8.5 20150623 (Red Hat 4.8.5-39) GMP version 6.0.0 MPFR version 3.1.1 MPC version 1.0.1] - ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] - ignore line: [Compiler executable checksum: 0b3d22846f8ec00d42314b8d2d71514a] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_5939e.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64'] - ignore line: [ as -v --64 -o CMakeFiles/cmTC_5939e.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccpVPyly.s] - ignore line: [GNU assembler version 2.25.1 (x86_64-redhat-linux) using BFD version version 2.25.1-31.base.el7 ] - ignore line: [COMPILER_PATH=/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/:/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/:/usr/libexec/gcc/x86_64-redhat-linux/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/:/usr/lib/gcc/x86_64-redhat-linux/] - ignore line: [LIBRARY_PATH=/usr/local/lib/../lib64/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/:/lib/../lib64/:/usr/lib/../lib64/:/opt/mrzcpd/lib/:/opt/MESA/lib/:/usr/local/lib/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../:/lib/:/usr/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_5939e.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64'] - ignore line: [Linking CXX executable cmTC_5939e] - ignore line: [/usr/bin/cmake3 -E cmake_link_script CMakeFiles/cmTC_5939e.dir/link.txt --verbose=1] - ignore line: [/usr/bin/g++ -v -rdynamic CMakeFiles/cmTC_5939e.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_5939e ] - ignore line: [Using built-in specs.] - ignore line: [COLLECT_GCC=/usr/bin/g++] - ignore line: [COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/lto-wrapper] - ignore line: [Target: x86_64-redhat-linux] - ignore line: [Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-linker-hash-style=gnu --enable-languages=c c++ objc obj-c++ java fortran ada go lto --enable-plugin --enable-initfini-array --disable-libgcj --with-isl=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/isl-install --with-cloog=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/cloog-install --enable-gnu-indirect-function --with-tune=generic --with-arch_32=x86-64 --build=x86_64-redhat-linux] - ignore line: [Thread model: posix] - ignore line: [gcc version 4.8.5 20150623 (Red Hat 4.8.5-39) (GCC) ] - ignore line: [COMPILER_PATH=/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/:/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/:/usr/libexec/gcc/x86_64-redhat-linux/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/:/usr/lib/gcc/x86_64-redhat-linux/] - ignore line: [LIBRARY_PATH=/usr/local/lib/../lib64/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/:/lib/../lib64/:/usr/lib/../lib64/:/opt/mrzcpd/lib/:/opt/MESA/lib/:/usr/local/lib/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../:/lib/:/usr/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_5939e' '-shared-libgcc' '-mtune=generic' '-march=x86-64'] - link line: [ /usr/libexec/gcc/x86_64-redhat-linux/4.8.5/collect2 --build-id --no-add-needed --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -o cmTC_5939e /usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/crt1.o /usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/crti.o /usr/lib/gcc/x86_64-redhat-linux/4.8.5/crtbegin.o -L/usr/local/lib/../lib64 -L/usr/lib/gcc/x86_64-redhat-linux/4.8.5 -L/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64 -L/lib/../lib64 -L/usr/lib/../lib64 -L/opt/mrzcpd/lib -L/opt/MESA/lib -L/usr/local/lib -L/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../.. CMakeFiles/cmTC_5939e.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-redhat-linux/4.8.5/crtend.o /usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/crtn.o] - arg [/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/collect2] ==> ignore - arg [--build-id] ==> ignore - arg [--no-add-needed] ==> ignore - arg [--eh-frame-hdr] ==> ignore - arg [--hash-style=gnu] ==> ignore - arg [-m] ==> ignore - arg [elf_x86_64] ==> ignore - arg [-export-dynamic] ==> ignore - arg [-dynamic-linker] ==> ignore - arg [/lib64/ld-linux-x86-64.so.2] ==> ignore - arg [-o] ==> ignore - arg [cmTC_5939e] ==> ignore - arg [/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/crt1.o] ==> ignore - arg [/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/crti.o] ==> ignore - arg [/usr/lib/gcc/x86_64-redhat-linux/4.8.5/crtbegin.o] ==> ignore - arg [-L/usr/local/lib/../lib64] ==> dir [/usr/local/lib/../lib64] - arg [-L/usr/lib/gcc/x86_64-redhat-linux/4.8.5] ==> dir [/usr/lib/gcc/x86_64-redhat-linux/4.8.5] - arg [-L/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64] ==> dir [/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64] - arg [-L/lib/../lib64] ==> dir [/lib/../lib64] - arg [-L/usr/lib/../lib64] ==> dir [/usr/lib/../lib64] - arg [-L/opt/mrzcpd/lib] ==> dir [/opt/mrzcpd/lib] - arg [-L/opt/MESA/lib] ==> dir [/opt/MESA/lib] - arg [-L/usr/local/lib] ==> dir [/usr/local/lib] - arg [-L/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../..] ==> dir [/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../..] - arg [CMakeFiles/cmTC_5939e.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore - arg [-lstdc++] ==> lib [stdc++] - arg [-lm] ==> lib [m] - arg [-lgcc_s] ==> lib [gcc_s] - arg [-lgcc] ==> lib [gcc] - arg [-lc] ==> lib [c] - arg [-lgcc_s] ==> lib [gcc_s] - arg [-lgcc] ==> lib [gcc] - arg [/usr/lib/gcc/x86_64-redhat-linux/4.8.5/crtend.o] ==> ignore - arg [/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/crtn.o] ==> ignore - collapse library dir [/usr/local/lib/../lib64] ==> [/usr/local/lib64] - collapse library dir [/usr/lib/gcc/x86_64-redhat-linux/4.8.5] ==> [/usr/lib/gcc/x86_64-redhat-linux/4.8.5] - collapse library dir [/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64] ==> [/usr/lib64] - collapse library dir [/lib/../lib64] ==> [/lib64] - collapse library dir [/usr/lib/../lib64] ==> [/usr/lib64] - collapse library dir [/opt/mrzcpd/lib] ==> [/opt/mrzcpd/lib] - collapse library dir [/opt/MESA/lib] ==> [/opt/MESA/lib] - collapse library dir [/usr/local/lib] ==> [/usr/local/lib] - collapse library dir [/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../..] ==> [/usr/lib] - implicit libs: [stdc++;m;gcc_s;gcc;c;gcc_s;gcc] - implicit dirs: [/usr/local/lib64;/usr/lib/gcc/x86_64-redhat-linux/4.8.5;/usr/lib64;/lib64;/opt/mrzcpd/lib;/opt/MESA/lib;/usr/local/lib;/usr/lib] - implicit fwks: [] - - - - -Detecting CXX [-std=c++1y] compiler features compiled with the following output: -Change Dir: /home/yangwei/tcpdump_mesa/cmake-build-debug/CMakeFiles/CMakeTmp - -Run Build Command(s):/usr/bin/gmake cmTC_bb293/fast && /usr/bin/gmake -f CMakeFiles/cmTC_bb293.dir/build.make CMakeFiles/cmTC_bb293.dir/build -gmake[1]: Entering directory `/home/yangwei/tcpdump_mesa/cmake-build-debug/CMakeFiles/CMakeTmp' -Building CXX object CMakeFiles/cmTC_bb293.dir/feature_tests.cxx.o -/usr/bin/g++ -std=c++1y -o CMakeFiles/cmTC_bb293.dir/feature_tests.cxx.o -c /home/yangwei/tcpdump_mesa/cmake-build-debug/CMakeFiles/feature_tests.cxx -Linking CXX executable cmTC_bb293 -/usr/bin/cmake3 -E cmake_link_script CMakeFiles/cmTC_bb293.dir/link.txt --verbose=1 -/usr/bin/g++ -rdynamic CMakeFiles/cmTC_bb293.dir/feature_tests.cxx.o -o cmTC_bb293 -gmake[1]: Leaving directory `/home/yangwei/tcpdump_mesa/cmake-build-debug/CMakeFiles/CMakeTmp' - - - - Feature record: CXX_FEATURE:1cxx_template_template_parameters - Feature record: CXX_FEATURE:1cxx_alias_templates - Feature record: CXX_FEATURE:1cxx_alignas - Feature record: CXX_FEATURE:1cxx_alignof - Feature record: CXX_FEATURE:1cxx_attributes - Feature record: CXX_FEATURE:1cxx_auto_type - Feature record: CXX_FEATURE:1cxx_constexpr - Feature record: CXX_FEATURE:1cxx_decltype - Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types - Feature record: CXX_FEATURE:1cxx_default_function_template_args - Feature record: CXX_FEATURE:1cxx_defaulted_functions - Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers - Feature record: CXX_FEATURE:1cxx_delegating_constructors - Feature record: CXX_FEATURE:1cxx_deleted_functions - Feature record: CXX_FEATURE:1cxx_enum_forward_declarations - Feature record: CXX_FEATURE:1cxx_explicit_conversions - Feature record: CXX_FEATURE:1cxx_extended_friend_declarations - Feature record: CXX_FEATURE:1cxx_extern_templates - Feature record: CXX_FEATURE:1cxx_final - Feature record: CXX_FEATURE:1cxx_func_identifier - Feature record: CXX_FEATURE:1cxx_generalized_initializers - Feature record: CXX_FEATURE:1cxx_inheriting_constructors - Feature record: CXX_FEATURE:1cxx_inline_namespaces - Feature record: CXX_FEATURE:1cxx_lambdas - Feature record: CXX_FEATURE:1cxx_local_type_template_args - Feature record: CXX_FEATURE:1cxx_long_long_type - Feature record: CXX_FEATURE:1cxx_noexcept - Feature record: CXX_FEATURE:1cxx_nonstatic_member_init - Feature record: CXX_FEATURE:1cxx_nullptr - Feature record: CXX_FEATURE:1cxx_override - Feature record: CXX_FEATURE:1cxx_range_for - Feature record: CXX_FEATURE:1cxx_raw_string_literals - Feature record: CXX_FEATURE:1cxx_reference_qualified_functions - Feature record: CXX_FEATURE:1cxx_right_angle_brackets - Feature record: CXX_FEATURE:1cxx_rvalue_references - Feature record: CXX_FEATURE:1cxx_sizeof_member - Feature record: CXX_FEATURE:1cxx_static_assert - Feature record: CXX_FEATURE:1cxx_strong_enums - Feature record: CXX_FEATURE:1cxx_thread_local - Feature record: CXX_FEATURE:1cxx_trailing_return_types - Feature record: CXX_FEATURE:1cxx_unicode_literals - Feature record: CXX_FEATURE:1cxx_uniform_initialization - Feature record: CXX_FEATURE:1cxx_unrestricted_unions - Feature record: CXX_FEATURE:1cxx_user_literals - Feature record: CXX_FEATURE:1cxx_variadic_macros - Feature record: CXX_FEATURE:1cxx_variadic_templates - Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers - Feature record: CXX_FEATURE:0cxx_attribute_deprecated - Feature record: CXX_FEATURE:0cxx_binary_literals - Feature record: CXX_FEATURE:0cxx_contextual_conversions - Feature record: CXX_FEATURE:0cxx_decltype_auto - Feature record: CXX_FEATURE:0cxx_digit_separators - Feature record: CXX_FEATURE:0cxx_generic_lambdas - Feature record: CXX_FEATURE:0cxx_lambda_init_captures - Feature record: CXX_FEATURE:0cxx_relaxed_constexpr - Feature record: CXX_FEATURE:0cxx_return_type_deduction - Feature record: CXX_FEATURE:0cxx_variable_templates diff --git a/cmake-build-debug/CMakeFiles/Makefile.cmake b/cmake-build-debug/CMakeFiles/Makefile.cmake deleted file mode 100644 index 29b8ec9..0000000 --- a/cmake-build-debug/CMakeFiles/Makefile.cmake +++ /dev/null @@ -1,129 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.17 - -# The generator used is: -set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles") - -# The top level Makefile was generated from the following files: -set(CMAKE_MAKEFILE_DEPENDS - "CMakeCache.txt" - "../CMakeLists.txt" - "CMakeFiles/3.17.3/CMakeCCompiler.cmake" - "CMakeFiles/3.17.3/CMakeCXXCompiler.cmake" - "CMakeFiles/3.17.3/CMakeSystem.cmake" - "CMakeFiles/feature_tests.cxx" - "version.cmake" - "../cmake/Package.cmake" - "../cmake/Version.cmake" - "/usr/share/cmake3/Modules/CMakeCCompiler.cmake.in" - "/usr/share/cmake3/Modules/CMakeCCompilerABI.c" - "/usr/share/cmake3/Modules/CMakeCInformation.cmake" - "/usr/share/cmake3/Modules/CMakeCXXCompiler.cmake.in" - "/usr/share/cmake3/Modules/CMakeCXXCompilerABI.cpp" - "/usr/share/cmake3/Modules/CMakeCXXInformation.cmake" - "/usr/share/cmake3/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake" - "/usr/share/cmake3/Modules/CMakeCommonLanguageInclude.cmake" - "/usr/share/cmake3/Modules/CMakeCompilerIdDetection.cmake" - "/usr/share/cmake3/Modules/CMakeDetermineCCompiler.cmake" - "/usr/share/cmake3/Modules/CMakeDetermineCXXCompiler.cmake" - "/usr/share/cmake3/Modules/CMakeDetermineCompileFeatures.cmake" - "/usr/share/cmake3/Modules/CMakeDetermineCompiler.cmake" - "/usr/share/cmake3/Modules/CMakeDetermineCompilerABI.cmake" - "/usr/share/cmake3/Modules/CMakeDetermineCompilerId.cmake" - "/usr/share/cmake3/Modules/CMakeDetermineSystem.cmake" - "/usr/share/cmake3/Modules/CMakeFindBinUtils.cmake" - "/usr/share/cmake3/Modules/CMakeGenericSystem.cmake" - "/usr/share/cmake3/Modules/CMakeInitializeConfigs.cmake" - "/usr/share/cmake3/Modules/CMakeLanguageInformation.cmake" - "/usr/share/cmake3/Modules/CMakeParseImplicitIncludeInfo.cmake" - "/usr/share/cmake3/Modules/CMakeParseImplicitLinkInfo.cmake" - "/usr/share/cmake3/Modules/CMakeSystem.cmake.in" - "/usr/share/cmake3/Modules/CMakeSystemSpecificInformation.cmake" - "/usr/share/cmake3/Modules/CMakeSystemSpecificInitialize.cmake" - "/usr/share/cmake3/Modules/CMakeTestCCompiler.cmake" - "/usr/share/cmake3/Modules/CMakeTestCXXCompiler.cmake" - "/usr/share/cmake3/Modules/CMakeTestCompilerCommon.cmake" - "/usr/share/cmake3/Modules/CMakeUnixFindMake.cmake" - "/usr/share/cmake3/Modules/CPack.cmake" - "/usr/share/cmake3/Modules/CPackComponent.cmake" - "/usr/share/cmake3/Modules/Compiler/ADSP-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/ARMCC-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/ARMClang-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/AppleClang-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/Borland-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/Bruce-C-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/CMakeCommonCompilerMacros.cmake" - "/usr/share/cmake3/Modules/Compiler/Clang-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" - "/usr/share/cmake3/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/Compaq-C-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/Cray-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/GHS-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/GNU-C-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/GNU-C.cmake" - "/usr/share/cmake3/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/GNU-CXX-FeatureTests.cmake" - "/usr/share/cmake3/Modules/Compiler/GNU-CXX.cmake" - "/usr/share/cmake3/Modules/Compiler/GNU-FindBinUtils.cmake" - "/usr/share/cmake3/Modules/Compiler/GNU.cmake" - "/usr/share/cmake3/Modules/Compiler/HP-C-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/IAR-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" - "/usr/share/cmake3/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" - "/usr/share/cmake3/Modules/Compiler/Intel-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/MSVC-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/PGI-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/PathScale-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/SCO-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/SDCC-C-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/SunPro-C-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/TI-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/Watcom-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/XL-C-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/XLClang-C-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/zOS-C-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Internal/CMakeCheckCompilerFlag.cmake" - "/usr/share/cmake3/Modules/Internal/FeatureTesting.cmake" - "/usr/share/cmake3/Modules/Platform/Linux-Determine-CXX.cmake" - "/usr/share/cmake3/Modules/Platform/Linux-GNU-C.cmake" - "/usr/share/cmake3/Modules/Platform/Linux-GNU-CXX.cmake" - "/usr/share/cmake3/Modules/Platform/Linux-GNU.cmake" - "/usr/share/cmake3/Modules/Platform/Linux.cmake" - "/usr/share/cmake3/Modules/Platform/UnixPaths.cmake" - "/usr/share/cmake3/Templates/CPackConfig.cmake.in" - ) - -# The corresponding makefile is: -set(CMAKE_MAKEFILE_OUTPUTS - "Makefile" - "CMakeFiles/cmake.check_cache" - ) - -# Byproducts of CMake generate step: -set(CMAKE_MAKEFILE_PRODUCTS - "CMakeFiles/3.17.3/CMakeSystem.cmake" - "CMakeFiles/3.17.3/CMakeCCompiler.cmake" - "CMakeFiles/3.17.3/CMakeCXXCompiler.cmake" - "CMakeFiles/3.17.3/CMakeCCompiler.cmake" - "CMakeFiles/3.17.3/CMakeCXXCompiler.cmake" - "CPackConfig.cmake" - "CPackSourceConfig.cmake" - "CMakeFiles/CMakeDirectoryInformation.cmake" - ) - -# Dependency information for all targets: -set(CMAKE_DEPEND_INFO_FILES - ) diff --git a/cmake-build-debug/CMakeFiles/Makefile2 b/cmake-build-debug/CMakeFiles/Makefile2 deleted file mode 100644 index 608896e..0000000 --- a/cmake-build-debug/CMakeFiles/Makefile2 +++ /dev/null @@ -1,99 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.17 - -# Default target executed when no arguments are given to make. -default_target: all - -.PHONY : default_target - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - - -# Disable VCS-based implicit rules. -% : %,v - - -# Disable VCS-based implicit rules. -% : RCS/% - - -# Disable VCS-based implicit rules. -% : RCS/%,v - - -# Disable VCS-based implicit rules. -% : SCCS/s.% - - -# Disable VCS-based implicit rules. -% : s.% - - -.SUFFIXES: .hpux_make_needs_suffix_list - - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -# Suppress display of executed commands. -$(VERBOSE).SILENT: - - -# A target that is always out of date. -cmake_force: - -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /usr/bin/cmake3 - -# The command to remove a file. -RM = /usr/bin/cmake3 -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /home/yangwei/tcpdump_mesa - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /home/yangwei/tcpdump_mesa/cmake-build-debug - -#============================================================================= -# Directory level rules for the build root directory - -# The main recursive "all" target. -all: - -.PHONY : all - -# The main recursive "preinstall" target. -preinstall: - -.PHONY : preinstall - -# The main recursive "clean" target. -clean: - -.PHONY : clean - -#============================================================================= -# Special targets to cleanup operation of make. - -# Special rule to run CMake to check the build system integrity. -# No rule that depends on this can have commands that come from listfiles -# because they might be regenerated. -cmake_check_build_system: - $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/cmake-build-debug/CMakeFiles/TargetDirectories.txt b/cmake-build-debug/CMakeFiles/TargetDirectories.txt deleted file mode 100644 index 023ef28..0000000 --- a/cmake-build-debug/CMakeFiles/TargetDirectories.txt +++ /dev/null @@ -1,8 +0,0 @@ -/home/yangwei/tcpdump_mesa/cmake-build-debug/CMakeFiles/install/strip.dir -/home/yangwei/tcpdump_mesa/cmake-build-debug/CMakeFiles/install/local.dir -/home/yangwei/tcpdump_mesa/cmake-build-debug/CMakeFiles/install.dir -/home/yangwei/tcpdump_mesa/cmake-build-debug/CMakeFiles/list_install_components.dir -/home/yangwei/tcpdump_mesa/cmake-build-debug/CMakeFiles/rebuild_cache.dir -/home/yangwei/tcpdump_mesa/cmake-build-debug/CMakeFiles/edit_cache.dir -/home/yangwei/tcpdump_mesa/cmake-build-debug/CMakeFiles/package_source.dir -/home/yangwei/tcpdump_mesa/cmake-build-debug/CMakeFiles/package.dir diff --git a/cmake-build-debug/CMakeFiles/cmake.check_cache b/cmake-build-debug/CMakeFiles/cmake.check_cache deleted file mode 100644 index 3dccd73..0000000 --- a/cmake-build-debug/CMakeFiles/cmake.check_cache +++ /dev/null @@ -1 +0,0 @@ -# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/cmake-build-debug/CMakeFiles/feature_tests.bin b/cmake-build-debug/CMakeFiles/feature_tests.bin deleted file mode 100755 index 0006d3c..0000000 Binary files a/cmake-build-debug/CMakeFiles/feature_tests.bin and /dev/null differ diff --git a/cmake-build-debug/CMakeFiles/feature_tests.cxx b/cmake-build-debug/CMakeFiles/feature_tests.cxx deleted file mode 100644 index ea528b4..0000000 --- a/cmake-build-debug/CMakeFiles/feature_tests.cxx +++ /dev/null @@ -1,405 +0,0 @@ - - const char features[] = {"\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && __cplusplus -"1" -#else -"0" -#endif -"cxx_template_template_parameters\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L -"1" -#else -"0" -#endif -"cxx_alias_templates\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L -"1" -#else -"0" -#endif -"cxx_alignas\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L -"1" -#else -"0" -#endif -"cxx_alignof\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L -"1" -#else -"0" -#endif -"cxx_attributes\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) -"1" -#else -"0" -#endif -"cxx_auto_type\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) -"1" -#else -"0" -#endif -"cxx_constexpr\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) -"1" -#else -"0" -#endif -"cxx_decltype\n" -"CXX_FEATURE:" -#if ((__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) >= 40801) && __cplusplus >= 201103L -"1" -#else -"0" -#endif -"cxx_decltype_incomplete_return_types\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) -"1" -#else -"0" -#endif -"cxx_default_function_template_args\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) -"1" -#else -"0" -#endif -"cxx_defaulted_functions\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) -"1" -#else -"0" -#endif -"cxx_defaulted_move_initializers\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L -"1" -#else -"0" -#endif -"cxx_delegating_constructors\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) -"1" -#else -"0" -#endif -"cxx_deleted_functions\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) -"1" -#else -"0" -#endif -"cxx_enum_forward_declarations\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) -"1" -#else -"0" -#endif -"cxx_explicit_conversions\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L -"1" -#else -"0" -#endif -"cxx_extended_friend_declarations\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) -"1" -#else -"0" -#endif -"cxx_extern_templates\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L -"1" -#else -"0" -#endif -"cxx_final\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) -"1" -#else -"0" -#endif -"cxx_func_identifier\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) -"1" -#else -"0" -#endif -"cxx_generalized_initializers\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L -"1" -#else -"0" -#endif -"cxx_inheriting_constructors\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) -"1" -#else -"0" -#endif -"cxx_inline_namespaces\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) -"1" -#else -"0" -#endif -"cxx_lambdas\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) -"1" -#else -"0" -#endif -"cxx_local_type_template_args\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) -"1" -#else -"0" -#endif -"cxx_long_long_type\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) -"1" -#else -"0" -#endif -"cxx_noexcept\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L -"1" -#else -"0" -#endif -"cxx_nonstatic_member_init\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) -"1" -#else -"0" -#endif -"cxx_nullptr\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L -"1" -#else -"0" -#endif -"cxx_override\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) -"1" -#else -"0" -#endif -"cxx_range_for\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) -"1" -#else -"0" -#endif -"cxx_raw_string_literals\n" -"CXX_FEATURE:" -#if ((__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) >= 40801) && __cplusplus >= 201103L -"1" -#else -"0" -#endif -"cxx_reference_qualified_functions\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) -"1" -#else -"0" -#endif -"cxx_right_angle_brackets\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) -"1" -#else -"0" -#endif -"cxx_rvalue_references\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) -"1" -#else -"0" -#endif -"cxx_sizeof_member\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) -"1" -#else -"0" -#endif -"cxx_static_assert\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) -"1" -#else -"0" -#endif -"cxx_strong_enums\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L -"1" -#else -"0" -#endif -"cxx_thread_local\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) -"1" -#else -"0" -#endif -"cxx_trailing_return_types\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) -"1" -#else -"0" -#endif -"cxx_unicode_literals\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) -"1" -#else -"0" -#endif -"cxx_uniform_initialization\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) -"1" -#else -"0" -#endif -"cxx_unrestricted_unions\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L -"1" -#else -"0" -#endif -"cxx_user_literals\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) -"1" -#else -"0" -#endif -"cxx_variadic_macros\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) -"1" -#else -"0" -#endif -"cxx_variadic_templates\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 500 && __cplusplus >= 201402L -"1" -#else -"0" -#endif -"cxx_aggregate_default_initializers\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L -"1" -#else -"0" -#endif -"cxx_attribute_deprecated\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L -"1" -#else -"0" -#endif -"cxx_binary_literals\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L -"1" -#else -"0" -#endif -"cxx_contextual_conversions\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L -"1" -#else -"0" -#endif -"cxx_decltype_auto\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L -"1" -#else -"0" -#endif -"cxx_digit_separators\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L -"1" -#else -"0" -#endif -"cxx_generic_lambdas\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L -"1" -#else -"0" -#endif -"cxx_lambda_init_captures\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 500 && __cplusplus >= 201402L -"1" -#else -"0" -#endif -"cxx_relaxed_constexpr\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L -"1" -#else -"0" -#endif -"cxx_return_type_deduction\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 500 && __cplusplus >= 201402L -"1" -#else -"0" -#endif -"cxx_variable_templates\n" - -}; - -int main(int argc, char** argv) { (void)argv; return features[argc]; } diff --git a/cmake-build-debug/CMakeFiles/progress.marks b/cmake-build-debug/CMakeFiles/progress.marks deleted file mode 100644 index 573541a..0000000 --- a/cmake-build-debug/CMakeFiles/progress.marks +++ /dev/null @@ -1 +0,0 @@ -0 diff --git a/cmake-build-debug/CPackConfig.cmake b/cmake-build-debug/CPackConfig.cmake deleted file mode 100644 index 56b6778..0000000 --- a/cmake-build-debug/CPackConfig.cmake +++ /dev/null @@ -1,94 +0,0 @@ -# This file will be configured to contain variables for CPack. These variables -# should be set in the CMake list file of the project before CPack module is -# included. The list of available CPACK_xxx variables and their associated -# documentation may be obtained using -# cpack --help-variable-list -# -# Some variables are common to all generators (e.g. CPACK_PACKAGE_NAME) -# and some are specific to a generator -# (e.g. CPACK_NSIS_EXTRA_INSTALL_COMMANDS). The generator specific variables -# usually begin with CPACK__xxxx. - - -set(CPACK_BUILD_SOURCE_DIRS "/home/yangwei/tcpdump_mesa") -set(CPACK_CMAKE_GENERATOR "Unix Makefiles") -set(CPACK_COMPONENTS_ALL "LIBRARY;HEADER;EXECUTABLE;PROFILE") -set(CPACK_COMPONENTS_ALL_SET_BY_USER "TRUE") -set(CPACK_COMPONENTS_GROUPING "ONE_PER_GROUP") -set(CPACK_COMPONENTS_IGNORE_GROUPS "1") -set(CPACK_COMPONENT_EXECUTABLE_GROUP "executable") -set(CPACK_COMPONENT_EXECUTABLE_REQUIRED "TRUE") -set(CPACK_COMPONENT_HEADER_DISPLAY_NAME "develop") -set(CPACK_COMPONENT_HEADER_GROUP "header") -set(CPACK_COMPONENT_HEADER_REQUIRED "TRUE") -set(CPACK_COMPONENT_LIBRARY_GROUP "executable") -set(CPACK_COMPONENT_PROFILE_GROUP "executable") -set(CPACK_COMPONENT_UNSPECIFIED_HIDDEN "TRUE") -set(CPACK_COMPONENT_UNSPECIFIED_REQUIRED "TRUE") -set(CPACK_DEFAULT_PACKAGE_DESCRIPTION_FILE "/usr/share/cmake3/Templates/CPack.GenericDescription.txt") -set(CPACK_DEFAULT_PACKAGE_DESCRIPTION_SUMMARY "tcpdump_mesa built using CMake") -set(CPACK_GENERATOR "RPM") -set(CPACK_INSTALL_CMAKE_PROJECTS "/home/yangwei/tcpdump_mesa/cmake-build-debug;tcpdump_mesa;ALL;/") -set(CPACK_INSTALL_PREFIX "/opt/MESA/") -set(CPACK_MODULE_PATH "/home/yangwei/tcpdump_mesa/cmake") -set(CPACK_NSIS_DISPLAY_NAME "tcpdump_mesa 1.0.0.8a631fe") -set(CPACK_NSIS_INSTALLER_ICON_CODE "") -set(CPACK_NSIS_INSTALLER_MUI_ICON_CODE "") -set(CPACK_NSIS_INSTALL_ROOT "$PROGRAMFILES") -set(CPACK_NSIS_PACKAGE_NAME "tcpdump_mesa 1.0.0.8a631fe") -set(CPACK_NSIS_UNINSTALL_NAME "Uninstall") -set(CPACK_OUTPUT_CONFIG_FILE "/home/yangwei/tcpdump_mesa/cmake-build-debug/CPackConfig.cmake") -set(CPACK_PACKAGE_DEFAULT_LOCATION "/") -set(CPACK_PACKAGE_DESCRIPTION_FILE "/usr/share/cmake3/Templates/CPack.GenericDescription.txt") -set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "tcpdump_mesa built using CMake") -set(CPACK_PACKAGE_FILE_NAME "tcpdump_mesa-1.0.0.8a631fe-Linux") -set(CPACK_PACKAGE_INSTALL_DIRECTORY "tcpdump_mesa 1.0.0.8a631fe") -set(CPACK_PACKAGE_INSTALL_REGISTRY_KEY "tcpdump_mesa 1.0.0.8a631fe") -set(CPACK_PACKAGE_NAME "tcpdump_mesa") -set(CPACK_PACKAGE_RELOCATABLE "true") -set(CPACK_PACKAGE_VECDOR "MESA") -set(CPACK_PACKAGE_VENDOR "Humanity") -set(CPACK_PACKAGE_VERSION "1.0.0.8a631fe") -set(CPACK_PACKAGE_VERSION_MAJOR "1") -set(CPACK_PACKAGE_VERSION_MINOR "0") -set(CPACK_PACKAGE_VERSION_PATCH "0.8a631fe") -set(CPACK_PACKAGING_INSTALL_PREFIX "/opt/MESA/") -set(CPACK_RESOURCE_FILE_LICENSE "/usr/share/cmake3/Templates/CPack.GenericLicense.txt") -set(CPACK_RESOURCE_FILE_README "/usr/share/cmake3/Templates/CPack.GenericDescription.txt") -set(CPACK_RESOURCE_FILE_WELCOME "/usr/share/cmake3/Templates/CPack.GenericWelcome.txt") -set(CPACK_RPM_CHANGELOG_FILE "/home/yangwei/tcpdump_mesa/cmake/changelog.txt") -set(CPACK_RPM_COMPONENT_INSTALL "ON") -set(CPACK_RPM_DEBUGINFO_PACKAGE "on") -set(CPACK_RPM_EXECUTABLE_DEBUGINFO_FILE_NAME "tcpdump_mesa-debug-debuginfo-1.0.0.8a631fe-x86_64...rpm") -set(CPACK_RPM_EXECUTABLE_FILE_NAME "tcpdump_mesa-debug-1.0.0.8a631fe-x86_64...rpm") -set(CPACK_RPM_EXECUTABLE_PACKAGE_NAME "tcpdump_mesa-debug") -set(CPACK_RPM_HEADER_DEBUGINFO_FILE_NAME "tcpdump_mesa-debug-devel-debuginfo-1.0.0.8a631fe-x86_64...rpm") -set(CPACK_RPM_HEADER_FILE_NAME "tcpdump_mesa-debug-devel-1.0.0.8a631fe-x86_64...rpm") -set(CPACK_RPM_HEADER_PACKAGE_CONFLICTS "tcpdump_mesa-debug-devel") -set(CPACK_RPM_HEADER_PACKAGE_NAME "tcpdump_mesa-debug-devel") -set(CPACK_RPM_PACKAGE_AUTOREQ "no") -set(CPACK_RPM_PACKAGE_AUTOREQPROV "no") -set(CPACK_RPM_PACKAGE_CONFLICTS "tcpdump_mesa-debug") -set(CPACK_RPM_PACKAGE_DEBUG "1") -set(CPACK_RPM_PACKAGE_RELEASE_LIBRARY "on") -set(CPACK_RPM_PACKAGE_VENDOR "MESA") -set(CPACK_SET_DESTDIR "OFF") -set(CPACK_SOURCE_GENERATOR "TBZ2;TGZ;TXZ;TZ") -set(CPACK_SOURCE_OUTPUT_CONFIG_FILE "/home/yangwei/tcpdump_mesa/cmake-build-debug/CPackSourceConfig.cmake") -set(CPACK_SOURCE_RPM "OFF") -set(CPACK_SOURCE_TBZ2 "ON") -set(CPACK_SOURCE_TGZ "ON") -set(CPACK_SOURCE_TXZ "ON") -set(CPACK_SOURCE_TZ "ON") -set(CPACK_SOURCE_ZIP "OFF") -set(CPACK_SYSTEM_NAME "Linux") -set(CPACK_TOPLEVEL_TAG "Linux") -set(CPACK_WIX_SIZEOF_VOID_P "8") - -if(NOT CPACK_PROPERTIES_FILE) - set(CPACK_PROPERTIES_FILE "/home/yangwei/tcpdump_mesa/cmake-build-debug/CPackProperties.cmake") -endif() - -if(EXISTS ${CPACK_PROPERTIES_FILE}) - include(${CPACK_PROPERTIES_FILE}) -endif() diff --git a/cmake-build-debug/CPackSourceConfig.cmake b/cmake-build-debug/CPackSourceConfig.cmake deleted file mode 100644 index e4c43ba..0000000 --- a/cmake-build-debug/CPackSourceConfig.cmake +++ /dev/null @@ -1,102 +0,0 @@ -# This file will be configured to contain variables for CPack. These variables -# should be set in the CMake list file of the project before CPack module is -# included. The list of available CPACK_xxx variables and their associated -# documentation may be obtained using -# cpack --help-variable-list -# -# Some variables are common to all generators (e.g. CPACK_PACKAGE_NAME) -# and some are specific to a generator -# (e.g. CPACK_NSIS_EXTRA_INSTALL_COMMANDS). The generator specific variables -# usually begin with CPACK__xxxx. - - -set(CPACK_BUILD_SOURCE_DIRS "/home/yangwei/tcpdump_mesa") -set(CPACK_CMAKE_GENERATOR "Unix Makefiles") -set(CPACK_COMPONENTS_ALL "LIBRARY;HEADER;EXECUTABLE;PROFILE") -set(CPACK_COMPONENTS_ALL_SET_BY_USER "TRUE") -set(CPACK_COMPONENTS_GROUPING "ONE_PER_GROUP") -set(CPACK_COMPONENTS_IGNORE_GROUPS "1") -set(CPACK_COMPONENT_EXECUTABLE_GROUP "executable") -set(CPACK_COMPONENT_EXECUTABLE_REQUIRED "TRUE") -set(CPACK_COMPONENT_HEADER_DISPLAY_NAME "develop") -set(CPACK_COMPONENT_HEADER_GROUP "header") -set(CPACK_COMPONENT_HEADER_REQUIRED "TRUE") -set(CPACK_COMPONENT_LIBRARY_GROUP "executable") -set(CPACK_COMPONENT_PROFILE_GROUP "executable") -set(CPACK_COMPONENT_UNSPECIFIED_HIDDEN "TRUE") -set(CPACK_COMPONENT_UNSPECIFIED_REQUIRED "TRUE") -set(CPACK_DEFAULT_PACKAGE_DESCRIPTION_FILE "/usr/share/cmake3/Templates/CPack.GenericDescription.txt") -set(CPACK_DEFAULT_PACKAGE_DESCRIPTION_SUMMARY "tcpdump_mesa built using CMake") -set(CPACK_GENERATOR "TBZ2;TGZ;TXZ;TZ") -set(CPACK_IGNORE_FILES "/CVS/;/\\.svn/;/\\.bzr/;/\\.hg/;/\\.git/;\\.swp\$;\\.#;/#") -set(CPACK_INSTALLED_DIRECTORIES "/home/yangwei/tcpdump_mesa;/") -set(CPACK_INSTALL_CMAKE_PROJECTS "") -set(CPACK_INSTALL_PREFIX "/opt/MESA/") -set(CPACK_MODULE_PATH "/home/yangwei/tcpdump_mesa/cmake") -set(CPACK_NSIS_DISPLAY_NAME "tcpdump_mesa 1.0.0.8a631fe") -set(CPACK_NSIS_INSTALLER_ICON_CODE "") -set(CPACK_NSIS_INSTALLER_MUI_ICON_CODE "") -set(CPACK_NSIS_INSTALL_ROOT "$PROGRAMFILES") -set(CPACK_NSIS_PACKAGE_NAME "tcpdump_mesa 1.0.0.8a631fe") -set(CPACK_NSIS_UNINSTALL_NAME "Uninstall") -set(CPACK_OUTPUT_CONFIG_FILE "/home/yangwei/tcpdump_mesa/cmake-build-debug/CPackConfig.cmake") -set(CPACK_PACKAGE_DEFAULT_LOCATION "/") -set(CPACK_PACKAGE_DESCRIPTION_FILE "/usr/share/cmake3/Templates/CPack.GenericDescription.txt") -set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "tcpdump_mesa built using CMake") -set(CPACK_PACKAGE_FILE_NAME "tcpdump_mesa-1.0.0.8a631fe-Source") -set(CPACK_PACKAGE_INSTALL_DIRECTORY "tcpdump_mesa 1.0.0.8a631fe") -set(CPACK_PACKAGE_INSTALL_REGISTRY_KEY "tcpdump_mesa 1.0.0.8a631fe") -set(CPACK_PACKAGE_NAME "tcpdump_mesa") -set(CPACK_PACKAGE_RELOCATABLE "true") -set(CPACK_PACKAGE_VECDOR "MESA") -set(CPACK_PACKAGE_VENDOR "Humanity") -set(CPACK_PACKAGE_VERSION "1.0.0.8a631fe") -set(CPACK_PACKAGE_VERSION_MAJOR "1") -set(CPACK_PACKAGE_VERSION_MINOR "0") -set(CPACK_PACKAGE_VERSION_PATCH "0.8a631fe") -set(CPACK_PACKAGING_INSTALL_PREFIX "/opt/MESA/") -set(CPACK_RESOURCE_FILE_LICENSE "/usr/share/cmake3/Templates/CPack.GenericLicense.txt") -set(CPACK_RESOURCE_FILE_README "/usr/share/cmake3/Templates/CPack.GenericDescription.txt") -set(CPACK_RESOURCE_FILE_WELCOME "/usr/share/cmake3/Templates/CPack.GenericWelcome.txt") -set(CPACK_RPM_CHANGELOG_FILE "/home/yangwei/tcpdump_mesa/cmake/changelog.txt") -set(CPACK_RPM_COMPONENT_INSTALL "ON") -set(CPACK_RPM_DEBUGINFO_PACKAGE "on") -set(CPACK_RPM_EXECUTABLE_DEBUGINFO_FILE_NAME "tcpdump_mesa-debug-debuginfo-1.0.0.8a631fe-x86_64...rpm") -set(CPACK_RPM_EXECUTABLE_FILE_NAME "tcpdump_mesa-debug-1.0.0.8a631fe-x86_64...rpm") -set(CPACK_RPM_EXECUTABLE_PACKAGE_NAME "tcpdump_mesa-debug") -set(CPACK_RPM_HEADER_DEBUGINFO_FILE_NAME "tcpdump_mesa-debug-devel-debuginfo-1.0.0.8a631fe-x86_64...rpm") -set(CPACK_RPM_HEADER_FILE_NAME "tcpdump_mesa-debug-devel-1.0.0.8a631fe-x86_64...rpm") -set(CPACK_RPM_HEADER_PACKAGE_CONFLICTS "tcpdump_mesa-debug-devel") -set(CPACK_RPM_HEADER_PACKAGE_NAME "tcpdump_mesa-debug-devel") -set(CPACK_RPM_PACKAGE_AUTOREQ "no") -set(CPACK_RPM_PACKAGE_AUTOREQPROV "no") -set(CPACK_RPM_PACKAGE_CONFLICTS "tcpdump_mesa-debug") -set(CPACK_RPM_PACKAGE_DEBUG "1") -set(CPACK_RPM_PACKAGE_RELEASE_LIBRARY "on") -set(CPACK_RPM_PACKAGE_SOURCES "ON") -set(CPACK_RPM_PACKAGE_VENDOR "MESA") -set(CPACK_SET_DESTDIR "OFF") -set(CPACK_SOURCE_GENERATOR "TBZ2;TGZ;TXZ;TZ") -set(CPACK_SOURCE_IGNORE_FILES "/CVS/;/\\.svn/;/\\.bzr/;/\\.hg/;/\\.git/;\\.swp\$;\\.#;/#") -set(CPACK_SOURCE_INSTALLED_DIRECTORIES "/home/yangwei/tcpdump_mesa;/") -set(CPACK_SOURCE_OUTPUT_CONFIG_FILE "/home/yangwei/tcpdump_mesa/cmake-build-debug/CPackSourceConfig.cmake") -set(CPACK_SOURCE_PACKAGE_FILE_NAME "tcpdump_mesa-1.0.0.8a631fe-Source") -set(CPACK_SOURCE_RPM "OFF") -set(CPACK_SOURCE_TBZ2 "ON") -set(CPACK_SOURCE_TGZ "ON") -set(CPACK_SOURCE_TOPLEVEL_TAG "Linux-Source") -set(CPACK_SOURCE_TXZ "ON") -set(CPACK_SOURCE_TZ "ON") -set(CPACK_SOURCE_ZIP "OFF") -set(CPACK_STRIP_FILES "") -set(CPACK_SYSTEM_NAME "Linux") -set(CPACK_TOPLEVEL_TAG "Linux-Source") -set(CPACK_WIX_SIZEOF_VOID_P "8") - -if(NOT CPACK_PROPERTIES_FILE) - set(CPACK_PROPERTIES_FILE "/home/yangwei/tcpdump_mesa/cmake-build-debug/CPackProperties.cmake") -endif() - -if(EXISTS ${CPACK_PROPERTIES_FILE}) - include(${CPACK_PROPERTIES_FILE}) -endif() diff --git a/cmake-build-debug/Makefile b/cmake-build-debug/Makefile deleted file mode 100644 index 5c4125a..0000000 --- a/cmake-build-debug/Makefile +++ /dev/null @@ -1,228 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.17 - -# Default target executed when no arguments are given to make. -default_target: all - -.PHONY : default_target - -# Allow only one "make -f Makefile2" at a time, but pass parallelism. -.NOTPARALLEL: - - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - - -# Disable VCS-based implicit rules. -% : %,v - - -# Disable VCS-based implicit rules. -% : RCS/% - - -# Disable VCS-based implicit rules. -% : RCS/%,v - - -# Disable VCS-based implicit rules. -% : SCCS/s.% - - -# Disable VCS-based implicit rules. -% : s.% - - -.SUFFIXES: .hpux_make_needs_suffix_list - - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -# Suppress display of executed commands. -$(VERBOSE).SILENT: - - -# A target that is always out of date. -cmake_force: - -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /usr/bin/cmake3 - -# The command to remove a file. -RM = /usr/bin/cmake3 -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /home/yangwei/tcpdump_mesa - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /home/yangwei/tcpdump_mesa/cmake-build-debug - -#============================================================================= -# Targets provided globally by CMake. - -# Special rule for the target install/strip -install/strip: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..." - /usr/bin/cmake3 -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip - -# Special rule for the target install/strip -install/strip/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..." - /usr/bin/cmake3 -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip/fast - -# Special rule for the target install/local -install/local: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..." - /usr/bin/cmake3 -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local - -# Special rule for the target install/local -install/local/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..." - /usr/bin/cmake3 -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local/fast - -# Special rule for the target install -install: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." - /usr/bin/cmake3 -P cmake_install.cmake -.PHONY : install - -# Special rule for the target install -install/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." - /usr/bin/cmake3 -P cmake_install.cmake -.PHONY : install/fast - -# Special rule for the target list_install_components -list_install_components: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"EXECUTABLE\"" -.PHONY : list_install_components - -# Special rule for the target list_install_components -list_install_components/fast: list_install_components - -.PHONY : list_install_components/fast - -# Special rule for the target rebuild_cache -rebuild_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." - /usr/bin/cmake3 --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : rebuild_cache - -# Special rule for the target rebuild_cache -rebuild_cache/fast: rebuild_cache - -.PHONY : rebuild_cache/fast - -# Special rule for the target edit_cache -edit_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake cache editor..." - /usr/bin/ccmake3 -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : edit_cache - -# Special rule for the target edit_cache -edit_cache/fast: edit_cache - -.PHONY : edit_cache/fast - -# Special rule for the target package_source -package_source: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool for source..." - /usr/bin/cpack3 --config ./CPackSourceConfig.cmake /home/yangwei/tcpdump_mesa/cmake-build-debug/CPackSourceConfig.cmake -.PHONY : package_source - -# Special rule for the target package_source -package_source/fast: package_source - -.PHONY : package_source/fast - -# Special rule for the target package -package: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool..." - /usr/bin/cpack3 --config ./CPackConfig.cmake -.PHONY : package - -# Special rule for the target package -package/fast: package - -.PHONY : package/fast - -# The main all target -all: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /home/yangwei/tcpdump_mesa/cmake-build-debug/CMakeFiles /home/yangwei/tcpdump_mesa/cmake-build-debug/CMakeFiles/progress.marks - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all - $(CMAKE_COMMAND) -E cmake_progress_start /home/yangwei/tcpdump_mesa/cmake-build-debug/CMakeFiles 0 -.PHONY : all - -# The main clean target -clean: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 clean -.PHONY : clean - -# The main clean target -clean/fast: clean - -.PHONY : clean/fast - -# Prepare targets for installation. -preinstall: all - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall -.PHONY : preinstall - -# Prepare targets for installation. -preinstall/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall -.PHONY : preinstall/fast - -# clear depends -depend: - $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 -.PHONY : depend - -# Help Target -help: - @echo "The following are some of the valid targets for this Makefile:" - @echo "... all (the default if no target is provided)" - @echo "... clean" - @echo "... depend" - @echo "... edit_cache" - @echo "... install" - @echo "... install/local" - @echo "... install/strip" - @echo "... list_install_components" - @echo "... package" - @echo "... package_source" - @echo "... rebuild_cache" -.PHONY : help - - - -#============================================================================= -# Special targets to cleanup operation of make. - -# Special rule to run CMake to check the build system integrity. -# No rule that depends on this can have commands that come from listfiles -# because they might be regenerated. -cmake_check_build_system: - $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/cmake-build-debug/addrtoname.o b/cmake-build-debug/addrtoname.o deleted file mode 100644 index bd4e306..0000000 Binary files a/cmake-build-debug/addrtoname.o and /dev/null differ diff --git a/cmake-build-debug/addrtostr.o b/cmake-build-debug/addrtostr.o deleted file mode 100644 index dd1406b..0000000 Binary files a/cmake-build-debug/addrtostr.o and /dev/null differ diff --git a/cmake-build-debug/af.o b/cmake-build-debug/af.o deleted file mode 100644 index 117c9e2..0000000 Binary files a/cmake-build-debug/af.o and /dev/null differ diff --git a/cmake-build-debug/ascii_strcasecmp.o b/cmake-build-debug/ascii_strcasecmp.o deleted file mode 100644 index 1dc442e..0000000 Binary files a/cmake-build-debug/ascii_strcasecmp.o and /dev/null differ diff --git a/cmake-build-debug/autorevision.sh b/cmake-build-debug/autorevision.sh deleted file mode 100755 index 3baa179..0000000 --- a/cmake-build-debug/autorevision.sh +++ /dev/null @@ -1,1268 +0,0 @@ -#!/bin/sh - -# Copyright (c) 2012 - 2016 dak180 and contributors. See -# https://opensource.org/licenses/mit-license.php or the included -# COPYING.md for licence terms. -# -# autorevision - extracts metadata about the head version from your -# repository. - -# Usage message. -arUsage() { - cat > "/dev/stderr" << EOF -usage: autorevision {-t output-type | -s symbol} [-o cache-file [-f] ] [-V] - Options include: - -t output-type = specify output type - -s symbol = specify symbol output - -o cache-file = specify cache file location - -f = force the use of cache data - -U = check for untracked files in svn - -V = emit version and exit - -? = help message - -The following are valid output types: - clojure = clojure file - c = C/C++ file - h = Header for use with c/c++ - hpp = Alternate C++ header strings with namespace - ini = INI file - java = Java file - javaprop = Java properties file - js = javascript file - json = JSON file - lua = Lua file - m4 = m4 file - matlab = matlab file - octave = octave file - php = PHP file - pl = Perl file - py = Python file - rpm = rpm file - scheme = scheme file - sh = Bash sytax - swift = Swift file - tex = (La)TeX file - xcode = Header useful for populating info.plist files - cmake = CMake file - - -The following are valid symbols: - VCS_TYPE - VCS_BASENAME - VCS_UUID - VCS_NUM - VCS_DATE - VCS_BRANCH - VCS_TAG - VCS_TICK - VCS_EXTRA - VCS_FULL_HASH - VCS_SHORT_HASH - VCS_WC_MODIFIED - VCS_ACTION_STAMP -EOF - exit 1 -} - -# Config -ARVERSION="&&ARVERSION&&" -TARGETFILE="/dev/stdout" -while getopts ":t:o:s:VfU" OPTION; do - case "${OPTION}" in - t) - AFILETYPE="${OPTARG}" - ;; - o) - CACHEFILE="${OPTARG}" - ;; - f) - CACHEFORCE="1" - ;; - s) - VAROUT="${OPTARG}" - ;; - U) - UNTRACKEDFILES="1" - ;; - V) - echo "autorevision ${ARVERSION}" - exit 0 - ;; - ?) - # If an unknown flag is used (or -?): - arUsage - ;; - esac -done - -if [ ! -z "${VAROUT}" ] && [ ! -z "${AFILETYPE}" ]; then - # If both -s and -t are specified: - echo "error: Improper argument combination." 1>&2 - exit 1 -elif [ -z "${VAROUT}" ] && [ -z "${AFILETYPE}" ]; then - # If neither -s or -t are specified: - arUsage -elif [ -z "${CACHEFILE}" ] && [ "${CACHEFORCE}" = "1" ]; then - # If -f is specified without -o: - arUsage -elif [ ! -f "${CACHEFILE}" ] && [ "${CACHEFORCE}" = "1" ]; then - # If we are forced to use the cache but it does not exist. - echo "error: Cache forced but no cache found." 1>&2 - exit 1 -fi - -# Make sure that the path we are given is one we can source -# (dash, we are looking at you). -if [ ! -z "${CACHEFILE}" ] && ! echo "${CACHEFILE}" | grep -q '^\.*/'; then - CACHEFILE="./${CACHEFILE}" -fi - -GENERATED_HEADER="Generated by autorevision - do not hand-hack!" - -# Functions to extract data from different repo types. -# For git repos -# shellcheck disable=SC2039,SC2164,SC2155 -gitRepo() { - local oldPath="${PWD}" - - cd "$(git rev-parse --show-toplevel)" - - VCS_TYPE="git" - - VCS_BASENAME="$(basename "${PWD}")" - - VCS_UUID="$(git rev-list --max-parents=0 --date-order --reverse HEAD 2>/dev/null | sed -n 1p)" - if [ -z "${VCS_UUID}" ]; then - VCS_UUID="$(git rev-list --topo-order HEAD | tail -n 1)" - fi - - # Is the working copy clean? - test -z "$(git status --untracked-files=normal --porcelain)" - VCS_WC_MODIFIED="${?}" - - # Enumeration of changesets - VCS_NUM="$(git rev-list --count HEAD 2>/dev/null)" - if [ -z "${VCS_NUM}" ]; then - echo "warning: Counting the number of revisions may be slower due to an outdated git version less than 1.7.2.3. If something breaks, please update it." 1>&2 - VCS_NUM="$(git rev-list HEAD | wc -l)" - fi - - # This may be a git-svn remote. If so, report the Subversion revision. - if [ -z "$(git config svn-remote.svn.url 2>/dev/null)" ]; then - # The full revision hash - VCS_FULL_HASH="$(git rev-parse HEAD)" - - # The short hash - VCS_SHORT_HASH="$(echo "${VCS_FULL_HASH}" | cut -b 1-7)" - else - # The git-svn revision number - VCS_FULL_HASH="$(git svn find-rev HEAD)" - VCS_SHORT_HASH="${VCS_FULL_HASH}" - fi - - # Current branch - VCS_BRANCH="$(git rev-parse --symbolic-full-name --verify "$(git name-rev --name-only --no-undefined HEAD 2>/dev/null)" 2>/dev/null | sed -e 's:refs/heads/::' | sed -e 's:refs/::')" - - # Cache the description - local DESCRIPTION="$(git describe --long --tags 2>/dev/null)" - - # Current or last tag ancestor (empty if no tags) - VCS_TAG="$(echo "${DESCRIPTION}" | sed -e "s:-g${VCS_SHORT_HASH}\$::" -e 's:-[0-9]*$::')" - - # Distance to last tag or an alias of VCS_NUM if there is no tag - if [ ! -z "${DESCRIPTION}" ]; then - VCS_TICK="$(echo "${DESCRIPTION}" | sed -e "s:${VCS_TAG}-::" -e "s:-g${VCS_SHORT_HASH}::")" - else - VCS_TICK="${VCS_NUM}" - fi - - # Date of the current commit - VCS_DATE="$(TZ=UTC git show -s --date=iso-strict-local --pretty=format:%ad | sed -e 's|+00:00|Z|')" - if [ -z "${VCS_DATE}" ]; then - echo "warning: Action stamps require git version 2.7+." 1>&2 - VCS_DATE="$(git log -1 --pretty=format:%ci | sed -e 's: :T:' -e 's: ::' -e 's|+00:00|Z|')" - local ASdis="1" - fi - - # Action Stamp - if [ -z "${ASdis}" ]; then - VCS_ACTION_STAMP="${VCS_DATE}!$(git show -s --pretty=format:%cE)" - else - VCS_ACTION_STAMP="" - fi - - cd "${oldPath}" -} - -# For hg repos -# shellcheck disable=SC2039,SC2164 -hgRepo() { - local oldPath="${PWD}" - - cd "$(hg root)" - - VCS_TYPE="hg" - - VCS_BASENAME="$(basename "${PWD}")" - - VCS_UUID="$(hg log -r "0" -l 1 --template '{node}\n')" - - # Is the working copy clean? - test -z "$(hg status -duram)" - VCS_WC_MODIFIED="${?}" - - # Enumeration of changesets - VCS_NUM="$(hg id -n | tr -d '+')" - - # The full revision hash - VCS_FULL_HASH="$(hg log -r "${VCS_NUM}" -l 1 --template '{node}\n')" - - # The short hash - VCS_SHORT_HASH="$(hg id -i | tr -d '+')" - - # Current bookmark (bookmarks are roughly equivalent to git's branches) - # or branch if no bookmark - VCS_BRANCH="$(hg id -B | cut -d ' ' -f 1)" - # Fall back to the branch if there are no bookmarks - if [ -z "${VCS_BRANCH}" ]; then - VCS_BRANCH="$(hg id -b)" - fi - - # Current or last tag ancestor (excluding auto tags, empty if no tags) - VCS_TAG="$(hg log -r "${VCS_NUM}" -l 1 --template '{latesttag}\n' 2>/dev/null | sed -e 's:qtip::' -e 's:tip::' -e 's:qbase::' -e 's:qparent::' -e "s:$(hg --config 'extensions.color=' --config 'extensions.mq=' --color never qtop 2>/dev/null)::" | cut -d ' ' -f 1)" - - # Distance to last tag or an alias of VCS_NUM if there is no tag - if [ ! -z "${VCS_TAG}" ]; then - VCS_TICK="$(hg log -r "${VCS_NUM}" -l 1 --template '{latesttagdistance}\n' 2>/dev/null)" - else - VCS_TICK="${VCS_NUM}" - fi - - # Date of the current commit - VCS_DATE="$(hg log -r "${VCS_NUM}" -l 1 --template '{date|isodatesec}\n' 2>/dev/null | sed -e 's: :T:' -e 's: ::' -e 's|+00:00|Z|')" - - # Action Stamp - VCS_ACTION_STAMP="$(TZ=UTC hg log -r "${VCS_NUM}" -l 1 --template '{date|localdate|rfc3339date}\n' 2>/dev/null | sed -e 's|+00:00|Z|')!$(hg log -r "${VCS_NUM}" -l 1 --template '{author|email}\n' 2>/dev/null)" - - cd "${oldPath}" -} - -# For bzr repos -# shellcheck disable=SC2039,SC2164 -bzrRepo() { - local oldPath="${PWD}" - - cd "$(bzr root)" - - VCS_TYPE="bzr" - - VCS_BASENAME="$(basename "${PWD}")" - - # Currently unimplemented because more investigation is needed. - VCS_UUID="" - - # Is the working copy clean? - bzr version-info --custom --template='{clean}\n' | grep -q '1' - VCS_WC_MODIFIED="${?}" - - # Enumeration of changesets - VCS_NUM="$(bzr revno)" - - # The full revision hash - VCS_FULL_HASH="$(bzr version-info --custom --template='{revision_id}\n')" - - # The short hash - VCS_SHORT_HASH="${VCS_NUM}" - - # Nick of the current branch - VCS_BRANCH="$(bzr nick)" - - # Current or last tag ancestor (excluding auto tags, empty if no tags) - VCS_TAG="$(bzr tags --sort=time | sed '/?$/d' | tail -n1 | cut -d ' ' -f1)" - - # Distance to last tag or an alias of VCS_NUM if there is no tag - if [ ! -z "${VCS_TAG}" ]; then - VCS_TICK="$(bzr log --line -r "tag:${VCS_TAG}.." | tail -n +2 | wc -l | sed -e 's:^ *::')" - else - VCS_TICK="${VCS_NUM}" - fi - - # Date of the current commit - VCS_DATE="$(bzr version-info --custom --template='{date}\n' | sed -e 's: :T:' -e 's: ::')" - - # Action Stamp - # Currently unimplemented because more investigation is needed. - VCS_ACTION_STAMP="" - - cd "${oldPath}" -} - -# For svn repos -# shellcheck disable=SC2039,SC2164,SC2155 -svnRepo() { - local oldPath="${PWD}" - - VCS_TYPE="svn" - - case "${PWD}" in - /*trunk*|/*branches*|/*tags*) - local fn="${PWD}" - while [ "$(basename "${fn}")" != 'trunk' ] && [ "$(basename "${fn}")" != 'branches' ] && [ "$(basename "${fn}")" != 'tags' ] && [ "$(basename "${fn}")" != '/' ]; do - local fn="$(dirname "${fn}")" - done - local fn="$(dirname "${fn}")" - if [ "${fn}" = '/' ]; then - VCS_BASENAME="$(basename "${PWD}")" - else - VCS_BASENAME="$(basename "${fn}")" - fi - ;; - *) VCS_BASENAME="$(basename "${PWD}")" ;; - esac - - VCS_UUID="$(svn info --xml | sed -n -e 's:::' -e 's:::p')" - - # Cache svnversion output - local SVNVERSION="$(svnversion)" - - # Is the working copy clean? - echo "${SVNVERSION}" | grep -q "M" - case "${?}" in - 0) - VCS_WC_MODIFIED="1" - ;; - 1) - if [ ! -z "${UNTRACKEDFILES}" ]; then - # `svnversion` does not detect untracked files and `svn status` is really slow, so only run it if we really have to. - if [ -z "$(svn status)" ]; then - VCS_WC_MODIFIED="0" - else - VCS_WC_MODIFIED="1" - fi - else - VCS_WC_MODIFIED="0" - fi - ;; - esac - - # Enumeration of changesets - VCS_NUM="$(echo "${SVNVERSION}" | cut -d : -f 1 | sed -e 's:M::' -e 's:S::' -e 's:P::')" - - # The full revision hash - VCS_FULL_HASH="${SVNVERSION}" - - # The short hash - VCS_SHORT_HASH="${VCS_NUM}" - - # Current branch - case "${PWD}" in - /*trunk*|/*branches*|/*tags*) - local lastbase="" - local fn="${PWD}" - while : - do - base="$(basename "${fn}")" - if [ "${base}" = 'trunk' ]; then - VCS_BRANCH='trunk' - break - elif [ "${base}" = 'branches' ] || [ "${base}" = 'tags' ]; then - VCS_BRANCH="${lastbase}" - break - elif [ "${base}" = '/' ]; then - VCS_BRANCH="" - break - fi - local lastbase="${base}" - local fn="$(dirname "${fn}")" - done - ;; - *) VCS_BRANCH="" ;; - esac - - # Current or last tag ancestor (empty if no tags). But "current - # tag" can't be extracted reliably because Subversion doesn't - # have tags the way other VCSes do. - VCS_TAG="" - VCS_TICK="" - - # Date of the current commit - VCS_DATE="$(svn info --xml | sed -n -e 's:::' -e 's:::p')" - - # Action Stamp - VCS_ACTION_STAMP="${VCS_DATE}!$(svn log --xml -l 1 -r "${VCS_SHORT_HASH}" | sed -n -e 's:::' -e 's:::p')" - - cd "${oldPath}" -} - - -# Functions to output data in different formats. -# For bash output -shOutput() { - cat > "${TARGETFILE}" << EOF -# ${GENERATED_HEADER} - -VCS_TYPE="${VCS_TYPE}" -VCS_BASENAME="${VCS_BASENAME}" -VCS_UUID="${VCS_UUID}" -VCS_NUM="${VCS_NUM}" -VCS_DATE="${VCS_DATE}" -VCS_BRANCH="${VCS_BRANCH}" -VCS_TAG="${VCS_TAG}" -VCS_TICK="${VCS_TICK}" -VCS_EXTRA="${VCS_EXTRA}" - -VCS_ACTION_STAMP="${VCS_ACTION_STAMP}" -VCS_FULL_HASH="${VCS_FULL_HASH}" -VCS_SHORT_HASH="${VCS_SHORT_HASH}" - -VCS_WC_MODIFIED="${VCS_WC_MODIFIED}" - -# end -EOF -} - -# For source C output -cOutput() { - cat > "${TARGETFILE}" << EOF -/* ${GENERATED_HEADER} */ - -const char *VCS_TYPE = "${VCS_TYPE}"; -const char *VCS_BASENAME = "${VCS_BASENAME}"; -const char *VCS_UUID = "${VCS_UUID}"; -const int VCS_NUM = ${VCS_NUM}; -const char *VCS_DATE = "${VCS_DATE}"; -const char *VCS_BRANCH = "${VCS_BRANCH}"; -const char *VCS_TAG = "${VCS_TAG}"; -const int VCS_TICK = ${VCS_TICK}; -const char *VCS_EXTRA = "${VCS_EXTRA}"; - -const char *VCS_ACTION_STAMP = "${VCS_ACTION_STAMP}"; -const char *VCS_FULL_HASH = "${VCS_FULL_HASH}"; -const char *VCS_SHORT_HASH = "${VCS_SHORT_HASH}"; - -const int VCS_WC_MODIFIED = ${VCS_WC_MODIFIED}; - -/* end */ -EOF -} - -# For header output -hOutput() { - cat > "${TARGETFILE}" << EOF -/* ${GENERATED_HEADER} */ -#ifndef AUTOREVISION_H -#define AUTOREVISION_H - -#define VCS_TYPE "${VCS_TYPE}" -#define VCS_BASENAME "${VCS_BASENAME}" -#define VCS_UUID "${VCS_UUID}" -#define VCS_NUM ${VCS_NUM} -#define VCS_DATE "${VCS_DATE}" -#define VCS_BRANCH "${VCS_BRANCH}" -#define VCS_TAG "${VCS_TAG}" -#define VCS_TICK ${VCS_TICK} -#define VCS_EXTRA "${VCS_EXTRA}" - -#define VCS_ACTION_STAMP "${VCS_ACTION_STAMP}" -#define VCS_FULL_HASH "${VCS_FULL_HASH}" -#define VCS_SHORT_HASH "${VCS_SHORT_HASH}" - -#define VCS_WC_MODIFIED ${VCS_WC_MODIFIED} - -#endif - -/* end */ -EOF -} - -# A header output for use with xcode to populate info.plist strings -xcodeOutput() { - cat > "${TARGETFILE}" << EOF -/* ${GENERATED_HEADER} */ -#ifndef AUTOREVISION_H -#define AUTOREVISION_H - -#define VCS_TYPE ${VCS_TYPE} -#define VCS_BASENAME ${VCS_BASENAME} -#define VCS_UUID ${VCS_UUID} -#define VCS_NUM ${VCS_NUM} -#define VCS_DATE ${VCS_DATE} -#define VCS_BRANCH ${VCS_BRANCH} -#define VCS_TAG ${VCS_TAG} -#define VCS_TICK ${VCS_TICK} -#define VCS_EXTRA ${VCS_EXTRA} - -#define VCS_ACTION_STAMP ${VCS_ACTION_STAMP} -#define VCS_FULL_HASH ${VCS_FULL_HASH} -#define VCS_SHORT_HASH ${VCS_SHORT_HASH} - -#define VCS_WC_MODIFIED ${VCS_WC_MODIFIED} - -#endif - -/* end */ -EOF -} - -# For Swift output -swiftOutput() { - case "${VCS_WC_MODIFIED}" in - 0) VCS_WC_MODIFIED="false" ;; - 1) VCS_WC_MODIFIED="true" ;; - esac - # For values that may not exist depending on the type of repo we - # have read from, set them to `nil` when they are empty. - if [ -z "${VCS_UUID}" ]; then - VCS_UUID="nil" - else - VCS_UUID="\"${VCS_UUID}\"" - fi - if [ -z "${VCS_TAG}" ]; then - VCS_TAG="nil" - else - VCS_TAG="\"${VCS_TAG}\"" - fi - : "${VCS_TICK:="nil"}" - if [ -z "${VCS_EXTRA}" ]; then - VCS_EXTRA="nil" - else - VCS_EXTRA="\"${VCS_EXTRA}\"" - fi - if [ -z "${VCS_ACTION_STAMP}" ]; then - VCS_ACTION_STAMP="nil" - else - VCS_ACTION_STAMP="\"${VCS_ACTION_STAMP}\"" - fi - cat > "${TARGETFILE}" << EOF -/* ${GENERATED_HEADER} */ - -let VCS_TYPE = "${VCS_TYPE}" -let VCS_BASENAME = "${VCS_BASENAME}" -let VCS_UUID: String? = ${VCS_UUID} -let VCS_NUM: Int = ${VCS_NUM} -let VCS_DATE = "${VCS_DATE}" -let VCS_BRANCH: String = "${VCS_BRANCH}" -let VCS_TAG: String? = ${VCS_TAG} -let VCS_TICK: Int? = ${VCS_TICK} -let VCS_EXTRA: String? = ${VCS_EXTRA} - -let VCS_ACTION_STAMP: String? = ${VCS_ACTION_STAMP} -let VCS_FULL_HASH: String = "${VCS_FULL_HASH}" -let VCS_SHORT_HASH: String = "${VCS_SHORT_HASH}" - -let VCS_WC_MODIFIED: Bool = ${VCS_WC_MODIFIED} - -/* end */ -EOF -} - -# For Python output -pyOutput() { - case "${VCS_WC_MODIFIED}" in - 0) VCS_WC_MODIFIED="False" ;; - 1) VCS_WC_MODIFIED="True" ;; - esac - cat > "${TARGETFILE}" << EOF -# ${GENERATED_HEADER} - -VCS_TYPE = "${VCS_TYPE}" -VCS_BASENAME = "${VCS_BASENAME}" -VCS_UUID = "${VCS_UUID}" -VCS_NUM = ${VCS_NUM} -VCS_DATE = "${VCS_DATE}" -VCS_BRANCH = "${VCS_BRANCH}" -VCS_TAG = "${VCS_TAG}" -VCS_TICK = ${VCS_TICK} -VCS_EXTRA = "${VCS_EXTRA}" - -VCS_ACTION_STAMP = "${VCS_ACTION_STAMP}" -VCS_FULL_HASH = "${VCS_FULL_HASH}" -VCS_SHORT_HASH = "${VCS_SHORT_HASH}" - -VCS_WC_MODIFIED = ${VCS_WC_MODIFIED} - -# end -EOF -} - -# For Perl output -plOutput() { - cat << EOF -# ${GENERATED_HEADER} - -\$VCS_TYPE = '${VCS_TYPE}'; -\$VCS_BASENAME = '${VCS_BASENAME}'; -\$VCS_UUID = '${VCS_UUID}'; -\$VCS_NUM = ${VCS_NUM}; -\$VCS_DATE = '${VCS_DATE}'; -\$VCS_BRANCH = '${VCS_BRANCH}'; -\$VCS_TAG = '${VCS_TAG}'; -\$VCS_TICK = ${VCS_TICK}; -\$VCS_EXTRA = '${VCS_EXTRA}'; - -\$VCS_ACTION_STAMP = '${VCS_ACTION_STAMP}'; -\$VCS_FULL_HASH = '${VCS_FULL_HASH}'; -\$VCS_SHORT_HASH = '${VCS_SHORT_HASH}'; - -\$VCS_WC_MODIFIED = ${VCS_WC_MODIFIED}; - -# end -1; -EOF -} - -# For lua output -luaOutput() { - case "${VCS_WC_MODIFIED}" in - 0) VCS_WC_MODIFIED="false" ;; - 1) VCS_WC_MODIFIED="true" ;; - esac - cat > "${TARGETFILE}" << EOF --- ${GENERATED_HEADER} - -VCS_TYPE = "${VCS_TYPE}" -VCS_BASENAME = "${VCS_BASENAME}" -VCS_UUID = "${VCS_UUID}" -VCS_NUM = ${VCS_NUM} -VCS_DATE = "${VCS_DATE}" -VCS_BRANCH = "${VCS_BRANCH}" -VCS_TAG = "${VCS_TAG}" -VCS_TICK = ${VCS_TICK} -VCS_EXTRA = "${VCS_EXTRA}" - -VCS_ACTION_STAMP = "${VCS_ACTION_STAMP}" -VCS_FULL_HASH = "${VCS_FULL_HASH}" -VCS_SHORT_HASH = "${VCS_SHORT_HASH}" - -VCS_WC_MODIFIED = ${VCS_WC_MODIFIED} - --- end -EOF -} - -# For php output -phpOutput() { - case "${VCS_WC_MODIFIED}" in - 0) VCS_WC_MODIFIED="false" ;; - 1) VCS_WC_MODIFIED="true" ;; - esac - cat > "${TARGETFILE}" << EOF - "${VCS_TYPE}", - "VCS_BASENAME" => "${VCS_BASENAME}", - "VCS_UUID" => "${VCS_UUID}", - "VCS_NUM" => ${VCS_NUM}, - "VCS_DATE" => "${VCS_DATE}", - "VCS_BRANCH" => "${VCS_BRANCH}", - "VCS_TAG" => "${VCS_TAG}", - "VCS_TICK" => ${VCS_TICK}, - "VCS_EXTRA" => "${VCS_EXTRA}", - "VCS_ACTION_STAMP" => "${VCS_ACTION_STAMP}", - "VCS_FULL_HASH" => "${VCS_FULL_HASH}", - "VCS_SHORT_HASH" => "${VCS_SHORT_HASH}", - "VCS_WC_MODIFIED" => ${VCS_WC_MODIFIED} -); - -# end -?> -EOF -} - -# For ini output -iniOutput() { - case "${VCS_WC_MODIFIED}" in - 0) VCS_WC_MODIFIED="false" ;; - 1) VCS_WC_MODIFIED="true" ;; - esac - cat > "${TARGETFILE}" << EOF -; ${GENERATED_HEADER} -[VCS] -VCS_TYPE = "${VCS_TYPE}" -VCS_BASENAME = "${VCS_BASENAME}" -VCS_UUID = "${VCS_UUID}" -VCS_NUM = ${VCS_NUM} -VCS_DATE = "${VCS_DATE}" -VCS_BRANCH = "${VCS_BRANCH}" -VCS_TAG = "${VCS_TAG}" -VCS_TICK = ${VCS_TICK} -VCS_EXTRA = "${VCS_EXTRA}" -VCS_ACTION_STAMP = "${VCS_ACTION_STAMP}" -VCS_FULL_HASH = "${VCS_FULL_HASH}" -VCS_SHORT_HASH = "${VCS_SHORT_HASH}" -VCS_WC_MODIFIED = ${VCS_WC_MODIFIED} -; end -EOF -} - -# For javascript output -jsOutput() { - case "${VCS_WC_MODIFIED}" in - 1) VCS_WC_MODIFIED="true" ;; - 0) VCS_WC_MODIFIED="false" ;; - esac - cat > "${TARGETFILE}" << EOF -/** ${GENERATED_HEADER} */ - -var autorevision = { - VCS_TYPE: "${VCS_TYPE}", - VCS_BASENAME: "${VCS_BASENAME}", - VCS_UUID: "${VCS_UUID}", - VCS_NUM: ${VCS_NUM}, - VCS_DATE: "${VCS_DATE}", - VCS_BRANCH: "${VCS_BRANCH}", - VCS_TAG: "${VCS_TAG}", - VCS_TICK: ${VCS_TICK}, - VCS_EXTRA: "${VCS_EXTRA}", - - VCS_ACTION_STAMP: "${VCS_ACTION_STAMP}", - VCS_FULL_HASH: "${VCS_FULL_HASH}", - VCS_SHORT_HASH: "${VCS_SHORT_HASH}", - - VCS_WC_MODIFIED: ${VCS_WC_MODIFIED} -}; - -/** Node.js compatibility */ -if (typeof module !== 'undefined') { - module.exports = autorevision; -} - -/** end */ -EOF -} - -# For JSON output -jsonOutput() { - case "${VCS_WC_MODIFIED}" in - 1) VCS_WC_MODIFIED="true" ;; - 0) VCS_WC_MODIFIED="false" ;; - esac - cat > "${TARGETFILE}" << EOF -{ - "_comment": "${GENERATED_HEADER}", - "VCS_TYPE": "${VCS_TYPE}", - "VCS_BASENAME": "${VCS_BASENAME}", - "VCS_UUID": "${VCS_UUID}", - "VCS_NUM": ${VCS_NUM}, - "VCS_DATE": "${VCS_DATE}", - "VCS_BRANCH":"${VCS_BRANCH}", - "VCS_TAG": "${VCS_TAG}", - "VCS_TICK": ${VCS_TICK}, - "VCS_EXTRA": "${VCS_EXTRA}", - - "VCS_ACTION_STAMP": "${VCS_ACTION_STAMP}", - "VCS_FULL_HASH": "${VCS_FULL_HASH}", - "VCS_SHORT_HASH": "${VCS_SHORT_HASH}", - - "VCS_WC_MODIFIED": ${VCS_WC_MODIFIED} -} -EOF -} - -# For Java output -javaOutput() { - case "${VCS_WC_MODIFIED}" in - 1) VCS_WC_MODIFIED="true" ;; - 0) VCS_WC_MODIFIED="false" ;; - esac - cat > "${TARGETFILE}" << EOF -/* ${GENERATED_HEADER} */ - -public class autorevision { - public static final String VCS_TYPE = "${VCS_TYPE}"; - public static final String VCS_BASENAME = "${VCS_BASENAME}"; - public static final String VCS_UUID = "${VCS_UUID}"; - public static final long VCS_NUM = ${VCS_NUM}; - public static final String VCS_DATE = "${VCS_DATE}"; - public static final String VCS_BRANCH = "${VCS_BRANCH}"; - public static final String VCS_TAG = "${VCS_TAG}"; - public static final long VCS_TICK = ${VCS_TICK}; - public static final String VCS_EXTRA = "${VCS_EXTRA}"; - - public static final String VCS_ACTION_STAMP = "${VCS_ACTION_STAMP}"; - public static final String VCS_FULL_HASH = "${VCS_FULL_HASH}"; - public static final String VCS_SHORT_HASH = "${VCS_SHORT_HASH}"; - - public static final boolean VCS_WC_MODIFIED = ${VCS_WC_MODIFIED}; -} -EOF -} - -# For Java properties output -javapropOutput() { - case "${VCS_WC_MODIFIED}" in - 1) VCS_WC_MODIFIED="true" ;; - 0) VCS_WC_MODIFIED="false" ;; - esac - cat > "${TARGETFILE}" << EOF -# ${GENERATED_HEADER} - -VCS_TYPE=${VCS_TYPE} -VCS_BASENAME=${VCS_BASENAME} -VCS_UUID=${VCS_UUID} -VCS_NUM=${VCS_NUM} -VCS_DATE=${VCS_DATE} -VCS_BRANCH=${VCS_BRANCH} -VCS_TAG=${VCS_TAG} -VCS_TICK=${VCS_TICK} -VCS_EXTRA=${VCS_EXTRA} - -VCS_ACTION_STAMP=${VCS_ACTION_STAMP} -VCS_FULL_HASH=${VCS_FULL_HASH} -VCS_SHORT_HASH=${VCS_SHORT_HASH} - -VCS_WC_MODIFIED=${VCS_WC_MODIFIED} -EOF -} - -# For m4 output -m4Output() { - cat > "${TARGETFILE}" << EOF -dnl ${GENERATED_HEADER} -define(\`VCS_TYPE', \`${VCS_TYPE}')dnl -define(\`VCS_BASENAME', \`${VCS_BASENAME}')dnl -define(\`VCS_UUID', \`${VCS_UUID}')dnl -define(\`VCS_NUM', \`${VCS_NUM}')dnl -define(\`VCS_DATE', \`${VCS_DATE}')dnl -define(\`VCS_BRANCH', \`${VCS_BRANCH}')dnl -define(\`VCS_TAG', \`${VCS_TAG}')dnl -define(\`VCS_TICK', \`${VCS_TICK}')dnl -define(\`VCS_EXTRA', \`${VCS_EXTRA}')dnl -define(\`VCS_ACTIONSTAMP', \`${VCS_ACTION_STAMP}')dnl -define(\`VCS_FULLHASH', \`${VCS_FULL_HASH}')dnl -define(\`VCS_SHORTHASH', \`${VCS_SHORT_HASH}')dnl -define(\`VCS_WC_MODIFIED', \`${VCS_WC_MODIFIED}')dnl -EOF -} - -# For (La)TeX output -texOutput() { - case "${VCS_WC_MODIFIED}" in - 0) VCS_WC_MODIFIED="false" ;; - 1) VCS_WC_MODIFIED="true" ;; - esac - cat > "${TARGETFILE}" << EOF -% ${GENERATED_HEADER} -\def \vcsType {${VCS_TYPE}} -\def \vcsBasename {${VCS_BASENAME}} -\def \vcsUUID {${VCS_UUID}} -\def \vcsNum {${VCS_NUM}} -\def \vcsDate {${VCS_DATE}} -\def \vcsBranch {${VCS_BRANCH}} -\def \vcsTag {${VCS_TAG}} -\def \vcsTick {${VCS_TICK}} -\def \vcsExtra {${VCS_EXTRA}} -\def \vcsACTIONSTAMP {${VCS_ACTION_STAMP}} -\def \vcsFullHash {${VCS_FULL_HASH}} -\def \vcsShortHash {${VCS_SHORT_HASH}} -\def \vcsWCModified {${VCS_WC_MODIFIED}} -\endinput -EOF -} - -# For scheme output -schemeOutput() { - case "${VCS_WC_MODIFIED}" in - 0) VCS_WC_MODIFIED="#f" ;; - 1) VCS_WC_MODIFIED="#t" ;; - esac - cat > "${TARGETFILE}" << EOF -;; ${GENERATED_HEADER} -(define VCS_TYPE "${VCS_TYPE}") -(define VCS_BASENAME "${VCS_BASENAME}") -(define VCS_UUID "${VCS_UUID}") -(define VCS_NUM ${VCS_NUM}) -(define VCS_DATE "${VCS_DATE}") -(define VCS_BRANCH "${VCS_BRANCH}") -(define VCS_TAG "${VCS_TAG}") -(define VCS_TICK ${VCS_TICK}) -(define VCS_EXTRA "${VCS_EXTRA}") - -(define VCS_ACTION_STAMP "${VCS_ACTION_STAMP}") -(define VCS_FULL_HASH "${VCS_FULL_HASH}") -(define VCS_SHORT_HASH "${VCS_SHORT_HASH}") - -(define VCS_WC_MODIFIED ${VCS_WC_MODIFIED}) -;; end -EOF -} - -# For clojure output -clojureOutput() { - case "${VCS_WC_MODIFIED}" in - 0) VCS_WC_MODIFIED="false" ;; - 1) VCS_WC_MODIFIED="true" ;; - esac - cat > "${TARGETFILE}" << EOF -;; ${GENERATED_HEADER} -(def VCS_TYPE "${VCS_TYPE}") -(def VCS_BASENAME "${VCS_BASENAME}") -(def VCS_UUID "${VCS_UUID}") -(def VCS_NUM ${VCS_NUM}) -(def VCS_DATE "${VCS_DATE}") -(def VCS_BRANCH "${VCS_BRANCH}") -(def VCS_TAG "${VCS_TAG}") -(def VCS_TICK ${VCS_TICK}) -(def VCS_EXTRA "${VCS_EXTRA}") - -(def VCS_ACTION_STAMP "${VCS_ACTION_STAMP}") -(def VCS_FULL_HASH "${VCS_FULL_HASH}") -(def VCS_SHORT_HASH "${VCS_SHORT_HASH}") - -(def VCS_WC_MODIFIED ${VCS_WC_MODIFIED}) -;; end -EOF -} - -# For rpm spec file output -rpmOutput() { - cat > "${TARGETFILE}" << EOF -# ${GENERATED_HEADER} -$([ "${VCS_TYPE}" ] && echo "%define vcs_type ${VCS_TYPE}") -$([ "${VCS_BASENAME}" ] && echo "%define vcs_basename ${VCS_BASENAME}") -$([ "${VCS_UUID}" ] && echo "%define vcs_uuid ${VCS_UUID}") -$([ "${VCS_NUM}" ] && echo "%define vcs_num ${VCS_NUM}") -$([ "${VCS_DATE}" ] && echo "%define vcs_date ${VCS_DATE}") -$([ "${VCS_BRANCH}" ] && echo "%define vcs_branch ${VCS_BRANCH}") -$([ "${VCS_TAG}" ] && echo "%define vcs_tag ${VCS_TAG}") -$([ "${VCS_TICK}" ] && echo "%define vcs_tick ${VCS_TICK}") -$([ "${VCS_EXTRA}" ] && echo "%define vcs_extra ${VCS_EXTRA}") - -$([ "${VCS_ACTION_STAMP}" ] && echo "%define vcs_action_stamp ${VCS_ACTION_STAMP}") -$([ "${VCS_FULL_HASH}" ] && echo "%define vcs_full_hash ${VCS_FULL_HASH}") -$([ "${VCS_SHORT_HASH}" ] && echo "%define vcs_short_hash ${VCS_SHORT_HASH}") - -$([ "${VCS_WC_MODIFIED}" ] && echo "%define vcs_wc_modified ${VCS_WC_MODIFIED}") -# end -EOF -} - -# shellcheck disable=SC2155,SC2039 -hppOutput() { - local NAMESPACE="$(echo "${VCS_BASENAME}" | sed -e 's:_::g' | tr '[:lower:]' '[:upper:]')" - cat > "${TARGETFILE}" << EOF -/* ${GENERATED_HEADER} */ - -#ifndef ${NAMESPACE}_AUTOREVISION_H -#define ${NAMESPACE}_AUTOREVISION_H - -#include - -namespace $(echo "${NAMESPACE}" | tr '[:upper:]' '[:lower:]') -{ - const std::string VCS_TYPE = "${VCS_TYPE}"; - const std::string VCS_BASENAME = "${VCS_BASENAME}"; - const std::string VCS_UUID = "${VCS_UUID}"; - const int VCS_NUM = ${VCS_NUM}; - const std::string VCS_DATE = "${VCS_DATE}"; - const std::string VCS_BRANCH = "${VCS_BRANCH}"; - const std::string VCS_TAG = "${VCS_TAG}"; - const int VCS_TICK = ${VCS_TICK}; - const std::string VCS_EXTRA = "${VCS_EXTRA}"; - - const std::string VCS_ACTION_STAMP = "${VCS_ACTION_STAMP}"; - const std::string VCS_FULL_HASH = "${VCS_FULL_HASH}"; - const std::string VCS_SHORT_HASH = "${VCS_SHORT_HASH}"; - - const int VCS_WC_MODIFIED = ${VCS_WC_MODIFIED}; -} - -#endif - -/* end */ -EOF -} - -matlabOutput() { - case "${VCS_WC_MODIFIED}" in - 0) VCS_WC_MODIFIED="FALSE" ;; - 1) VCS_WC_MODIFIED="TRUE" ;; - esac - cat > "${TARGETFILE}" << EOF -% ${GENERATED_HEADER} - -VCS_TYPE = '${VCS_TYPE}'; -VCS_BASENAME = '${VCS_BASENAME}'; -VCS_UUID = '${VCS_UUID}'; -VCS_NUM = ${VCS_NUM}; -VCS_DATE = '${VCS_DATE}'; -VCS_BRANCH = '${VCS_BRANCH}'; -VCS_TAG = '${VCS_TAG}'; -VCS_TICK = ${VCS_TICK}; -VCS_EXTRA = '${VCS_EXTRA}'; - -VCS_ACTION_STAMP = '${VCS_ACTION_STAMP}'; -VCS_FULL_HASH = '${VCS_FULL_HASH}'; -VCS_SHORT_HASH = '${VCS_SHORT_HASH}'; - -VCS_WC_MODIFIED = ${VCS_WC_MODIFIED}; - -% end -EOF -} - -octaveOutput() { - cat > "${TARGETFILE}" << EOF -% ${GENERATED_HEADER} - -VCS_TYPE = '${VCS_TYPE}'; -VCS_BASENAME = '${VCS_BASENAME}'; -VCS_UUID = '${VCS_UUID}'; -VCS_NUM = ${VCS_NUM}; -VCS_DATE = '${VCS_DATE}'; -VCS_BRANCH = '${VCS_BRANCH}'; -VCS_TAG = '${VCS_TAG}'; -VCS_TICK = ${VCS_TICK}; -VCS_EXTRA = '${VCS_EXTRA}'; - -VCS_ACTION_STAMP = '${VCS_ACTION_STAMP}'; -VCS_FULL_HASH = '${VCS_FULL_HASH}'; -VCS_SHORT_HASH = '${VCS_SHORT_HASH}'; - -VCS_WC_MODIFIED = ${VCS_WC_MODIFIED}; - -% end -EOF -} - -cmakeOutput() { - cat > "${TARGETFILE}" << EOF -# ${GENERATED_HEADER} - -set(VCS_TYPE ${VCS_TYPE}) -set(VCS_BASENAME ${VCS_BASENAME}) -set(VCS_UUID ${VCS_UUID}) -set(VCS_NUM ${VCS_NUM}) -set(VCS_DATE ${VCS_DATE}) -set(VCS_BRANCH ${VCS_BRANCH}) -set(VCS_TAG ${VCS_TAG}) -set(VCS_TICK ${VCS_TICK}) -set(VCS_EXTRA ${VCS_EXTRA}) - -set(VCS_ACTION_STAMP ${VCS_ACTION_STAMP}) -set(VCS_FULL_HASH ${VCS_FULL_HASH}) -set(VCS_SHORT_HASH ${VCS_SHORT_HASH}) - -set(VCS_WC_MODIFIED ${VCS_WC_MODIFIED}) - -# end -EOF -} - - -# Helper functions -# Count path segments -# shellcheck disable=SC2039 -pathSegment() { - local pathz="${1}" - local depth="0" - - if [ ! -z "${pathz}" ]; then - # Continue until we are at / or there are no path separators left. - while [ ! "${pathz}" = "/" ] && [ ! "${pathz}" = "$(echo "${pathz}" | sed -e 's:/::')" ]; do - pathz="$(dirname "${pathz}")" - depth="$((depth+1))" - done - fi - echo "${depth}" -} - -# Largest of four numbers -# shellcheck disable=SC2039 -multiCompare() { - local larger="${1}" - local numA="${2}" - local numB="${3}" - local numC="${4}" - - [ "${numA}" -gt "${larger}" ] && larger="${numA}" - [ "${numB}" -gt "${larger}" ] && larger="${numB}" - [ "${numC}" -gt "${larger}" ] && larger="${numC}" - echo "${larger}" -} - -# Test for repositories -# shellcheck disable=SC2155,SC2039 -repoTest() { - REPONUM="0" - if [ ! -z "$(git rev-parse HEAD 2>/dev/null)" ]; then - local gitPath="$(git rev-parse --show-toplevel)" - local gitDepth="$(pathSegment "${gitPath}")" - REPONUM="$((REPONUM+1))" - else - local gitDepth="0" - fi - if [ ! -z "$(hg root 2>/dev/null)" ]; then - local hgPath="$(hg root 2>/dev/null)" - local hgDepth="$(pathSegment "${hgPath}")" - REPONUM="$((REPONUM+1))" - else - local hgDepth="0" - fi - if [ ! -z "$(bzr root 2>/dev/null)" ]; then - local bzrPath="$(bzr root 2>/dev/null)" - local bzrDepth="$(pathSegment "${bzrPath}")" - REPONUM="$((REPONUM+1))" - else - local bzrDepth="0" - fi - if [ ! -z "$(svn info 2>/dev/null)" ]; then - local stringz="" - local stringx="" - local svnPath="$(svn info --xml | sed -n -e "s:${stringz}::" -e "s:${stringx}::p")" - # An old enough svn will not be able give us a path; default - # to 1 for that case. - if [ -z "${svnPath}" ]; then - local svnDepth="1" - else - local svnDepth="$(pathSegment "${svnPath}")" - fi - REPONUM="$((REPONUM+1))" - else - local svnDepth="0" - fi - - # Do not do more work then we have to. - if [ "${REPONUM}" = "0" ]; then - return - fi - - # Figure out which repo is the deepest and use it. - local wonRepo="$(multiCompare "${gitDepth}" "${hgDepth}" "${bzrDepth}" "${svnDepth}")" - if [ "${wonRepo}" = "${gitDepth}" ]; then - gitRepo - elif [ "${wonRepo}" = "${hgDepth}" ]; then - hgRepo - elif [ "${wonRepo}" = "${bzrDepth}" ]; then - bzrRepo - elif [ "${wonRepo}" = "${svnDepth}" ]; then - svnRepo - fi -} - - - -# Detect which repos we are in and gather data. -# shellcheck source=/dev/null -if [ -f "${CACHEFILE}" ] && [ "${CACHEFORCE}" = "1" ]; then - # When requested only read from the cache to populate our symbols. - . "${CACHEFILE}" -else - # If a value is not set through the environment set VCS_EXTRA to nothing. - : "${VCS_EXTRA:=""}" - repoTest - - if [ -f "${CACHEFILE}" ] && [ "${REPONUM}" = "0" ]; then - # We are not in a repo; try to use a previously generated cache to populate our symbols. - . "${CACHEFILE}" - # Do not overwrite the cache if we know we are not going to write anything new. - CACHEFORCE="1" - elif [ "${REPONUM}" = "0" ]; then - echo "error: No repo or cache detected." 1>&2 - exit 1 - fi -fi - - -# -s output is handled here. -if [ ! -z "${VAROUT}" ]; then - if [ "${VAROUT}" = "VCS_TYPE" ]; then - echo "${VCS_TYPE}" - elif [ "${VAROUT}" = "VCS_BASENAME" ]; then - echo "${VCS_BASENAME}" - elif [ "${VAROUT}" = "VCS_NUM" ]; then - echo "${VCS_NUM}" - elif [ "${VAROUT}" = "VCS_DATE" ]; then - echo "${VCS_DATE}" - elif [ "${VAROUT}" = "VCS_BRANCH" ]; then - echo "${VCS_BRANCH}" - elif [ "${VAROUT}" = "VCS_TAG" ]; then - echo "${VCS_TAG}" - elif [ "${VAROUT}" = "VCS_TICK" ]; then - echo "${VCS_TICK}" - elif [ "${VAROUT}" = "VCS_FULL_HASH" ]; then - echo "${VCS_FULL_HASH}" - elif [ "${VAROUT}" = "VCS_SHORT_HASH" ]; then - echo "${VCS_SHORT_HASH}" - elif [ "${VAROUT}" = "VCS_WC_MODIFIED" ]; then - echo "${VCS_WC_MODIFIED}" - elif [ "${VAROUT}" = "VCS_ACTION_STAMP" ]; then - echo "${VCS_ACTION_STAMP}" - else - echo "error: Not a valid output symbol." 1>&2 - exit 1 - fi -fi - - -# Detect requested output type and use it. -if [ ! -z "${AFILETYPE}" ]; then - if [ "${AFILETYPE}" = "c" ]; then - cOutput - elif [ "${AFILETYPE}" = "h" ]; then - hOutput - elif [ "${AFILETYPE}" = "xcode" ]; then - xcodeOutput - elif [ "${AFILETYPE}" = "swift" ]; then - swiftOutput - elif [ "${AFILETYPE}" = "sh" ]; then - shOutput - elif [ "${AFILETYPE}" = "py" ] || [ "${AFILETYPE}" = "python" ]; then - pyOutput - elif [ "${AFILETYPE}" = "pl" ] || [ "${AFILETYPE}" = "perl" ]; then - plOutput - elif [ "${AFILETYPE}" = "lua" ]; then - luaOutput - elif [ "${AFILETYPE}" = "php" ]; then - phpOutput - elif [ "${AFILETYPE}" = "ini" ]; then - iniOutput - elif [ "${AFILETYPE}" = "js" ]; then - jsOutput - elif [ "${AFILETYPE}" = "json" ]; then - jsonOutput - elif [ "${AFILETYPE}" = "java" ]; then - javaOutput - elif [ "${AFILETYPE}" = "javaprop" ]; then - javapropOutput - elif [ "${AFILETYPE}" = "tex" ]; then - texOutput - elif [ "${AFILETYPE}" = "m4" ]; then - m4Output - elif [ "${AFILETYPE}" = "scheme" ]; then - schemeOutput - elif [ "${AFILETYPE}" = "clojure" ]; then - clojureOutput - elif [ "${AFILETYPE}" = "rpm" ]; then - rpmOutput - elif [ "${AFILETYPE}" = "hpp" ]; then - hppOutput - elif [ "${AFILETYPE}" = "matlab" ]; then - matlabOutput - elif [ "${AFILETYPE}" = "octave" ]; then - octaveOutput - elif [ "${AFILETYPE}" = "cmake" ]; then - cmakeOutput - else - echo "error: Not a valid output type." 1>&2 - exit 1 - fi -fi - - -# If requested, make a cache file. -if [ ! -z "${CACHEFILE}" ] && [ ! "${CACHEFORCE}" = "1" ]; then - TARGETFILE="${CACHEFILE}.tmp" - shOutput - - # Check to see if there have been any actual changes. - if [ ! -f "${CACHEFILE}" ]; then - mv -f "${CACHEFILE}.tmp" "${CACHEFILE}" - elif cmp -s "${CACHEFILE}.tmp" "${CACHEFILE}"; then - rm -f "${CACHEFILE}.tmp" - else - mv -f "${CACHEFILE}.tmp" "${CACHEFILE}" - fi -fi diff --git a/cmake-build-debug/changelog.txt b/cmake-build-debug/changelog.txt deleted file mode 100644 index 1eb4e2a..0000000 --- a/cmake-build-debug/changelog.txt +++ /dev/null @@ -1,55 +0,0 @@ -* Mon Sep 28 2020 yangwei yangwei@iie.ac.cn - - hash: 8a631fe724c0d095e6942cd8d24062ef117005a3 - - commit: - - ✨feat: 使用cmake编译,并支持自动版本号 - -* Fri Sep 25 2020 yangwei yangwei@iie.ac.cn - - hash: 6429a20dd485d4a44f2cfa1fb169fb80e35b90f2 - - commit: - - 🎈perf(tcpdump.c): - - - 优化greedy模式,放弃使用MESA_dump_seek_to_inner拷贝并构造虚拟的MAC头,使用pcap_compile_nopcap构造DLT_RAW类型的bpf,并调用MESA_net_jump_to_layer_greedy找到最内层IP地址直接使用cbpf进行匹配 - -* Tue Sep 22 2020 yangwei yangwei@iie.ac.cn - - hash: dd465b375a46ed892a69621fdcdac8657973e5db - - commit: - - 🔧build(configure): configure文件增加可执行权限 - -* Tue Sep 22 2020 yangwei yangwei@iie.ac.cn - - hash: e60f527d0b99c7e2ce840e413a1599e38055a97a - - commit: - - 🐎ci(gitignore): 增加gitignore文件 - -* Tue Dec 4 2018 杨威 yangwei@iie.ac.cn - - hash: 5427b568de89bcca1bc5a6dcd2a5cf724704a1c3 - - commit: - - Update tcpdump.c:835 查找到内层为IPv6时头部地址错误的笔误 -* Tue Dec 4 2018 杨威 yangwei@iie.ac.cn - - hash: 13e7449232df740f18eb58336a29cc3ebd35304d - - commit: - - Update tcpdump.c:830 增加greedy数据拷贝越界检查 -* Fri Nov 16 2018 lijia lijia01@iie.ac.cn - - hash: e3fca62644610e1fcaf5c36f411360ca4c868e6b - - commit: - - 修复ip分片跳转BUG. - -* Fri Nov 16 2018 lijia lijia01@iie.ac.cn - - hash: e601cdb8cab0aca61280be33381c4fdc793d33cb - - commit: - - 完善过滤最内层数据包处理逻辑. - -* Thu Nov 15 2018 lijia lijia01@iie.ac.cn - - hash: 42956e1602c569841f15f37ea83faf9af3bd1b25 - - commit: - - 增加 -g参数, 并通过控制连接传输给sapp. - -* Wed Nov 14 2018 lijia lijia01@iie.ac.cn - - hash: ffef9008ed60102670127ae9ee024cbbd293abff - - commit: - - 支持 -g参数, 可以按最内层IP,PORT过滤, 支持BPF过滤规则. - -* Thu Oct 18 2018 lijia lijia01@iie.ac.cn - - hash: a6a34b3ba4b4f8bcf78456687240cace0641a66b - - commit: - - create project - diff --git a/cmake-build-debug/checksum.o b/cmake-build-debug/checksum.o deleted file mode 100644 index 889e96b..0000000 Binary files a/cmake-build-debug/checksum.o and /dev/null differ diff --git a/cmake-build-debug/cmake_install.cmake b/cmake-build-debug/cmake_install.cmake deleted file mode 100644 index 627d4e4..0000000 --- a/cmake-build-debug/cmake_install.cmake +++ /dev/null @@ -1,53 +0,0 @@ -# Install script for directory: /home/yangwei/tcpdump_mesa - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "/opt/MESA/") -endif() -string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") - -# Set the install configuration name. -if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) - if(BUILD_TYPE) - string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" - CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") - else() - set(CMAKE_INSTALL_CONFIG_NAME "Debug") - endif() - message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") -endif() - -# Set the component getting installed. -if(NOT CMAKE_INSTALL_COMPONENT) - if(COMPONENT) - message(STATUS "Install component: \"${COMPONENT}\"") - set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") - else() - set(CMAKE_INSTALL_COMPONENT) - endif() -endif() - -# Install shared libraries without execute permission? -if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) - set(CMAKE_INSTALL_SO_NO_EXE "0") -endif() - -# Is this installation the result of a crosscompile? -if(NOT DEFINED CMAKE_CROSSCOMPILING) - set(CMAKE_CROSSCOMPILING "FALSE") -endif() - -if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xEXECUTABLEx" OR NOT CMAKE_INSTALL_COMPONENT) - file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/./bin" TYPE PROGRAM FILES "/home/yangwei/tcpdump_mesa/cmake-build-debug/tcpdump_mesa") -endif() - -if(CMAKE_INSTALL_COMPONENT) - set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") -else() - set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") -endif() - -string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT - "${CMAKE_INSTALL_MANIFEST_FILES}") -file(WRITE "/home/yangwei/tcpdump_mesa/cmake-build-debug/${CMAKE_INSTALL_MANIFEST}" - "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/cmake-build-debug/config.h b/cmake-build-debug/config.h deleted file mode 100644 index 30c8b1d..0000000 --- a/cmake-build-debug/config.h +++ /dev/null @@ -1,395 +0,0 @@ -/* config.h. Generated from config.h.in by configure. */ -/* config.h.in. Generated from configure.in by autoheader. */ - -/* define if you want to build the possibly-buggy SMB printer */ -#define ENABLE_SMB 1 - -/* Define to 1 if you have the `alarm' function. */ -#define HAVE_ALARM 1 - -/* Define to 1 if you have the `bpf_dump' function. */ -#define HAVE_BPF_DUMP 1 - -/* capsicum support available */ -/* #undef HAVE_CAPSICUM */ - -/* Define to 1 if you have the `cap_enter' function. */ -/* #undef HAVE_CAP_ENTER */ - -/* Define to 1 if you have the `cap_ioctls_limit' function. */ -/* #undef HAVE_CAP_IOCTLS_LIMIT */ - -/* Define to 1 if you have the header file. */ -/* #undef HAVE_CAP_NG_H */ - -/* Define to 1 if you have the `cap_rights_limit' function. */ -/* #undef HAVE_CAP_RIGHTS_LIMIT */ - -/* Define to 1 if you have the declaration of `ether_ntohost', and to 0 if you - don't. */ -#define HAVE_DECL_ETHER_NTOHOST 1 - -/* define if you have the dnet_htoa function */ -/* #undef HAVE_DNET_HTOA */ - -/* Define to 1 if you have the `ether_ntohost' function. */ -#define HAVE_ETHER_NTOHOST 1 - -/* Define to 1 if you have the `EVP_CIPHER_CTX_new' function. */ -#define HAVE_EVP_CIPHER_CTX_NEW 1 - -/* Define to 1 if you have the header file. */ -#define HAVE_FCNTL_H 1 - -/* Define to 1 if you have the `fork' function. */ -#define HAVE_FORK 1 - -/* Define to 1 if you have the `getopt_long' function. */ -#define HAVE_GETOPT_LONG 1 - -/* define if you have getrpcbynumber() */ -#define HAVE_GETRPCBYNUMBER 1 - -/* Define to 1 if you have the header file. */ -#define HAVE_INTTYPES_H 1 - -/* Define to 1 if you have the `cap-ng' library (-lcap-ng). */ -/* #undef HAVE_LIBCAP_NG */ - -/* Define to 1 if you have the `crypto' library (-lcrypto). */ -#define HAVE_LIBCRYPTO 1 - -/* Define to 1 if you have the `rpc' library (-lrpc). */ -/* #undef HAVE_LIBRPC */ - -/* Define to 1 if you have the header file. */ -#define HAVE_MEMORY_H 1 - -/* Define to 1 if you have the header file. */ -/* #undef HAVE_NETDNET_DNETDB_H */ - -/* define if you have a dnet_htoa declaration in */ -/* #undef HAVE_NETDNET_DNETDB_H_DNET_HTOA */ - -/* Define to 1 if you have the header file. */ -#define HAVE_NETINET_ETHER_H 1 - -/* Define to 1 if you have the header file. */ -#define HAVE_NETINET_IF_ETHER_H 1 - -/* Define to 1 if you have the header file. */ -/* #undef HAVE_NET_IF_PFLOG_H */ - -/* Define to 1 if you have the header file. */ -/* #undef HAVE_NET_PFVAR_H */ - -/* Define to 1 if you have the `openat' function. */ -#define HAVE_OPENAT 1 - -/* Define to 1 if you have the header file. */ -#define HAVE_OPENSSL_EVP_H 1 - -/* define if the OS provides AF_INET6 and struct in6_addr */ -#define HAVE_OS_IPV6_SUPPORT 1 - -/* if there's an os_proto.h for this platform, to use additional prototypes */ -/* #undef HAVE_OS_PROTO_H */ - -/* Define to 1 if you have the header file. */ -#define HAVE_PCAP_BLUETOOTH_H 1 - -/* Define to 1 if you have the `pcap_breakloop' function. */ -#define HAVE_PCAP_BREAKLOOP 1 - -/* Define to 1 if you have the `pcap_create' function. */ -#define HAVE_PCAP_CREATE 1 - -/* define if libpcap has pcap_datalink_name_to_val() */ -#define HAVE_PCAP_DATALINK_NAME_TO_VAL 1 - -/* define if libpcap has pcap_datalink_val_to_description() */ -#define HAVE_PCAP_DATALINK_VAL_TO_DESCRIPTION 1 - -/* define if libpcap has pcap_debug */ -/* #undef HAVE_PCAP_DEBUG */ - -/* Define to 1 if you have the `pcap_dump_flush' function. */ -#define HAVE_PCAP_DUMP_FLUSH 1 - -/* define if libpcap has pcap_dump_ftell() */ -#define HAVE_PCAP_DUMP_FTELL 1 - -/* Define to 1 if you have the `pcap_findalldevs' function. */ -#define HAVE_PCAP_FINDALLDEVS 1 - -/* Define to 1 if you have the `pcap_free_datalinks' function. */ -#define HAVE_PCAP_FREE_DATALINKS 1 - -/* Define to 1 if the system has the type `pcap_if_t'. */ -#define HAVE_PCAP_IF_T 1 - -/* Define to 1 if you have the `pcap_lib_version' function. */ -#define HAVE_PCAP_LIB_VERSION 1 - -/* define if libpcap has pcap_list_datalinks() */ -#define HAVE_PCAP_LIST_DATALINKS 1 - -/* Define to 1 if you have the header file. */ -#define HAVE_PCAP_NFLOG_H 1 - -/* Define to 1 if you have the `pcap_setdirection' function. */ -#define HAVE_PCAP_SETDIRECTION 1 - -/* Define to 1 if you have the `pcap_set_datalink' function. */ -#define HAVE_PCAP_SET_DATALINK 1 - -/* Define to 1 if you have the `pcap_set_immediate_mode' function. */ -#define HAVE_PCAP_SET_IMMEDIATE_MODE 1 - -/* Define to 1 if you have the `pcap_set_optimizer_debug' function. */ -/* #undef HAVE_PCAP_SET_OPTIMIZER_DEBUG */ - -/* Define to 1 if you have the `pcap_set_parser_debug' function. */ -/* #undef HAVE_PCAP_SET_PARSER_DEBUG */ - -/* Define to 1 if you have the `pcap_set_tstamp_precision' function. */ -#define HAVE_PCAP_SET_TSTAMP_PRECISION 1 - -/* Define to 1 if you have the `pcap_set_tstamp_type' function. */ -#define HAVE_PCAP_SET_TSTAMP_TYPE 1 - -/* Define to 1 if you have the header file. */ -#define HAVE_PCAP_USB_H 1 - -/* define if libpcap has pcap_version */ -/* #undef HAVE_PCAP_VERSION */ - -/* Define to 1 if you have the `pfopen' function. */ -/* #undef HAVE_PFOPEN */ - -/* Define to 1 if you have the header file. */ -/* #undef HAVE_RPC_RPCENT_H */ - -/* Define to 1 if you have the header file. */ -#define HAVE_RPC_RPC_H 1 - -/* Define to 1 if you have the `setlinebuf' function. */ -#define HAVE_SETLINEBUF 1 - -/* Define to 1 if you have the `sigaction' function. */ -#define HAVE_SIGACTION 1 - -/* Define to 1 if you have the `sigset' function. */ -/* #undef HAVE_SIGSET */ - -/* Define to 1 if you have the `snprintf' function. */ -#define HAVE_SNPRINTF 1 - -/* if struct sockaddr has the sa_len member */ -/* #undef HAVE_SOCKADDR_SA_LEN */ - -/* Define to 1 if you have the header file. */ -#define HAVE_STDINT_H 1 - -/* Define to 1 if you have the header file. */ -#define HAVE_STDLIB_H 1 - -/* Define to 1 if you have the `strdup' function. */ -#define HAVE_STRDUP 1 - -/* Define to 1 if you have the `strftime' function. */ -#define HAVE_STRFTIME 1 - -/* Define to 1 if you have the header file. */ -#define HAVE_STRINGS_H 1 - -/* Define to 1 if you have the header file. */ -#define HAVE_STRING_H 1 - -/* Define to 1 if you have the `strlcat' function. */ -/* #undef HAVE_STRLCAT */ - -/* Define to 1 if you have the `strlcpy' function. */ -/* #undef HAVE_STRLCPY */ - -/* Define to 1 if you have the `strsep' function. */ -#define HAVE_STRSEP 1 - -/* Define to 1 if the system has the type `struct ether_addr'. */ -/* #undef HAVE_STRUCT_ETHER_ADDR */ - -/* Define to 1 if you have the header file. */ -#define HAVE_SYS_STAT_H 1 - -/* Define to 1 if you have the header file. */ -#define HAVE_SYS_TYPES_H 1 - -/* Define to 1 if the system has the type `uintptr_t'. */ -#define HAVE_UINTPTR_T 1 - -/* Define to 1 if you have the header file. */ -#define HAVE_UNISTD_H 1 - -/* Define to 1 if you have the `vfork' function. */ -#define HAVE_VFORK 1 - -/* Define to 1 if you have the `vfprintf' function. */ -#define HAVE_VFPRINTF 1 - -/* Define to 1 if you have the `vsnprintf' function. */ -#define HAVE_VSNPRINTF 1 - -/* define if libpcap has yydebug */ -/* #undef HAVE_YYDEBUG */ - -/* define if your compiler has __attribute__ */ -#define HAVE___ATTRIBUTE__ 1 - -/* if unaligned access fails */ -/* #undef LBL_ALIGN */ - -/* Define to 1 if netinet/ether.h declares `ether_ntohost' */ -#define NETINET_ETHER_H_DECLARES_ETHER_NTOHOST /**/ - -/* Define to 1 if netinet/if_ether.h declares `ether_ntohost' */ -/* #undef NETINET_IF_ETHER_H_DECLARES_ETHER_NTOHOST */ - -/* Define to the address where bug reports for this package should be sent. */ -#define PACKAGE_BUGREPORT "" - -/* Define to the full name of this package. */ -#define PACKAGE_NAME "" - -/* Define to the full name and version of this package. */ -#define PACKAGE_STRING "" - -/* Define to the one symbol short name of this package. */ -#define PACKAGE_TARNAME "" - -/* Define to the home page for this package. */ -#define PACKAGE_URL "" - -/* Define to the version of this package. */ -#define PACKAGE_VERSION "" - -/* define if the platform doesn't define PRId64 */ -/* #undef PRId64 */ - -/* define if the platform doesn't define PRIo64 */ -/* #undef PRIo64 */ - -/* define if the platform doesn't define PRIx64 */ -/* #undef PRIu64 */ - -/* define if the platform doesn't define PRIu64 */ -/* #undef PRIx64 */ - -/* Define as the return type of signal handlers (`int' or `void'). */ -#define RETSIGTYPE void - -/* return value of signal handlers */ -#define RETSIGVAL /**/ - -/* Define to 1 if you have the ANSI C header files. */ -#define STDC_HEADERS 1 - -/* Define to 1 if you can safely include both and . */ -#define TIME_WITH_SYS_TIME 1 - -/* define if you have ether_ntohost() and it works */ -#define USE_ETHER_NTOHOST 1 - -/* Define if you enable support for libsmi */ -/* #undef USE_LIBSMI */ - -/* define if should chroot when dropping privileges */ -/* #undef WITH_CHROOT */ - -/* define if should drop privileges by default */ -/* #undef WITH_USER */ - -/* get BSD semantics on Irix */ -/* #undef _BSD_SIGNALS */ - -/* define on AIX to get certain functions */ -/* #undef _SUN */ - -/* Define for Solaris 2.5.1 so the uint32_t typedef from , - , or is not used. If the typedef were allowed, the - #define below would cause a syntax error. */ -/* #undef _UINT32_T */ - -/* Define for Solaris 2.5.1 so the uint64_t typedef from , - , or is not used. If the typedef were allowed, the - #define below would cause a syntax error. */ -/* #undef _UINT64_T */ - -/* Define for Solaris 2.5.1 so the uint8_t typedef from , - , or is not used. If the typedef were allowed, the - #define below would cause a syntax error. */ -/* #undef _UINT8_T */ - -/* define if your compiler allows __attribute__((format)) without a warning */ -#define __ATTRIBUTE___FORMAT_OK 1 - -/* define if your compiler allows __attribute__((format)) to be applied to - function pointers */ -#define __ATTRIBUTE___FORMAT_OK_FOR_FUNCTION_POINTERS 1 - -/* define if your compiler allows __attribute__((noreturn)) to be applied to - function pointers */ -#define __ATTRIBUTE___NORETURN_OK_FOR_FUNCTION_POINTERS 1 - -/* to handle Ultrix compilers that don't support const in prototypes */ -/* #undef const */ - -/* Define as token for inline if inlining supported */ -#define inline inline - -/* Define to the type of a signed integer type of width exactly 16 bits if - such a type exists and the standard includes do not define it. */ -/* #undef int16_t */ - -/* Define to the type of a signed integer type of width exactly 32 bits if - such a type exists and the standard includes do not define it. */ -/* #undef int32_t */ - -/* Define to the type of a signed integer type of width exactly 64 bits if - such a type exists and the standard includes do not define it. */ -/* #undef int64_t */ - -/* Define to the type of a signed integer type of width exactly 8 bits if such - a type exists and the standard includes do not define it. */ -/* #undef int8_t */ - -/* Define to `uint16_t' if u_int16_t not defined. */ -/* #undef u_int16_t */ - -/* Define to `uint32_t' if u_int32_t not defined. */ -/* #undef u_int32_t */ - -/* Define to `uint64_t' if u_int64_t not defined. */ -/* #undef u_int64_t */ - -/* Define to `uint8_t' if u_int8_t not defined. */ -/* #undef u_int8_t */ - -/* Define to the type of an unsigned integer type of width exactly 16 bits if - such a type exists and the standard includes do not define it. */ -/* #undef uint16_t */ - -/* Define to the type of an unsigned integer type of width exactly 32 bits if - such a type exists and the standard includes do not define it. */ -/* #undef uint32_t */ - -/* Define to the type of an unsigned integer type of width exactly 64 bits if - such a type exists and the standard includes do not define it. */ -/* #undef uint64_t */ - -/* Define to the type of an unsigned integer type of width exactly 8 bits if - such a type exists and the standard includes do not define it. */ -/* #undef uint8_t */ - -/* Define to the type of an unsigned integer type wide enough to hold a - pointer, if such a type exists, and if the system does not define it. */ -/* #undef uintptr_t */ diff --git a/cmake-build-debug/config.log b/cmake-build-debug/config.log deleted file mode 100644 index 258de38..0000000 --- a/cmake-build-debug/config.log +++ /dev/null @@ -1,3998 +0,0 @@ -This file contains any messages produced by compilers while -running configure, to aid debugging if configure makes a mistake. - -It was created by configure, which was -generated by GNU Autoconf 2.69. Invocation command line was - - $ ../src/configure - -## --------- ## -## Platform. ## -## --------- ## - -hostname = localhost.localdomain -uname -m = x86_64 -uname -r = 3.10.0-693.el7.x86_64 -uname -s = Linux -uname -v = #1 SMP Tue Aug 22 21:09:27 UTC 2017 - -/usr/bin/uname -p = x86_64 -/bin/uname -X = unknown - -/bin/arch = x86_64 -/usr/bin/arch -k = unknown -/usr/convex/getsysinfo = unknown -/usr/bin/hostinfo = unknown -/bin/machine = unknown -/usr/bin/oslevel = unknown -/bin/universe = unknown - -PATH: /home/yangwei/.vscode-server/bin/e5e9e69aed6e1984f7499b7af85b3d05f9a6883a/bin -PATH: /home/yangwei/.vscode-server/bin/e5e9e69aed6e1984f7499b7af85b3d05f9a6883a/bin -PATH: /usr/lib64/qt-3.3/bin -PATH: /opt/mrzcpd/bin -PATH: /usr/local/bin -PATH: /usr/bin -PATH: /usr/local/sbin -PATH: /usr/sbin -PATH: /home/yangwei/.fzf/bin -PATH: /home/yangwei/.local/bin -PATH: /home/yangwei/bin -PATH: /home/yangwei/.local/bin -PATH: /home/yangwei/bin - - -## ----------- ## -## Core tests. ## -## ----------- ## - -configure:2403: checking build system type -configure:2417: result: x86_64-unknown-linux-gnu -configure:2437: checking host system type -configure:2450: result: x86_64-unknown-linux-gnu -configure:2591: checking for gcc -configure:2618: result: /usr/bin/gcc -configure:2847: checking for C compiler version -configure:2856: /usr/bin/gcc --version >&5 -gcc (GCC) 4.8.5 20150623 (Red Hat 4.8.5-39) -Copyright (C) 2015 Free Software Foundation, Inc. -This is free software; see the source for copying conditions. There is NO -warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - -configure:2867: $? = 0 -configure:2856: /usr/bin/gcc -v >&5 -Using built-in specs. -COLLECT_GCC=/usr/bin/gcc -COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/lto-wrapper -Target: x86_64-redhat-linux -Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-linker-hash-style=gnu --enable-languages=c,c++,objc,obj-c++,java,fortran,ada,go,lto --enable-plugin --enable-initfini-array --disable-libgcj --with-isl=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/isl-install --with-cloog=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/cloog-install --enable-gnu-indirect-function --with-tune=generic --with-arch_32=x86-64 --build=x86_64-redhat-linux -Thread model: posix -gcc version 4.8.5 20150623 (Red Hat 4.8.5-39) (GCC) -configure:2867: $? = 0 -configure:2856: /usr/bin/gcc -V >&5 -gcc: error: unrecognized command line option '-V' -gcc: fatal error: no input files -compilation terminated. -configure:2867: $? = 4 -configure:2856: /usr/bin/gcc -qversion >&5 -gcc: error: unrecognized command line option '-qversion' -gcc: fatal error: no input files -compilation terminated. -configure:2867: $? = 4 -configure:2887: checking whether the C compiler works -configure:2909: /usr/bin/gcc conftest.c >&5 -configure:2913: $? = 0 -configure:2961: result: yes -configure:2964: checking for C compiler default output file name -configure:2966: result: a.out -configure:2972: checking for suffix of executables -configure:2979: /usr/bin/gcc -o conftest conftest.c >&5 -configure:2983: $? = 0 -configure:3005: result: -configure:3027: checking whether we are cross compiling -configure:3035: /usr/bin/gcc -o conftest conftest.c >&5 -configure:3039: $? = 0 -configure:3046: ./conftest -configure:3050: $? = 0 -configure:3065: result: no -configure:3070: checking for suffix of object files -configure:3092: /usr/bin/gcc -c conftest.c >&5 -configure:3096: $? = 0 -configure:3117: result: o -configure:3121: checking whether we are using the GNU C compiler -configure:3140: /usr/bin/gcc -c conftest.c >&5 -configure:3140: $? = 0 -configure:3149: result: yes -configure:3158: checking whether /usr/bin/gcc accepts -g -configure:3178: /usr/bin/gcc -c -g conftest.c >&5 -configure:3178: $? = 0 -configure:3219: result: yes -configure:3236: checking for /usr/bin/gcc option to accept ISO C89 -configure:3299: /usr/bin/gcc -c -g -O2 conftest.c >&5 -configure:3299: $? = 0 -configure:3312: result: none needed -configure:3350: checking whether the compiler supports the -ffloat-store option -configure:3376: /usr/bin/gcc -c -g -O2 -Werror -ffloat-store conftest.c >&5 -configure:3376: $? = 0 -configure:3378: result: yes -configure:3518: checking for inline -configure:3554: /usr/bin/gcc -c -ffloat-store conftest.c >&5 -configure:3554: $? = 0 -configure:3569: result: inline -configure:3581: checking for __attribute__ -configure:3608: /usr/bin/gcc -c -g -O2 conftest.c >&5 -configure:3608: $? = 0 -configure:3627: result: yes -configure:3632: checking whether __attribute__((unused)) can be used without warnings -configure:3655: /usr/bin/gcc -c -g -O2 -Werror conftest.c >&5 -configure:3655: $? = 0 -configure:3669: result: yes -configure:3673: checking whether __attribute__((noreturn)) can be applied to function pointers without warnings -configure:3697: /usr/bin/gcc -c -g -O2 -Werror conftest.c >&5 -configure:3697: $? = 0 -configure:3711: result: yes -configure:3715: checking whether __attribute__((format)) can be used without warnings -configure:3739: /usr/bin/gcc -c -g -O2 -Werror conftest.c >&5 -configure:3739: $? = 0 -configure:3753: result: yes -configure:3758: checking whether __attribute__((format)) can be applied to function pointers -configure:3780: /usr/bin/gcc -c -g -O2 conftest.c >&5 -configure:3780: $? = 0 -configure:3793: result: yes -configure:3804: checking how to run the C preprocessor -configure:3835: /usr/bin/gcc -E conftest.c -configure:3835: $? = 0 -configure:3849: /usr/bin/gcc -E conftest.c -conftest.c:14:28: fatal error: ac_nonexistent.h: No such file or directory - #include - ^ -compilation terminated. -configure:3849: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "" -| #define PACKAGE_TARNAME "" -| #define PACKAGE_VERSION "" -| #define PACKAGE_STRING "" -| #define PACKAGE_BUGREPORT "" -| #define PACKAGE_URL "" -| #define inline inline -| #define HAVE___ATTRIBUTE__ 1 -| #define __ATTRIBUTE___NORETURN_OK_FOR_FUNCTION_POINTERS 1 -| #define __ATTRIBUTE___FORMAT_OK 1 -| #define __ATTRIBUTE___FORMAT_OK_FOR_FUNCTION_POINTERS 1 -| /* end confdefs.h. */ -| #include -configure:3874: result: /usr/bin/gcc -E -configure:3894: /usr/bin/gcc -E conftest.c -configure:3894: $? = 0 -configure:3908: /usr/bin/gcc -E conftest.c -conftest.c:14:28: fatal error: ac_nonexistent.h: No such file or directory - #include - ^ -compilation terminated. -configure:3908: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "" -| #define PACKAGE_TARNAME "" -| #define PACKAGE_VERSION "" -| #define PACKAGE_STRING "" -| #define PACKAGE_BUGREPORT "" -| #define PACKAGE_URL "" -| #define inline inline -| #define HAVE___ATTRIBUTE__ 1 -| #define __ATTRIBUTE___NORETURN_OK_FOR_FUNCTION_POINTERS 1 -| #define __ATTRIBUTE___FORMAT_OK 1 -| #define __ATTRIBUTE___FORMAT_OK_FOR_FUNCTION_POINTERS 1 -| /* end confdefs.h. */ -| #include -configure:3937: checking for grep that handles long lines and -e -configure:3995: result: /usr/bin/grep -configure:4000: checking for egrep -configure:4062: result: /usr/bin/grep -E -configure:4067: checking for ANSI C header files -configure:4087: /usr/bin/gcc -c -g -O2 conftest.c >&5 -configure:4087: $? = 0 -configure:4160: /usr/bin/gcc -o conftest -g -O2 conftest.c >&5 -configure:4160: $? = 0 -configure:4160: ./conftest -configure:4160: $? = 0 -configure:4171: result: yes -configure:4184: checking for sys/types.h -configure:4184: /usr/bin/gcc -c -g -O2 conftest.c >&5 -configure:4184: $? = 0 -configure:4184: result: yes -configure:4184: checking for sys/stat.h -configure:4184: /usr/bin/gcc -c -g -O2 conftest.c >&5 -configure:4184: $? = 0 -configure:4184: result: yes -configure:4184: checking for stdlib.h -configure:4184: /usr/bin/gcc -c -g -O2 conftest.c >&5 -configure:4184: $? = 0 -configure:4184: result: yes -configure:4184: checking for string.h -configure:4184: /usr/bin/gcc -c -g -O2 conftest.c >&5 -configure:4184: $? = 0 -configure:4184: result: yes -configure:4184: checking for memory.h -configure:4184: /usr/bin/gcc -c -g -O2 conftest.c >&5 -configure:4184: $? = 0 -configure:4184: result: yes -configure:4184: checking for strings.h -configure:4184: /usr/bin/gcc -c -g -O2 conftest.c >&5 -configure:4184: $? = 0 -configure:4184: result: yes -configure:4184: checking for inttypes.h -configure:4184: /usr/bin/gcc -c -g -O2 conftest.c >&5 -configure:4184: $? = 0 -configure:4184: result: yes -configure:4184: checking for stdint.h -configure:4184: /usr/bin/gcc -c -g -O2 conftest.c >&5 -configure:4184: $? = 0 -configure:4184: result: yes -configure:4184: checking for unistd.h -configure:4184: /usr/bin/gcc -c -g -O2 conftest.c >&5 -configure:4184: $? = 0 -configure:4184: result: yes -configure:4199: checking fcntl.h usability -configure:4199: /usr/bin/gcc -c -g -O2 conftest.c >&5 -configure:4199: $? = 0 -configure:4199: result: yes -configure:4199: checking fcntl.h presence -configure:4199: /usr/bin/gcc -E conftest.c -configure:4199: $? = 0 -configure:4199: result: yes -configure:4199: checking for fcntl.h -configure:4199: result: yes -configure:4199: checking rpc/rpc.h usability -configure:4199: /usr/bin/gcc -c -g -O2 conftest.c >&5 -configure:4199: $? = 0 -configure:4199: result: yes -configure:4199: checking rpc/rpc.h presence -configure:4199: /usr/bin/gcc -E conftest.c -configure:4199: $? = 0 -configure:4199: result: yes -configure:4199: checking for rpc/rpc.h -configure:4199: result: yes -configure:4199: checking rpc/rpcent.h usability -configure:4199: /usr/bin/gcc -c -g -O2 conftest.c >&5 -conftest.c:59:24: fatal error: rpc/rpcent.h: No such file or directory - #include - ^ -compilation terminated. -configure:4199: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "" -| #define PACKAGE_TARNAME "" -| #define PACKAGE_VERSION "" -| #define PACKAGE_STRING "" -| #define PACKAGE_BUGREPORT "" -| #define PACKAGE_URL "" -| #define inline inline -| #define HAVE___ATTRIBUTE__ 1 -| #define __ATTRIBUTE___NORETURN_OK_FOR_FUNCTION_POINTERS 1 -| #define __ATTRIBUTE___FORMAT_OK 1 -| #define __ATTRIBUTE___FORMAT_OK_FOR_FUNCTION_POINTERS 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_FCNTL_H 1 -| #define HAVE_RPC_RPC_H 1 -| /* end confdefs.h. */ -| #include -| #ifdef HAVE_SYS_TYPES_H -| # include -| #endif -| #ifdef HAVE_SYS_STAT_H -| # include -| #endif -| #ifdef STDC_HEADERS -| # include -| # include -| #else -| # ifdef HAVE_STDLIB_H -| # include -| # endif -| #endif -| #ifdef HAVE_STRING_H -| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H -| # include -| # endif -| # include -| #endif -| #ifdef HAVE_STRINGS_H -| # include -| #endif -| #ifdef HAVE_INTTYPES_H -| # include -| #endif -| #ifdef HAVE_STDINT_H -| # include -| #endif -| #ifdef HAVE_UNISTD_H -| # include -| #endif -| #include -configure:4199: result: no -configure:4199: checking rpc/rpcent.h presence -configure:4199: /usr/bin/gcc -E conftest.c -conftest.c:26:24: fatal error: rpc/rpcent.h: No such file or directory - #include - ^ -compilation terminated. -configure:4199: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "" -| #define PACKAGE_TARNAME "" -| #define PACKAGE_VERSION "" -| #define PACKAGE_STRING "" -| #define PACKAGE_BUGREPORT "" -| #define PACKAGE_URL "" -| #define inline inline -| #define HAVE___ATTRIBUTE__ 1 -| #define __ATTRIBUTE___NORETURN_OK_FOR_FUNCTION_POINTERS 1 -| #define __ATTRIBUTE___FORMAT_OK 1 -| #define __ATTRIBUTE___FORMAT_OK_FOR_FUNCTION_POINTERS 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_FCNTL_H 1 -| #define HAVE_RPC_RPC_H 1 -| /* end confdefs.h. */ -| #include -configure:4199: result: no -configure:4199: checking for rpc/rpcent.h -configure:4199: result: no -configure:4199: checking netdnet/dnetdb.h usability -configure:4199: /usr/bin/gcc -c -g -O2 conftest.c >&5 -conftest.c:59:28: fatal error: netdnet/dnetdb.h: No such file or directory - #include - ^ -compilation terminated. -configure:4199: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "" -| #define PACKAGE_TARNAME "" -| #define PACKAGE_VERSION "" -| #define PACKAGE_STRING "" -| #define PACKAGE_BUGREPORT "" -| #define PACKAGE_URL "" -| #define inline inline -| #define HAVE___ATTRIBUTE__ 1 -| #define __ATTRIBUTE___NORETURN_OK_FOR_FUNCTION_POINTERS 1 -| #define __ATTRIBUTE___FORMAT_OK 1 -| #define __ATTRIBUTE___FORMAT_OK_FOR_FUNCTION_POINTERS 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_FCNTL_H 1 -| #define HAVE_RPC_RPC_H 1 -| /* end confdefs.h. */ -| #include -| #ifdef HAVE_SYS_TYPES_H -| # include -| #endif -| #ifdef HAVE_SYS_STAT_H -| # include -| #endif -| #ifdef STDC_HEADERS -| # include -| # include -| #else -| # ifdef HAVE_STDLIB_H -| # include -| # endif -| #endif -| #ifdef HAVE_STRING_H -| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H -| # include -| # endif -| # include -| #endif -| #ifdef HAVE_STRINGS_H -| # include -| #endif -| #ifdef HAVE_INTTYPES_H -| # include -| #endif -| #ifdef HAVE_STDINT_H -| # include -| #endif -| #ifdef HAVE_UNISTD_H -| # include -| #endif -| #include -configure:4199: result: no -configure:4199: checking netdnet/dnetdb.h presence -configure:4199: /usr/bin/gcc -E conftest.c -conftest.c:26:28: fatal error: netdnet/dnetdb.h: No such file or directory - #include - ^ -compilation terminated. -configure:4199: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "" -| #define PACKAGE_TARNAME "" -| #define PACKAGE_VERSION "" -| #define PACKAGE_STRING "" -| #define PACKAGE_BUGREPORT "" -| #define PACKAGE_URL "" -| #define inline inline -| #define HAVE___ATTRIBUTE__ 1 -| #define __ATTRIBUTE___NORETURN_OK_FOR_FUNCTION_POINTERS 1 -| #define __ATTRIBUTE___FORMAT_OK 1 -| #define __ATTRIBUTE___FORMAT_OK_FOR_FUNCTION_POINTERS 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_FCNTL_H 1 -| #define HAVE_RPC_RPC_H 1 -| /* end confdefs.h. */ -| #include -configure:4199: result: no -configure:4199: checking for netdnet/dnetdb.h -configure:4199: result: no -configure:4211: checking for net/pfvar.h -configure:4211: /usr/bin/gcc -c -g -O2 conftest.c >&5 -conftest.c:30:23: fatal error: net/pfvar.h: No such file or directory - #include - ^ -compilation terminated. -configure:4211: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "" -| #define PACKAGE_TARNAME "" -| #define PACKAGE_VERSION "" -| #define PACKAGE_STRING "" -| #define PACKAGE_BUGREPORT "" -| #define PACKAGE_URL "" -| #define inline inline -| #define HAVE___ATTRIBUTE__ 1 -| #define __ATTRIBUTE___NORETURN_OK_FOR_FUNCTION_POINTERS 1 -| #define __ATTRIBUTE___FORMAT_OK 1 -| #define __ATTRIBUTE___FORMAT_OK_FOR_FUNCTION_POINTERS 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_FCNTL_H 1 -| #define HAVE_RPC_RPC_H 1 -| /* end confdefs.h. */ -| #include -| #include -| #include -| -| #include -configure:4211: result: no -configure:4247: checking for netinet/if_ether.h -configure:4247: /usr/bin/gcc -c -g -O2 conftest.c >&5 -configure:4247: $? = 0 -configure:4247: result: yes -configure:4290: checking whether time.h and sys/time.h may both be included -configure:4310: /usr/bin/gcc -c -g -O2 conftest.c >&5 -configure:4310: $? = 0 -configure:4317: result: yes -configure:4370: checking smi.h usability -configure:4370: /usr/bin/gcc -c -g -O2 conftest.c >&5 -conftest.c:61:17: fatal error: smi.h: No such file or directory - #include - ^ -compilation terminated. -configure:4370: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "" -| #define PACKAGE_TARNAME "" -| #define PACKAGE_VERSION "" -| #define PACKAGE_STRING "" -| #define PACKAGE_BUGREPORT "" -| #define PACKAGE_URL "" -| #define inline inline -| #define HAVE___ATTRIBUTE__ 1 -| #define __ATTRIBUTE___NORETURN_OK_FOR_FUNCTION_POINTERS 1 -| #define __ATTRIBUTE___FORMAT_OK 1 -| #define __ATTRIBUTE___FORMAT_OK_FOR_FUNCTION_POINTERS 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_FCNTL_H 1 -| #define HAVE_RPC_RPC_H 1 -| #define HAVE_NETINET_IF_ETHER_H 1 -| #define TIME_WITH_SYS_TIME 1 -| /* end confdefs.h. */ -| #include -| #ifdef HAVE_SYS_TYPES_H -| # include -| #endif -| #ifdef HAVE_SYS_STAT_H -| # include -| #endif -| #ifdef STDC_HEADERS -| # include -| # include -| #else -| # ifdef HAVE_STDLIB_H -| # include -| # endif -| #endif -| #ifdef HAVE_STRING_H -| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H -| # include -| # endif -| # include -| #endif -| #ifdef HAVE_STRINGS_H -| # include -| #endif -| #ifdef HAVE_INTTYPES_H -| # include -| #endif -| #ifdef HAVE_STDINT_H -| # include -| #endif -| #ifdef HAVE_UNISTD_H -| # include -| #endif -| #include -configure:4370: result: no -configure:4370: checking smi.h presence -configure:4370: /usr/bin/gcc -E conftest.c -conftest.c:28:17: fatal error: smi.h: No such file or directory - #include - ^ -compilation terminated. -configure:4370: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "" -| #define PACKAGE_TARNAME "" -| #define PACKAGE_VERSION "" -| #define PACKAGE_STRING "" -| #define PACKAGE_BUGREPORT "" -| #define PACKAGE_URL "" -| #define inline inline -| #define HAVE___ATTRIBUTE__ 1 -| #define __ATTRIBUTE___NORETURN_OK_FOR_FUNCTION_POINTERS 1 -| #define __ATTRIBUTE___FORMAT_OK 1 -| #define __ATTRIBUTE___FORMAT_OK_FOR_FUNCTION_POINTERS 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_FCNTL_H 1 -| #define HAVE_RPC_RPC_H 1 -| #define HAVE_NETINET_IF_ETHER_H 1 -| #define TIME_WITH_SYS_TIME 1 -| /* end confdefs.h. */ -| #include -configure:4370: result: no -configure:4370: checking for smi.h -configure:4370: result: no -configure:4489: checking whether to enable the possibly-buggy SMB printer -configure:4499: result: yes -configure:4501: WARNING: The SMB printer may have exploitable buffer overflows!!! -configure:4519: checking whether to drop root privileges by default -configure:4530: result: no -configure:4540: checking whether to chroot -configure:4551: result: no -configure:4580: checking for cap_enter -configure:4580: /usr/bin/gcc -o conftest -g -O2 conftest.c >&5 -/tmp/ccnD3Pkk.o: In function `main': -/home/yangwei/tcpdump_mesa/cmake-build-debug/conftest.c:63: undefined reference to `cap_enter' -collect2: error: ld returned 1 exit status -configure:4580: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "" -| #define PACKAGE_TARNAME "" -| #define PACKAGE_VERSION "" -| #define PACKAGE_STRING "" -| #define PACKAGE_BUGREPORT "" -| #define PACKAGE_URL "" -| #define inline inline -| #define HAVE___ATTRIBUTE__ 1 -| #define __ATTRIBUTE___NORETURN_OK_FOR_FUNCTION_POINTERS 1 -| #define __ATTRIBUTE___FORMAT_OK 1 -| #define __ATTRIBUTE___FORMAT_OK_FOR_FUNCTION_POINTERS 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_FCNTL_H 1 -| #define HAVE_RPC_RPC_H 1 -| #define HAVE_NETINET_IF_ETHER_H 1 -| #define TIME_WITH_SYS_TIME 1 -| #define ENABLE_SMB 1 -| /* end confdefs.h. */ -| /* Define cap_enter to an innocuous variant, in case declares cap_enter. -| For example, HP-UX 11i declares gettimeofday. */ -| #define cap_enter innocuous_cap_enter -| -| /* System header to define __stub macros and hopefully few prototypes, -| which can conflict with char cap_enter (); below. -| Prefer to if __STDC__ is defined, since -| exists even on freestanding compilers. */ -| -| #ifdef __STDC__ -| # include -| #else -| # include -| #endif -| -| #undef cap_enter -| -| /* Override any GCC internal prototype to avoid an error. -| Use char because int might match the return type of a GCC -| builtin and then its argument prototype would still apply. */ -| #ifdef __cplusplus -| extern "C" -| #endif -| char cap_enter (); -| /* The GNU C library defines this for functions which it implements -| to always fail with ENOSYS. Some functions are actually named -| something starting with __ and the normal name is an alias. */ -| #if defined __stub_cap_enter || defined __stub___cap_enter -| choke me -| #endif -| -| int -| main () -| { -| return cap_enter (); -| ; -| return 0; -| } -configure:4580: result: no -configure:4580: checking for cap_rights_limit -configure:4580: /usr/bin/gcc -o conftest -g -O2 conftest.c >&5 -/tmp/ccLJmBhl.o: In function `main': -/home/yangwei/tcpdump_mesa/cmake-build-debug/conftest.c:63: undefined reference to `cap_rights_limit' -collect2: error: ld returned 1 exit status -configure:4580: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "" -| #define PACKAGE_TARNAME "" -| #define PACKAGE_VERSION "" -| #define PACKAGE_STRING "" -| #define PACKAGE_BUGREPORT "" -| #define PACKAGE_URL "" -| #define inline inline -| #define HAVE___ATTRIBUTE__ 1 -| #define __ATTRIBUTE___NORETURN_OK_FOR_FUNCTION_POINTERS 1 -| #define __ATTRIBUTE___FORMAT_OK 1 -| #define __ATTRIBUTE___FORMAT_OK_FOR_FUNCTION_POINTERS 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_FCNTL_H 1 -| #define HAVE_RPC_RPC_H 1 -| #define HAVE_NETINET_IF_ETHER_H 1 -| #define TIME_WITH_SYS_TIME 1 -| #define ENABLE_SMB 1 -| /* end confdefs.h. */ -| /* Define cap_rights_limit to an innocuous variant, in case declares cap_rights_limit. -| For example, HP-UX 11i declares gettimeofday. */ -| #define cap_rights_limit innocuous_cap_rights_limit -| -| /* System header to define __stub macros and hopefully few prototypes, -| which can conflict with char cap_rights_limit (); below. -| Prefer to if __STDC__ is defined, since -| exists even on freestanding compilers. */ -| -| #ifdef __STDC__ -| # include -| #else -| # include -| #endif -| -| #undef cap_rights_limit -| -| /* Override any GCC internal prototype to avoid an error. -| Use char because int might match the return type of a GCC -| builtin and then its argument prototype would still apply. */ -| #ifdef __cplusplus -| extern "C" -| #endif -| char cap_rights_limit (); -| /* The GNU C library defines this for functions which it implements -| to always fail with ENOSYS. Some functions are actually named -| something starting with __ and the normal name is an alias. */ -| #if defined __stub_cap_rights_limit || defined __stub___cap_rights_limit -| choke me -| #endif -| -| int -| main () -| { -| return cap_rights_limit (); -| ; -| return 0; -| } -configure:4580: result: no -configure:4580: checking for cap_ioctls_limit -configure:4580: /usr/bin/gcc -o conftest -g -O2 conftest.c >&5 -/tmp/ccFsQqyo.o: In function `main': -/home/yangwei/tcpdump_mesa/cmake-build-debug/conftest.c:63: undefined reference to `cap_ioctls_limit' -collect2: error: ld returned 1 exit status -configure:4580: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "" -| #define PACKAGE_TARNAME "" -| #define PACKAGE_VERSION "" -| #define PACKAGE_STRING "" -| #define PACKAGE_BUGREPORT "" -| #define PACKAGE_URL "" -| #define inline inline -| #define HAVE___ATTRIBUTE__ 1 -| #define __ATTRIBUTE___NORETURN_OK_FOR_FUNCTION_POINTERS 1 -| #define __ATTRIBUTE___FORMAT_OK 1 -| #define __ATTRIBUTE___FORMAT_OK_FOR_FUNCTION_POINTERS 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_FCNTL_H 1 -| #define HAVE_RPC_RPC_H 1 -| #define HAVE_NETINET_IF_ETHER_H 1 -| #define TIME_WITH_SYS_TIME 1 -| #define ENABLE_SMB 1 -| /* end confdefs.h. */ -| /* Define cap_ioctls_limit to an innocuous variant, in case declares cap_ioctls_limit. -| For example, HP-UX 11i declares gettimeofday. */ -| #define cap_ioctls_limit innocuous_cap_ioctls_limit -| -| /* System header to define __stub macros and hopefully few prototypes, -| which can conflict with char cap_ioctls_limit (); below. -| Prefer to if __STDC__ is defined, since -| exists even on freestanding compilers. */ -| -| #ifdef __STDC__ -| # include -| #else -| # include -| #endif -| -| #undef cap_ioctls_limit -| -| /* Override any GCC internal prototype to avoid an error. -| Use char because int might match the return type of a GCC -| builtin and then its argument prototype would still apply. */ -| #ifdef __cplusplus -| extern "C" -| #endif -| char cap_ioctls_limit (); -| /* The GNU C library defines this for functions which it implements -| to always fail with ENOSYS. Some functions are actually named -| something starting with __ and the normal name is an alias. */ -| #if defined __stub_cap_ioctls_limit || defined __stub___cap_ioctls_limit -| choke me -| #endif -| -| int -| main () -| { -| return cap_ioctls_limit (); -| ; -| return 0; -| } -configure:4580: result: no -configure:4580: checking for openat -configure:4580: /usr/bin/gcc -o conftest -g -O2 conftest.c >&5 -configure:4580: $? = 0 -configure:4580: result: yes -configure:4592: checking whether to sandbox using capsicum -configure:4601: result: no -configure:4615: checking for library containing gethostbyname -configure:4646: /usr/bin/gcc -o conftest -g -O2 conftest.c >&5 -configure:4646: $? = 0 -configure:4663: result: none required -configure:4716: checking for library containing socket -configure:4747: /usr/bin/gcc -o conftest -g -O2 conftest.c >&5 -configure:4747: $? = 0 -configure:4764: result: none required -configure:4814: checking for library containing putmsg -configure:4845: /usr/bin/gcc -o conftest -g -O2 conftest.c >&5 -/tmp/cczWLhvy.o: In function `main': -/home/yangwei/tcpdump_mesa/cmake-build-debug/conftest.c:41: warning: warning: putmsg is not implemented and will always fail -configure:4845: $? = 0 -configure:4862: result: none required -configure:4878: checking whether the operating system supports IPv6 -configure:4900: /usr/bin/gcc -c -g -O2 conftest.c >&5 -conftest.c: In function 'foo': -conftest.c:40:2: warning: incompatible implicit declaration of built-in function 'memset' [enabled by default] - memset(addr, 0, sizeof (struct in6_addr)); - ^ -configure:4900: $? = 0 -configure:4902: result: yes -configure:4924: checking ipv6 stack type -configure:5042: result: linux-glibc -configure:5062: checking for dnet_htoa declaration in netdnet/dnetdb.h -conftest.c:31:28: fatal error: netdnet/dnetdb.h: No such file or directory - #include - ^ -compilation terminated. -configure:5081: result: no -configure:5089: checking for vfprintf -configure:5089: /usr/bin/gcc -o conftest -g -O2 conftest.c >&5 -conftest.c:54:6: warning: conflicting types for built-in function 'vfprintf' [enabled by default] - char vfprintf (); - ^ -configure:5089: $? = 0 -configure:5089: result: yes -configure:5102: checking for strlcat -configure:5102: /usr/bin/gcc -o conftest -g -O2 conftest.c >&5 -/tmp/ccBdxVpJ.o: In function `main': -/home/yangwei/tcpdump_mesa/cmake-build-debug/conftest.c:66: undefined reference to `strlcat' -collect2: error: ld returned 1 exit status -configure:5102: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "" -| #define PACKAGE_TARNAME "" -| #define PACKAGE_VERSION "" -| #define PACKAGE_STRING "" -| #define PACKAGE_BUGREPORT "" -| #define PACKAGE_URL "" -| #define inline inline -| #define HAVE___ATTRIBUTE__ 1 -| #define __ATTRIBUTE___NORETURN_OK_FOR_FUNCTION_POINTERS 1 -| #define __ATTRIBUTE___FORMAT_OK 1 -| #define __ATTRIBUTE___FORMAT_OK_FOR_FUNCTION_POINTERS 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_FCNTL_H 1 -| #define HAVE_RPC_RPC_H 1 -| #define HAVE_NETINET_IF_ETHER_H 1 -| #define TIME_WITH_SYS_TIME 1 -| #define ENABLE_SMB 1 -| #define HAVE_OPENAT 1 -| #define HAVE_OS_IPV6_SUPPORT 1 -| #define HAVE_VFPRINTF 1 -| /* end confdefs.h. */ -| /* Define strlcat to an innocuous variant, in case declares strlcat. -| For example, HP-UX 11i declares gettimeofday. */ -| #define strlcat innocuous_strlcat -| -| /* System header to define __stub macros and hopefully few prototypes, -| which can conflict with char strlcat (); below. -| Prefer to if __STDC__ is defined, since -| exists even on freestanding compilers. */ -| -| #ifdef __STDC__ -| # include -| #else -| # include -| #endif -| -| #undef strlcat -| -| /* Override any GCC internal prototype to avoid an error. -| Use char because int might match the return type of a GCC -| builtin and then its argument prototype would still apply. */ -| #ifdef __cplusplus -| extern "C" -| #endif -| char strlcat (); -| /* The GNU C library defines this for functions which it implements -| to always fail with ENOSYS. Some functions are actually named -| something starting with __ and the normal name is an alias. */ -| #if defined __stub_strlcat || defined __stub___strlcat -| choke me -| #endif -| -| int -| main () -| { -| return strlcat (); -| ; -| return 0; -| } -configure:5102: result: no -configure:5115: checking for strlcpy -configure:5115: /usr/bin/gcc -o conftest -g -O2 conftest.c >&5 -/tmp/ccvcmjDK.o: In function `main': -/home/yangwei/tcpdump_mesa/cmake-build-debug/conftest.c:66: undefined reference to `strlcpy' -collect2: error: ld returned 1 exit status -configure:5115: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "" -| #define PACKAGE_TARNAME "" -| #define PACKAGE_VERSION "" -| #define PACKAGE_STRING "" -| #define PACKAGE_BUGREPORT "" -| #define PACKAGE_URL "" -| #define inline inline -| #define HAVE___ATTRIBUTE__ 1 -| #define __ATTRIBUTE___NORETURN_OK_FOR_FUNCTION_POINTERS 1 -| #define __ATTRIBUTE___FORMAT_OK 1 -| #define __ATTRIBUTE___FORMAT_OK_FOR_FUNCTION_POINTERS 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_FCNTL_H 1 -| #define HAVE_RPC_RPC_H 1 -| #define HAVE_NETINET_IF_ETHER_H 1 -| #define TIME_WITH_SYS_TIME 1 -| #define ENABLE_SMB 1 -| #define HAVE_OPENAT 1 -| #define HAVE_OS_IPV6_SUPPORT 1 -| #define HAVE_VFPRINTF 1 -| /* end confdefs.h. */ -| /* Define strlcpy to an innocuous variant, in case declares strlcpy. -| For example, HP-UX 11i declares gettimeofday. */ -| #define strlcpy innocuous_strlcpy -| -| /* System header to define __stub macros and hopefully few prototypes, -| which can conflict with char strlcpy (); below. -| Prefer to if __STDC__ is defined, since -| exists even on freestanding compilers. */ -| -| #ifdef __STDC__ -| # include -| #else -| # include -| #endif -| -| #undef strlcpy -| -| /* Override any GCC internal prototype to avoid an error. -| Use char because int might match the return type of a GCC -| builtin and then its argument prototype would still apply. */ -| #ifdef __cplusplus -| extern "C" -| #endif -| char strlcpy (); -| /* The GNU C library defines this for functions which it implements -| to always fail with ENOSYS. Some functions are actually named -| something starting with __ and the normal name is an alias. */ -| #if defined __stub_strlcpy || defined __stub___strlcpy -| choke me -| #endif -| -| int -| main () -| { -| return strlcpy (); -| ; -| return 0; -| } -configure:5115: result: no -configure:5128: checking for strdup -configure:5128: /usr/bin/gcc -o conftest -g -O2 conftest.c >&5 -conftest.c:55:6: warning: conflicting types for built-in function 'strdup' [enabled by default] - char strdup (); - ^ -configure:5128: $? = 0 -configure:5128: result: yes -configure:5141: checking for strsep -configure:5141: /usr/bin/gcc -o conftest -g -O2 conftest.c >&5 -configure:5141: $? = 0 -configure:5141: result: yes -configure:5154: checking for getopt_long -configure:5154: /usr/bin/gcc -o conftest -g -O2 conftest.c >&5 -configure:5154: $? = 0 -configure:5154: result: yes -configure:5171: checking for fork -configure:5171: /usr/bin/gcc -o conftest -g -O2 conftest.c >&5 -conftest.c:58:6: warning: conflicting types for built-in function 'fork' [enabled by default] - char fork (); - ^ -configure:5171: $? = 0 -configure:5171: result: yes -configure:5171: checking for vfork -configure:5171: /usr/bin/gcc -o conftest -g -O2 conftest.c >&5 -configure:5171: $? = 0 -configure:5171: result: yes -configure:5171: checking for strftime -configure:5171: /usr/bin/gcc -o conftest -g -O2 conftest.c >&5 -conftest.c:60:6: warning: conflicting types for built-in function 'strftime' [enabled by default] - char strftime (); - ^ -configure:5171: $? = 0 -configure:5171: result: yes -configure:5183: checking for setlinebuf -configure:5183: /usr/bin/gcc -o conftest -g -O2 conftest.c >&5 -configure:5183: $? = 0 -configure:5183: result: yes -configure:5183: checking for alarm -configure:5183: /usr/bin/gcc -o conftest -g -O2 conftest.c >&5 -configure:5183: $? = 0 -configure:5183: result: yes -configure:5197: checking for vsnprintf -configure:5197: /usr/bin/gcc -o conftest -g -O2 conftest.c >&5 -conftest.c:63:6: warning: conflicting types for built-in function 'vsnprintf' [enabled by default] - char vsnprintf (); - ^ -configure:5197: $? = 0 -configure:5197: result: yes -configure:5197: checking for snprintf -configure:5197: /usr/bin/gcc -o conftest -g -O2 conftest.c >&5 -conftest.c:64:6: warning: conflicting types for built-in function 'snprintf' [enabled by default] - char snprintf (); - ^ -configure:5197: $? = 0 -configure:5197: result: yes -configure:5218: checking return type of signal handlers -configure:5236: /usr/bin/gcc -c -g -O2 conftest.c >&5 -conftest.c: In function 'main': -conftest.c:48:1: error: void value not ignored as it ought to be - return *(signal (0, 0)) (0) == 1; - ^ -configure:5236: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "" -| #define PACKAGE_TARNAME "" -| #define PACKAGE_VERSION "" -| #define PACKAGE_STRING "" -| #define PACKAGE_BUGREPORT "" -| #define PACKAGE_URL "" -| #define inline inline -| #define HAVE___ATTRIBUTE__ 1 -| #define __ATTRIBUTE___NORETURN_OK_FOR_FUNCTION_POINTERS 1 -| #define __ATTRIBUTE___FORMAT_OK 1 -| #define __ATTRIBUTE___FORMAT_OK_FOR_FUNCTION_POINTERS 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_FCNTL_H 1 -| #define HAVE_RPC_RPC_H 1 -| #define HAVE_NETINET_IF_ETHER_H 1 -| #define TIME_WITH_SYS_TIME 1 -| #define ENABLE_SMB 1 -| #define HAVE_OPENAT 1 -| #define HAVE_OS_IPV6_SUPPORT 1 -| #define HAVE_VFPRINTF 1 -| #define HAVE_STRDUP 1 -| #define HAVE_STRSEP 1 -| #define HAVE_GETOPT_LONG 1 -| #define HAVE_FORK 1 -| #define HAVE_VFORK 1 -| #define HAVE_STRFTIME 1 -| #define HAVE_SETLINEBUF 1 -| #define HAVE_ALARM 1 -| #define HAVE_VSNPRINTF 1 -| #define HAVE_SNPRINTF 1 -| /* end confdefs.h. */ -| #include -| #include -| -| int -| main () -| { -| return *(signal (0, 0)) (0) == 1; -| ; -| return 0; -| } -configure:5243: result: void -configure:5271: checking for sigaction -configure:5271: /usr/bin/gcc -o conftest -g -O2 conftest.c >&5 -configure:5271: $? = 0 -configure:5271: result: yes -configure:5296: checking for library containing dnet_htoa -configure:5327: /usr/bin/gcc -o conftest -g -O2 conftest.c >&5 -/tmp/ccq66Bo9.o: In function `main': -/home/yangwei/tcpdump_mesa/cmake-build-debug/conftest.c:56: undefined reference to `dnet_htoa' -collect2: error: ld returned 1 exit status -configure:5327: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "" -| #define PACKAGE_TARNAME "" -| #define PACKAGE_VERSION "" -| #define PACKAGE_STRING "" -| #define PACKAGE_BUGREPORT "" -| #define PACKAGE_URL "" -| #define inline inline -| #define HAVE___ATTRIBUTE__ 1 -| #define __ATTRIBUTE___NORETURN_OK_FOR_FUNCTION_POINTERS 1 -| #define __ATTRIBUTE___FORMAT_OK 1 -| #define __ATTRIBUTE___FORMAT_OK_FOR_FUNCTION_POINTERS 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_FCNTL_H 1 -| #define HAVE_RPC_RPC_H 1 -| #define HAVE_NETINET_IF_ETHER_H 1 -| #define TIME_WITH_SYS_TIME 1 -| #define ENABLE_SMB 1 -| #define HAVE_OPENAT 1 -| #define HAVE_OS_IPV6_SUPPORT 1 -| #define HAVE_VFPRINTF 1 -| #define HAVE_STRDUP 1 -| #define HAVE_STRSEP 1 -| #define HAVE_GETOPT_LONG 1 -| #define HAVE_FORK 1 -| #define HAVE_VFORK 1 -| #define HAVE_STRFTIME 1 -| #define HAVE_SETLINEBUF 1 -| #define HAVE_ALARM 1 -| #define HAVE_VSNPRINTF 1 -| #define HAVE_SNPRINTF 1 -| #define RETSIGTYPE void -| #define RETSIGVAL /**/ -| #define HAVE_SIGACTION 1 -| /* end confdefs.h. */ -| -| /* Override any GCC internal prototype to avoid an error. -| Use char because int might match the return type of a GCC -| builtin and then its argument prototype would still apply. */ -| #ifdef __cplusplus -| extern "C" -| #endif -| char dnet_htoa (); -| int -| main () -| { -| return dnet_htoa (); -| ; -| return 0; -| } -configure:5327: /usr/bin/gcc -o conftest -g -O2 conftest.c -ldnet >&5 -/usr/bin/ld: cannot find -ldnet -collect2: error: ld returned 1 exit status -configure:5327: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "" -| #define PACKAGE_TARNAME "" -| #define PACKAGE_VERSION "" -| #define PACKAGE_STRING "" -| #define PACKAGE_BUGREPORT "" -| #define PACKAGE_URL "" -| #define inline inline -| #define HAVE___ATTRIBUTE__ 1 -| #define __ATTRIBUTE___NORETURN_OK_FOR_FUNCTION_POINTERS 1 -| #define __ATTRIBUTE___FORMAT_OK 1 -| #define __ATTRIBUTE___FORMAT_OK_FOR_FUNCTION_POINTERS 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_FCNTL_H 1 -| #define HAVE_RPC_RPC_H 1 -| #define HAVE_NETINET_IF_ETHER_H 1 -| #define TIME_WITH_SYS_TIME 1 -| #define ENABLE_SMB 1 -| #define HAVE_OPENAT 1 -| #define HAVE_OS_IPV6_SUPPORT 1 -| #define HAVE_VFPRINTF 1 -| #define HAVE_STRDUP 1 -| #define HAVE_STRSEP 1 -| #define HAVE_GETOPT_LONG 1 -| #define HAVE_FORK 1 -| #define HAVE_VFORK 1 -| #define HAVE_STRFTIME 1 -| #define HAVE_SETLINEBUF 1 -| #define HAVE_ALARM 1 -| #define HAVE_VSNPRINTF 1 -| #define HAVE_SNPRINTF 1 -| #define RETSIGTYPE void -| #define RETSIGVAL /**/ -| #define HAVE_SIGACTION 1 -| /* end confdefs.h. */ -| -| /* Override any GCC internal prototype to avoid an error. -| Use char because int might match the return type of a GCC -| builtin and then its argument prototype would still apply. */ -| #ifdef __cplusplus -| extern "C" -| #endif -| char dnet_htoa (); -| int -| main () -| { -| return dnet_htoa (); -| ; -| return 0; -| } -configure:5344: result: no -configure:5355: checking for main in -lrpc -configure:5374: /usr/bin/gcc -o conftest -g -O2 conftest.c -lrpc >&5 -/usr/bin/ld: cannot find -lrpc -collect2: error: ld returned 1 exit status -configure:5374: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "" -| #define PACKAGE_TARNAME "" -| #define PACKAGE_VERSION "" -| #define PACKAGE_STRING "" -| #define PACKAGE_BUGREPORT "" -| #define PACKAGE_URL "" -| #define inline inline -| #define HAVE___ATTRIBUTE__ 1 -| #define __ATTRIBUTE___NORETURN_OK_FOR_FUNCTION_POINTERS 1 -| #define __ATTRIBUTE___FORMAT_OK 1 -| #define __ATTRIBUTE___FORMAT_OK_FOR_FUNCTION_POINTERS 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_FCNTL_H 1 -| #define HAVE_RPC_RPC_H 1 -| #define HAVE_NETINET_IF_ETHER_H 1 -| #define TIME_WITH_SYS_TIME 1 -| #define ENABLE_SMB 1 -| #define HAVE_OPENAT 1 -| #define HAVE_OS_IPV6_SUPPORT 1 -| #define HAVE_VFPRINTF 1 -| #define HAVE_STRDUP 1 -| #define HAVE_STRSEP 1 -| #define HAVE_GETOPT_LONG 1 -| #define HAVE_FORK 1 -| #define HAVE_VFORK 1 -| #define HAVE_STRFTIME 1 -| #define HAVE_SETLINEBUF 1 -| #define HAVE_ALARM 1 -| #define HAVE_VSNPRINTF 1 -| #define HAVE_SNPRINTF 1 -| #define RETSIGTYPE void -| #define RETSIGVAL /**/ -| #define HAVE_SIGACTION 1 -| /* end confdefs.h. */ -| -| -| int -| main () -| { -| return main (); -| ; -| return 0; -| } -configure:5383: result: no -configure:5394: checking for library containing getrpcbynumber -configure:5425: /usr/bin/gcc -o conftest -g -O2 conftest.c >&5 -configure:5425: $? = 0 -configure:5442: result: none required -configure:5476: checking for local pcap library -configure:5504: result: not found -configure:5556: checking for pcap-config -configure:5574: found /usr/local/bin/pcap-config -configure:5586: result: /usr/local/bin/pcap-config -configure:5801: checking for pcap_loop -configure:5801: /usr/bin/gcc -o conftest -g -O2 conftest.c -L/usr/local/lib -Wl,-rpath,/usr/local/lib -lpcap >&5 -configure:5801: $? = 0 -configure:5801: result: yes -configure:5836: checking for ether_ntohost -configure:5836: /usr/bin/gcc -o conftest -g -O2 conftest.c -L/usr/local/lib -Wl,-rpath,/usr/local/lib -lpcap >&5 -configure:5836: $? = 0 -configure:5836: result: yes -configure:5842: checking for buggy ether_ntohost -configure:5870: /usr/bin/gcc -o conftest -g -O2 conftest.c -L/usr/local/lib -Wl,-rpath,/usr/local/lib -lpcap >&5 -conftest.c: In function 'main': -conftest.c:60:4: warning: incompatible implicit declaration of built-in function 'exit' [enabled by default] - exit(0); - ^ -configure:5870: $? = 0 -configure:5870: ./conftest -configure:5870: $? = 0 -configure:5880: result: no -configure:5900: checking whether ether_ntohost is declared -configure:5900: /usr/bin/gcc -c -g -O2 conftest.c >&5 -conftest.c: In function 'main': -conftest.c:66:10: error: 'ether_ntohost' undeclared (first use in this function) - (void) ether_ntohost; - ^ -conftest.c:66:10: note: each undeclared identifier is reported only once for each function it appears in -configure:5900: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "" -| #define PACKAGE_TARNAME "" -| #define PACKAGE_VERSION "" -| #define PACKAGE_STRING "" -| #define PACKAGE_BUGREPORT "" -| #define PACKAGE_URL "" -| #define inline inline -| #define HAVE___ATTRIBUTE__ 1 -| #define __ATTRIBUTE___NORETURN_OK_FOR_FUNCTION_POINTERS 1 -| #define __ATTRIBUTE___FORMAT_OK 1 -| #define __ATTRIBUTE___FORMAT_OK_FOR_FUNCTION_POINTERS 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_FCNTL_H 1 -| #define HAVE_RPC_RPC_H 1 -| #define HAVE_NETINET_IF_ETHER_H 1 -| #define TIME_WITH_SYS_TIME 1 -| #define ENABLE_SMB 1 -| #define HAVE_OPENAT 1 -| #define HAVE_OS_IPV6_SUPPORT 1 -| #define HAVE_VFPRINTF 1 -| #define HAVE_STRDUP 1 -| #define HAVE_STRSEP 1 -| #define HAVE_GETOPT_LONG 1 -| #define HAVE_FORK 1 -| #define HAVE_VFORK 1 -| #define HAVE_STRFTIME 1 -| #define HAVE_SETLINEBUF 1 -| #define HAVE_ALARM 1 -| #define HAVE_VSNPRINTF 1 -| #define HAVE_SNPRINTF 1 -| #define RETSIGTYPE void -| #define RETSIGVAL /**/ -| #define HAVE_SIGACTION 1 -| #define HAVE_GETRPCBYNUMBER 1 -| #define HAVE_ETHER_NTOHOST 1 -| #define USE_ETHER_NTOHOST 1 -| /* end confdefs.h. */ -| -| #include -| #include -| #include -| #include -| struct mbuf; -| struct rtentry; -| #include -| #include -| -| -| int -| main () -| { -| #ifndef ether_ntohost -| #ifdef __cplusplus -| (void) ether_ntohost; -| #else -| (void) ether_ntohost; -| #endif -| #endif -| -| ; -| return 0; -| } -configure:5900: result: no -configure:5929: checking netinet/ether.h usability -configure:5929: /usr/bin/gcc -c -g -O2 conftest.c >&5 -configure:5929: $? = 0 -configure:5929: result: yes -configure:5929: checking netinet/ether.h presence -configure:5929: /usr/bin/gcc -E conftest.c -configure:5929: $? = 0 -configure:5929: result: yes -configure:5929: checking for netinet/ether.h -configure:5929: result: yes -configure:5947: checking whether ether_ntohost is declared -configure:5947: /usr/bin/gcc -c -g -O2 conftest.c >&5 -configure:5947: $? = 0 -configure:5947: result: yes -configure:6000: checking for dlpi_walk in -ldlpi -configure:6025: /usr/bin/gcc -o conftest -g -O2 conftest.c -ldlpi -L/lib -L/usr/local/lib -Wl,-rpath,/usr/local/lib -lpcap >&5 -/usr/bin/ld: cannot find -ldlpi -collect2: error: ld returned 1 exit status -configure:6025: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "" -| #define PACKAGE_TARNAME "" -| #define PACKAGE_VERSION "" -| #define PACKAGE_STRING "" -| #define PACKAGE_BUGREPORT "" -| #define PACKAGE_URL "" -| #define inline inline -| #define HAVE___ATTRIBUTE__ 1 -| #define __ATTRIBUTE___NORETURN_OK_FOR_FUNCTION_POINTERS 1 -| #define __ATTRIBUTE___FORMAT_OK 1 -| #define __ATTRIBUTE___FORMAT_OK_FOR_FUNCTION_POINTERS 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_FCNTL_H 1 -| #define HAVE_RPC_RPC_H 1 -| #define HAVE_NETINET_IF_ETHER_H 1 -| #define TIME_WITH_SYS_TIME 1 -| #define ENABLE_SMB 1 -| #define HAVE_OPENAT 1 -| #define HAVE_OS_IPV6_SUPPORT 1 -| #define HAVE_VFPRINTF 1 -| #define HAVE_STRDUP 1 -| #define HAVE_STRSEP 1 -| #define HAVE_GETOPT_LONG 1 -| #define HAVE_FORK 1 -| #define HAVE_VFORK 1 -| #define HAVE_STRFTIME 1 -| #define HAVE_SETLINEBUF 1 -| #define HAVE_ALARM 1 -| #define HAVE_VSNPRINTF 1 -| #define HAVE_SNPRINTF 1 -| #define RETSIGTYPE void -| #define RETSIGVAL /**/ -| #define HAVE_SIGACTION 1 -| #define HAVE_GETRPCBYNUMBER 1 -| #define HAVE_ETHER_NTOHOST 1 -| #define USE_ETHER_NTOHOST 1 -| #define HAVE_NETINET_ETHER_H 1 -| #define NETINET_ETHER_H_DECLARES_ETHER_NTOHOST /**/ -| #define HAVE_DECL_ETHER_NTOHOST 1 -| /* end confdefs.h. */ -| -| /* Override any GCC internal prototype to avoid an error. -| Use char because int might match the return type of a GCC -| builtin and then its argument prototype would still apply. */ -| #ifdef __cplusplus -| extern "C" -| #endif -| char dlpi_walk (); -| int -| main () -| { -| return dlpi_walk (); -| ; -| return 0; -| } -configure:6034: result: no -configure:6041: checking for pcap_list_datalinks -configure:6041: /usr/bin/gcc -o conftest -g -O2 conftest.c -L/usr/local/lib -Wl,-rpath,/usr/local/lib -lpcap >&5 -configure:6041: $? = 0 -configure:6041: result: yes -configure:6049: checking for pcap_free_datalinks -configure:6049: /usr/bin/gcc -o conftest -g -O2 conftest.c -L/usr/local/lib -Wl,-rpath,/usr/local/lib -lpcap >&5 -configure:6049: $? = 0 -configure:6049: result: yes -configure:6072: checking for pcap_set_datalink -configure:6072: /usr/bin/gcc -o conftest -g -O2 conftest.c -L/usr/local/lib -Wl,-rpath,/usr/local/lib -lpcap >&5 -configure:6072: $? = 0 -configure:6072: result: yes -configure:6081: checking for pcap_datalink_name_to_val -configure:6081: /usr/bin/gcc -o conftest -g -O2 conftest.c -L/usr/local/lib -Wl,-rpath,/usr/local/lib -lpcap >&5 -configure:6081: $? = 0 -configure:6081: result: yes -configure:6087: checking for pcap_datalink_val_to_description -configure:6087: /usr/bin/gcc -o conftest -g -O2 conftest.c -L/usr/local/lib -Wl,-rpath,/usr/local/lib -lpcap >&5 -configure:6087: $? = 0 -configure:6087: result: yes -configure:6118: checking for pcap_breakloop -configure:6118: /usr/bin/gcc -o conftest -g -O2 conftest.c -L/usr/local/lib -Wl,-rpath,/usr/local/lib -lpcap >&5 -configure:6118: $? = 0 -configure:6118: result: yes -configure:6128: checking for pcap_dump_ftell -configure:6128: /usr/bin/gcc -o conftest -g -O2 conftest.c -L/usr/local/lib -Wl,-rpath,/usr/local/lib -lpcap >&5 -configure:6128: $? = 0 -configure:6128: result: yes -configure:6152: checking for pcap_create -configure:6152: /usr/bin/gcc -o conftest -g -O2 conftest.c -L/usr/local/lib -Wl,-rpath,/usr/local/lib -lpcap >&5 -configure:6152: $? = 0 -configure:6152: result: yes -configure:6168: checking for pcap_set_tstamp_type -configure:6168: /usr/bin/gcc -o conftest -g -O2 conftest.c -L/usr/local/lib -Wl,-rpath,/usr/local/lib -lpcap >&5 -configure:6168: $? = 0 -configure:6168: result: yes -configure:6183: checking for pcap_set_tstamp_precision -configure:6183: /usr/bin/gcc -o conftest -g -O2 conftest.c -L/usr/local/lib -Wl,-rpath,/usr/local/lib -lpcap >&5 -configure:6183: $? = 0 -configure:6183: result: yes -configure:6201: checking for pcap_findalldevs -configure:6201: /usr/bin/gcc -o conftest -g -O2 conftest.c -L/usr/local/lib -Wl,-rpath,/usr/local/lib -lpcap >&5 -configure:6201: $? = 0 -configure:6201: result: yes -configure:6201: checking for pcap_dump_flush -configure:6201: /usr/bin/gcc -o conftest -g -O2 conftest.c -L/usr/local/lib -Wl,-rpath,/usr/local/lib -lpcap >&5 -configure:6201: $? = 0 -configure:6201: result: yes -configure:6201: checking for pcap_lib_version -configure:6201: /usr/bin/gcc -o conftest -g -O2 conftest.c -L/usr/local/lib -Wl,-rpath,/usr/local/lib -lpcap >&5 -configure:6201: $? = 0 -configure:6201: result: yes -configure:6201: checking for pcap_setdirection -configure:6201: /usr/bin/gcc -o conftest -g -O2 conftest.c -L/usr/local/lib -Wl,-rpath,/usr/local/lib -lpcap >&5 -configure:6201: $? = 0 -configure:6201: result: yes -configure:6201: checking for pcap_set_immediate_mode -configure:6201: /usr/bin/gcc -o conftest -g -O2 conftest.c -L/usr/local/lib -Wl,-rpath,/usr/local/lib -lpcap >&5 -configure:6201: $? = 0 -configure:6201: result: yes -configure:6213: checking for pcap_if_t -configure:6213: /usr/bin/gcc -c -g -O2 -I/usr/local/include -I../src conftest.c >&5 -configure:6213: $? = 0 -configure:6213: /usr/bin/gcc -c -g -O2 -I/usr/local/include -I../src conftest.c >&5 -conftest.c: In function 'main': -conftest.c:71:24: error: expected expression before ')' token - if (sizeof ((pcap_if_t))) - ^ -configure:6213: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "" -| #define PACKAGE_TARNAME "" -| #define PACKAGE_VERSION "" -| #define PACKAGE_STRING "" -| #define PACKAGE_BUGREPORT "" -| #define PACKAGE_URL "" -| #define inline inline -| #define HAVE___ATTRIBUTE__ 1 -| #define __ATTRIBUTE___NORETURN_OK_FOR_FUNCTION_POINTERS 1 -| #define __ATTRIBUTE___FORMAT_OK 1 -| #define __ATTRIBUTE___FORMAT_OK_FOR_FUNCTION_POINTERS 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_FCNTL_H 1 -| #define HAVE_RPC_RPC_H 1 -| #define HAVE_NETINET_IF_ETHER_H 1 -| #define TIME_WITH_SYS_TIME 1 -| #define ENABLE_SMB 1 -| #define HAVE_OPENAT 1 -| #define HAVE_OS_IPV6_SUPPORT 1 -| #define HAVE_VFPRINTF 1 -| #define HAVE_STRDUP 1 -| #define HAVE_STRSEP 1 -| #define HAVE_GETOPT_LONG 1 -| #define HAVE_FORK 1 -| #define HAVE_VFORK 1 -| #define HAVE_STRFTIME 1 -| #define HAVE_SETLINEBUF 1 -| #define HAVE_ALARM 1 -| #define HAVE_VSNPRINTF 1 -| #define HAVE_SNPRINTF 1 -| #define RETSIGTYPE void -| #define RETSIGVAL /**/ -| #define HAVE_SIGACTION 1 -| #define HAVE_GETRPCBYNUMBER 1 -| #define HAVE_ETHER_NTOHOST 1 -| #define USE_ETHER_NTOHOST 1 -| #define HAVE_NETINET_ETHER_H 1 -| #define NETINET_ETHER_H_DECLARES_ETHER_NTOHOST /**/ -| #define HAVE_DECL_ETHER_NTOHOST 1 -| #define HAVE_PCAP_LIST_DATALINKS 1 -| #define HAVE_PCAP_FREE_DATALINKS 1 -| #define HAVE_PCAP_SET_DATALINK 1 -| #define HAVE_PCAP_DATALINK_NAME_TO_VAL 1 -| #define HAVE_PCAP_DATALINK_VAL_TO_DESCRIPTION 1 -| #define HAVE_PCAP_BREAKLOOP 1 -| #define HAVE_PCAP_DUMP_FTELL 1 -| #define HAVE_PCAP_CREATE 1 -| #define HAVE_PCAP_SET_TSTAMP_TYPE 1 -| #define HAVE_PCAP_SET_TSTAMP_PRECISION 1 -| #define HAVE_PCAP_FINDALLDEVS 1 -| #define HAVE_PCAP_DUMP_FLUSH 1 -| #define HAVE_PCAP_LIB_VERSION 1 -| #define HAVE_PCAP_SETDIRECTION 1 -| #define HAVE_PCAP_SET_IMMEDIATE_MODE 1 -| /* end confdefs.h. */ -| #include -| -| int -| main () -| { -| if (sizeof ((pcap_if_t))) -| return 0; -| ; -| return 0; -| } -configure:6213: result: yes -configure:6269: checking for pcap_set_parser_debug -configure:6269: /usr/bin/gcc -o conftest -g -O2 conftest.c -L/usr/local/lib -Wl,-rpath,/usr/local/lib -lpcap >&5 -/tmp/cc9tyGwc.o: In function `main': -/home/yangwei/tcpdump_mesa/cmake-build-debug/conftest.c:101: undefined reference to `pcap_set_parser_debug' -collect2: error: ld returned 1 exit status -configure:6269: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "" -| #define PACKAGE_TARNAME "" -| #define PACKAGE_VERSION "" -| #define PACKAGE_STRING "" -| #define PACKAGE_BUGREPORT "" -| #define PACKAGE_URL "" -| #define inline inline -| #define HAVE___ATTRIBUTE__ 1 -| #define __ATTRIBUTE___NORETURN_OK_FOR_FUNCTION_POINTERS 1 -| #define __ATTRIBUTE___FORMAT_OK 1 -| #define __ATTRIBUTE___FORMAT_OK_FOR_FUNCTION_POINTERS 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_FCNTL_H 1 -| #define HAVE_RPC_RPC_H 1 -| #define HAVE_NETINET_IF_ETHER_H 1 -| #define TIME_WITH_SYS_TIME 1 -| #define ENABLE_SMB 1 -| #define HAVE_OPENAT 1 -| #define HAVE_OS_IPV6_SUPPORT 1 -| #define HAVE_VFPRINTF 1 -| #define HAVE_STRDUP 1 -| #define HAVE_STRSEP 1 -| #define HAVE_GETOPT_LONG 1 -| #define HAVE_FORK 1 -| #define HAVE_VFORK 1 -| #define HAVE_STRFTIME 1 -| #define HAVE_SETLINEBUF 1 -| #define HAVE_ALARM 1 -| #define HAVE_VSNPRINTF 1 -| #define HAVE_SNPRINTF 1 -| #define RETSIGTYPE void -| #define RETSIGVAL /**/ -| #define HAVE_SIGACTION 1 -| #define HAVE_GETRPCBYNUMBER 1 -| #define HAVE_ETHER_NTOHOST 1 -| #define USE_ETHER_NTOHOST 1 -| #define HAVE_NETINET_ETHER_H 1 -| #define NETINET_ETHER_H_DECLARES_ETHER_NTOHOST /**/ -| #define HAVE_DECL_ETHER_NTOHOST 1 -| #define HAVE_PCAP_LIST_DATALINKS 1 -| #define HAVE_PCAP_FREE_DATALINKS 1 -| #define HAVE_PCAP_SET_DATALINK 1 -| #define HAVE_PCAP_DATALINK_NAME_TO_VAL 1 -| #define HAVE_PCAP_DATALINK_VAL_TO_DESCRIPTION 1 -| #define HAVE_PCAP_BREAKLOOP 1 -| #define HAVE_PCAP_DUMP_FTELL 1 -| #define HAVE_PCAP_CREATE 1 -| #define HAVE_PCAP_SET_TSTAMP_TYPE 1 -| #define HAVE_PCAP_SET_TSTAMP_PRECISION 1 -| #define HAVE_PCAP_FINDALLDEVS 1 -| #define HAVE_PCAP_DUMP_FLUSH 1 -| #define HAVE_PCAP_LIB_VERSION 1 -| #define HAVE_PCAP_SETDIRECTION 1 -| #define HAVE_PCAP_SET_IMMEDIATE_MODE 1 -| #define HAVE_PCAP_IF_T 1 -| /* end confdefs.h. */ -| /* Define pcap_set_parser_debug to an innocuous variant, in case declares pcap_set_parser_debug. -| For example, HP-UX 11i declares gettimeofday. */ -| #define pcap_set_parser_debug innocuous_pcap_set_parser_debug -| -| /* System header to define __stub macros and hopefully few prototypes, -| which can conflict with char pcap_set_parser_debug (); below. -| Prefer to if __STDC__ is defined, since -| exists even on freestanding compilers. */ -| -| #ifdef __STDC__ -| # include -| #else -| # include -| #endif -| -| #undef pcap_set_parser_debug -| -| /* Override any GCC internal prototype to avoid an error. -| Use char because int might match the return type of a GCC -| builtin and then its argument prototype would still apply. */ -| #ifdef __cplusplus -| extern "C" -| #endif -| char pcap_set_parser_debug (); -| /* The GNU C library defines this for functions which it implements -| to always fail with ENOSYS. Some functions are actually named -| something starting with __ and the normal name is an alias. */ -| #if defined __stub_pcap_set_parser_debug || defined __stub___pcap_set_parser_debug -| choke me -| #endif -| -| int -| main () -| { -| return pcap_set_parser_debug (); -| ; -| return 0; -| } -configure:6269: result: no -configure:6283: checking whether pcap_debug is defined by libpcap -configure:6300: /usr/bin/gcc -o conftest -g -O2 conftest.c -L/usr/local/lib -Wl,-rpath,/usr/local/lib -lpcap >&5 -/tmp/cc1p0PRe.o: In function `main': -/home/yangwei/tcpdump_mesa/cmake-build-debug/conftest.c:78: undefined reference to `pcap_debug' -collect2: error: ld returned 1 exit status -configure:6300: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "" -| #define PACKAGE_TARNAME "" -| #define PACKAGE_VERSION "" -| #define PACKAGE_STRING "" -| #define PACKAGE_BUGREPORT "" -| #define PACKAGE_URL "" -| #define inline inline -| #define HAVE___ATTRIBUTE__ 1 -| #define __ATTRIBUTE___NORETURN_OK_FOR_FUNCTION_POINTERS 1 -| #define __ATTRIBUTE___FORMAT_OK 1 -| #define __ATTRIBUTE___FORMAT_OK_FOR_FUNCTION_POINTERS 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_FCNTL_H 1 -| #define HAVE_RPC_RPC_H 1 -| #define HAVE_NETINET_IF_ETHER_H 1 -| #define TIME_WITH_SYS_TIME 1 -| #define ENABLE_SMB 1 -| #define HAVE_OPENAT 1 -| #define HAVE_OS_IPV6_SUPPORT 1 -| #define HAVE_VFPRINTF 1 -| #define HAVE_STRDUP 1 -| #define HAVE_STRSEP 1 -| #define HAVE_GETOPT_LONG 1 -| #define HAVE_FORK 1 -| #define HAVE_VFORK 1 -| #define HAVE_STRFTIME 1 -| #define HAVE_SETLINEBUF 1 -| #define HAVE_ALARM 1 -| #define HAVE_VSNPRINTF 1 -| #define HAVE_SNPRINTF 1 -| #define RETSIGTYPE void -| #define RETSIGVAL /**/ -| #define HAVE_SIGACTION 1 -| #define HAVE_GETRPCBYNUMBER 1 -| #define HAVE_ETHER_NTOHOST 1 -| #define USE_ETHER_NTOHOST 1 -| #define HAVE_NETINET_ETHER_H 1 -| #define NETINET_ETHER_H_DECLARES_ETHER_NTOHOST /**/ -| #define HAVE_DECL_ETHER_NTOHOST 1 -| #define HAVE_PCAP_LIST_DATALINKS 1 -| #define HAVE_PCAP_FREE_DATALINKS 1 -| #define HAVE_PCAP_SET_DATALINK 1 -| #define HAVE_PCAP_DATALINK_NAME_TO_VAL 1 -| #define HAVE_PCAP_DATALINK_VAL_TO_DESCRIPTION 1 -| #define HAVE_PCAP_BREAKLOOP 1 -| #define HAVE_PCAP_DUMP_FTELL 1 -| #define HAVE_PCAP_CREATE 1 -| #define HAVE_PCAP_SET_TSTAMP_TYPE 1 -| #define HAVE_PCAP_SET_TSTAMP_PRECISION 1 -| #define HAVE_PCAP_FINDALLDEVS 1 -| #define HAVE_PCAP_DUMP_FLUSH 1 -| #define HAVE_PCAP_LIB_VERSION 1 -| #define HAVE_PCAP_SETDIRECTION 1 -| #define HAVE_PCAP_SET_IMMEDIATE_MODE 1 -| #define HAVE_PCAP_IF_T 1 -| /* end confdefs.h. */ -| -| int -| main () -| { -| -| extern int pcap_debug; -| -| return pcap_debug; -| -| ; -| return 0; -| } -configure:6314: result: no -configure:6319: checking whether yydebug is defined by libpcap -configure:6336: /usr/bin/gcc -o conftest -g -O2 conftest.c -L/usr/local/lib -Wl,-rpath,/usr/local/lib -lpcap >&5 -/tmp/ccJHfWhh.o: In function `main': -/home/yangwei/tcpdump_mesa/cmake-build-debug/conftest.c:78: undefined reference to `yydebug' -collect2: error: ld returned 1 exit status -configure:6336: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "" -| #define PACKAGE_TARNAME "" -| #define PACKAGE_VERSION "" -| #define PACKAGE_STRING "" -| #define PACKAGE_BUGREPORT "" -| #define PACKAGE_URL "" -| #define inline inline -| #define HAVE___ATTRIBUTE__ 1 -| #define __ATTRIBUTE___NORETURN_OK_FOR_FUNCTION_POINTERS 1 -| #define __ATTRIBUTE___FORMAT_OK 1 -| #define __ATTRIBUTE___FORMAT_OK_FOR_FUNCTION_POINTERS 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_FCNTL_H 1 -| #define HAVE_RPC_RPC_H 1 -| #define HAVE_NETINET_IF_ETHER_H 1 -| #define TIME_WITH_SYS_TIME 1 -| #define ENABLE_SMB 1 -| #define HAVE_OPENAT 1 -| #define HAVE_OS_IPV6_SUPPORT 1 -| #define HAVE_VFPRINTF 1 -| #define HAVE_STRDUP 1 -| #define HAVE_STRSEP 1 -| #define HAVE_GETOPT_LONG 1 -| #define HAVE_FORK 1 -| #define HAVE_VFORK 1 -| #define HAVE_STRFTIME 1 -| #define HAVE_SETLINEBUF 1 -| #define HAVE_ALARM 1 -| #define HAVE_VSNPRINTF 1 -| #define HAVE_SNPRINTF 1 -| #define RETSIGTYPE void -| #define RETSIGVAL /**/ -| #define HAVE_SIGACTION 1 -| #define HAVE_GETRPCBYNUMBER 1 -| #define HAVE_ETHER_NTOHOST 1 -| #define USE_ETHER_NTOHOST 1 -| #define HAVE_NETINET_ETHER_H 1 -| #define NETINET_ETHER_H_DECLARES_ETHER_NTOHOST /**/ -| #define HAVE_DECL_ETHER_NTOHOST 1 -| #define HAVE_PCAP_LIST_DATALINKS 1 -| #define HAVE_PCAP_FREE_DATALINKS 1 -| #define HAVE_PCAP_SET_DATALINK 1 -| #define HAVE_PCAP_DATALINK_NAME_TO_VAL 1 -| #define HAVE_PCAP_DATALINK_VAL_TO_DESCRIPTION 1 -| #define HAVE_PCAP_BREAKLOOP 1 -| #define HAVE_PCAP_DUMP_FTELL 1 -| #define HAVE_PCAP_CREATE 1 -| #define HAVE_PCAP_SET_TSTAMP_TYPE 1 -| #define HAVE_PCAP_SET_TSTAMP_PRECISION 1 -| #define HAVE_PCAP_FINDALLDEVS 1 -| #define HAVE_PCAP_DUMP_FLUSH 1 -| #define HAVE_PCAP_LIB_VERSION 1 -| #define HAVE_PCAP_SETDIRECTION 1 -| #define HAVE_PCAP_SET_IMMEDIATE_MODE 1 -| #define HAVE_PCAP_IF_T 1 -| /* end confdefs.h. */ -| -| int -| main () -| { -| -| extern int yydebug; -| -| return yydebug; -| -| ; -| return 0; -| } -configure:6350: result: no -configure:6357: checking for pcap_set_optimizer_debug -configure:6357: /usr/bin/gcc -o conftest -g -O2 conftest.c -L/usr/local/lib -Wl,-rpath,/usr/local/lib -lpcap >&5 -/tmp/ccd4hPKj.o: In function `main': -/home/yangwei/tcpdump_mesa/cmake-build-debug/conftest.c:101: undefined reference to `pcap_set_optimizer_debug' -collect2: error: ld returned 1 exit status -configure:6357: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "" -| #define PACKAGE_TARNAME "" -| #define PACKAGE_VERSION "" -| #define PACKAGE_STRING "" -| #define PACKAGE_BUGREPORT "" -| #define PACKAGE_URL "" -| #define inline inline -| #define HAVE___ATTRIBUTE__ 1 -| #define __ATTRIBUTE___NORETURN_OK_FOR_FUNCTION_POINTERS 1 -| #define __ATTRIBUTE___FORMAT_OK 1 -| #define __ATTRIBUTE___FORMAT_OK_FOR_FUNCTION_POINTERS 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_FCNTL_H 1 -| #define HAVE_RPC_RPC_H 1 -| #define HAVE_NETINET_IF_ETHER_H 1 -| #define TIME_WITH_SYS_TIME 1 -| #define ENABLE_SMB 1 -| #define HAVE_OPENAT 1 -| #define HAVE_OS_IPV6_SUPPORT 1 -| #define HAVE_VFPRINTF 1 -| #define HAVE_STRDUP 1 -| #define HAVE_STRSEP 1 -| #define HAVE_GETOPT_LONG 1 -| #define HAVE_FORK 1 -| #define HAVE_VFORK 1 -| #define HAVE_STRFTIME 1 -| #define HAVE_SETLINEBUF 1 -| #define HAVE_ALARM 1 -| #define HAVE_VSNPRINTF 1 -| #define HAVE_SNPRINTF 1 -| #define RETSIGTYPE void -| #define RETSIGVAL /**/ -| #define HAVE_SIGACTION 1 -| #define HAVE_GETRPCBYNUMBER 1 -| #define HAVE_ETHER_NTOHOST 1 -| #define USE_ETHER_NTOHOST 1 -| #define HAVE_NETINET_ETHER_H 1 -| #define NETINET_ETHER_H_DECLARES_ETHER_NTOHOST /**/ -| #define HAVE_DECL_ETHER_NTOHOST 1 -| #define HAVE_PCAP_LIST_DATALINKS 1 -| #define HAVE_PCAP_FREE_DATALINKS 1 -| #define HAVE_PCAP_SET_DATALINK 1 -| #define HAVE_PCAP_DATALINK_NAME_TO_VAL 1 -| #define HAVE_PCAP_DATALINK_VAL_TO_DESCRIPTION 1 -| #define HAVE_PCAP_BREAKLOOP 1 -| #define HAVE_PCAP_DUMP_FTELL 1 -| #define HAVE_PCAP_CREATE 1 -| #define HAVE_PCAP_SET_TSTAMP_TYPE 1 -| #define HAVE_PCAP_SET_TSTAMP_PRECISION 1 -| #define HAVE_PCAP_FINDALLDEVS 1 -| #define HAVE_PCAP_DUMP_FLUSH 1 -| #define HAVE_PCAP_LIB_VERSION 1 -| #define HAVE_PCAP_SETDIRECTION 1 -| #define HAVE_PCAP_SET_IMMEDIATE_MODE 1 -| #define HAVE_PCAP_IF_T 1 -| /* end confdefs.h. */ -| /* Define pcap_set_optimizer_debug to an innocuous variant, in case declares pcap_set_optimizer_debug. -| For example, HP-UX 11i declares gettimeofday. */ -| #define pcap_set_optimizer_debug innocuous_pcap_set_optimizer_debug -| -| /* System header to define __stub macros and hopefully few prototypes, -| which can conflict with char pcap_set_optimizer_debug (); below. -| Prefer to if __STDC__ is defined, since -| exists even on freestanding compilers. */ -| -| #ifdef __STDC__ -| # include -| #else -| # include -| #endif -| -| #undef pcap_set_optimizer_debug -| -| /* Override any GCC internal prototype to avoid an error. -| Use char because int might match the return type of a GCC -| builtin and then its argument prototype would still apply. */ -| #ifdef __cplusplus -| extern "C" -| #endif -| char pcap_set_optimizer_debug (); -| /* The GNU C library defines this for functions which it implements -| to always fail with ENOSYS. Some functions are actually named -| something starting with __ and the normal name is an alias. */ -| #if defined __stub_pcap_set_optimizer_debug || defined __stub___pcap_set_optimizer_debug -| choke me -| #endif -| -| int -| main () -| { -| return pcap_set_optimizer_debug (); -| ; -| return 0; -| } -configure:6357: result: no -configure:6366: checking for bpf_dump -configure:6366: /usr/bin/gcc -o conftest -g -O2 conftest.c -L/usr/local/lib -Wl,-rpath,/usr/local/lib -lpcap >&5 -configure:6366: $? = 0 -configure:6366: result: yes -configure:6445: checking for int8_t -configure:6445: /usr/bin/gcc -c -g -O2 conftest.c >&5 -configure:6445: $? = 0 -configure:6445: /usr/bin/gcc -c -g -O2 conftest.c >&5 -conftest.c: In function 'main': -conftest.c:105:12: error: size of array 'test_array' is negative - static int test_array [1 - 2 * !((int8_t) (((((int8_t) 1 << N) << N) - 1) * 2 + 1) - ^ -configure:6445: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "" -| #define PACKAGE_TARNAME "" -| #define PACKAGE_VERSION "" -| #define PACKAGE_STRING "" -| #define PACKAGE_BUGREPORT "" -| #define PACKAGE_URL "" -| #define inline inline -| #define HAVE___ATTRIBUTE__ 1 -| #define __ATTRIBUTE___NORETURN_OK_FOR_FUNCTION_POINTERS 1 -| #define __ATTRIBUTE___FORMAT_OK 1 -| #define __ATTRIBUTE___FORMAT_OK_FOR_FUNCTION_POINTERS 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_FCNTL_H 1 -| #define HAVE_RPC_RPC_H 1 -| #define HAVE_NETINET_IF_ETHER_H 1 -| #define TIME_WITH_SYS_TIME 1 -| #define ENABLE_SMB 1 -| #define HAVE_OPENAT 1 -| #define HAVE_OS_IPV6_SUPPORT 1 -| #define HAVE_VFPRINTF 1 -| #define HAVE_STRDUP 1 -| #define HAVE_STRSEP 1 -| #define HAVE_GETOPT_LONG 1 -| #define HAVE_FORK 1 -| #define HAVE_VFORK 1 -| #define HAVE_STRFTIME 1 -| #define HAVE_SETLINEBUF 1 -| #define HAVE_ALARM 1 -| #define HAVE_VSNPRINTF 1 -| #define HAVE_SNPRINTF 1 -| #define RETSIGTYPE void -| #define RETSIGVAL /**/ -| #define HAVE_SIGACTION 1 -| #define HAVE_GETRPCBYNUMBER 1 -| #define HAVE_ETHER_NTOHOST 1 -| #define USE_ETHER_NTOHOST 1 -| #define HAVE_NETINET_ETHER_H 1 -| #define NETINET_ETHER_H_DECLARES_ETHER_NTOHOST /**/ -| #define HAVE_DECL_ETHER_NTOHOST 1 -| #define HAVE_PCAP_LIST_DATALINKS 1 -| #define HAVE_PCAP_FREE_DATALINKS 1 -| #define HAVE_PCAP_SET_DATALINK 1 -| #define HAVE_PCAP_DATALINK_NAME_TO_VAL 1 -| #define HAVE_PCAP_DATALINK_VAL_TO_DESCRIPTION 1 -| #define HAVE_PCAP_BREAKLOOP 1 -| #define HAVE_PCAP_DUMP_FTELL 1 -| #define HAVE_PCAP_CREATE 1 -| #define HAVE_PCAP_SET_TSTAMP_TYPE 1 -| #define HAVE_PCAP_SET_TSTAMP_PRECISION 1 -| #define HAVE_PCAP_FINDALLDEVS 1 -| #define HAVE_PCAP_DUMP_FLUSH 1 -| #define HAVE_PCAP_LIB_VERSION 1 -| #define HAVE_PCAP_SETDIRECTION 1 -| #define HAVE_PCAP_SET_IMMEDIATE_MODE 1 -| #define HAVE_PCAP_IF_T 1 -| #define HAVE_BPF_DUMP 1 -| /* end confdefs.h. */ -| #include -| #ifdef HAVE_SYS_TYPES_H -| # include -| #endif -| #ifdef HAVE_SYS_STAT_H -| # include -| #endif -| #ifdef STDC_HEADERS -| # include -| # include -| #else -| # ifdef HAVE_STDLIB_H -| # include -| # endif -| #endif -| #ifdef HAVE_STRING_H -| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H -| # include -| # endif -| # include -| #endif -| #ifdef HAVE_STRINGS_H -| # include -| #endif -| #ifdef HAVE_INTTYPES_H -| # include -| #endif -| #ifdef HAVE_STDINT_H -| # include -| #endif -| #ifdef HAVE_UNISTD_H -| # include -| #endif -| enum { N = 8 / 2 - 1 }; -| int -| main () -| { -| static int test_array [1 - 2 * !((int8_t) (((((int8_t) 1 << N) << N) - 1) * 2 + 1) -| < (int8_t) (((((int8_t) 1 << N) << N) - 1) * 2 + 2))]; -| test_array [0] = 0; -| return test_array [0]; -| -| ; -| return 0; -| } -configure:6445: result: yes -configure:6456: checking for int16_t -configure:6456: /usr/bin/gcc -c -g -O2 conftest.c >&5 -configure:6456: $? = 0 -configure:6456: /usr/bin/gcc -c -g -O2 conftest.c >&5 -conftest.c: In function 'main': -conftest.c:105:12: error: size of array 'test_array' is negative - static int test_array [1 - 2 * !((int16_t) (((((int16_t) 1 << N) << N) - 1) * 2 + 1) - ^ -configure:6456: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "" -| #define PACKAGE_TARNAME "" -| #define PACKAGE_VERSION "" -| #define PACKAGE_STRING "" -| #define PACKAGE_BUGREPORT "" -| #define PACKAGE_URL "" -| #define inline inline -| #define HAVE___ATTRIBUTE__ 1 -| #define __ATTRIBUTE___NORETURN_OK_FOR_FUNCTION_POINTERS 1 -| #define __ATTRIBUTE___FORMAT_OK 1 -| #define __ATTRIBUTE___FORMAT_OK_FOR_FUNCTION_POINTERS 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_FCNTL_H 1 -| #define HAVE_RPC_RPC_H 1 -| #define HAVE_NETINET_IF_ETHER_H 1 -| #define TIME_WITH_SYS_TIME 1 -| #define ENABLE_SMB 1 -| #define HAVE_OPENAT 1 -| #define HAVE_OS_IPV6_SUPPORT 1 -| #define HAVE_VFPRINTF 1 -| #define HAVE_STRDUP 1 -| #define HAVE_STRSEP 1 -| #define HAVE_GETOPT_LONG 1 -| #define HAVE_FORK 1 -| #define HAVE_VFORK 1 -| #define HAVE_STRFTIME 1 -| #define HAVE_SETLINEBUF 1 -| #define HAVE_ALARM 1 -| #define HAVE_VSNPRINTF 1 -| #define HAVE_SNPRINTF 1 -| #define RETSIGTYPE void -| #define RETSIGVAL /**/ -| #define HAVE_SIGACTION 1 -| #define HAVE_GETRPCBYNUMBER 1 -| #define HAVE_ETHER_NTOHOST 1 -| #define USE_ETHER_NTOHOST 1 -| #define HAVE_NETINET_ETHER_H 1 -| #define NETINET_ETHER_H_DECLARES_ETHER_NTOHOST /**/ -| #define HAVE_DECL_ETHER_NTOHOST 1 -| #define HAVE_PCAP_LIST_DATALINKS 1 -| #define HAVE_PCAP_FREE_DATALINKS 1 -| #define HAVE_PCAP_SET_DATALINK 1 -| #define HAVE_PCAP_DATALINK_NAME_TO_VAL 1 -| #define HAVE_PCAP_DATALINK_VAL_TO_DESCRIPTION 1 -| #define HAVE_PCAP_BREAKLOOP 1 -| #define HAVE_PCAP_DUMP_FTELL 1 -| #define HAVE_PCAP_CREATE 1 -| #define HAVE_PCAP_SET_TSTAMP_TYPE 1 -| #define HAVE_PCAP_SET_TSTAMP_PRECISION 1 -| #define HAVE_PCAP_FINDALLDEVS 1 -| #define HAVE_PCAP_DUMP_FLUSH 1 -| #define HAVE_PCAP_LIB_VERSION 1 -| #define HAVE_PCAP_SETDIRECTION 1 -| #define HAVE_PCAP_SET_IMMEDIATE_MODE 1 -| #define HAVE_PCAP_IF_T 1 -| #define HAVE_BPF_DUMP 1 -| /* end confdefs.h. */ -| #include -| #ifdef HAVE_SYS_TYPES_H -| # include -| #endif -| #ifdef HAVE_SYS_STAT_H -| # include -| #endif -| #ifdef STDC_HEADERS -| # include -| # include -| #else -| # ifdef HAVE_STDLIB_H -| # include -| # endif -| #endif -| #ifdef HAVE_STRING_H -| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H -| # include -| # endif -| # include -| #endif -| #ifdef HAVE_STRINGS_H -| # include -| #endif -| #ifdef HAVE_INTTYPES_H -| # include -| #endif -| #ifdef HAVE_STDINT_H -| # include -| #endif -| #ifdef HAVE_UNISTD_H -| # include -| #endif -| enum { N = 16 / 2 - 1 }; -| int -| main () -| { -| static int test_array [1 - 2 * !((int16_t) (((((int16_t) 1 << N) << N) - 1) * 2 + 1) -| < (int16_t) (((((int16_t) 1 << N) << N) - 1) * 2 + 2))]; -| test_array [0] = 0; -| return test_array [0]; -| -| ; -| return 0; -| } -configure:6456: result: yes -configure:6467: checking for int32_t -configure:6467: /usr/bin/gcc -c -g -O2 conftest.c >&5 -configure:6467: $? = 0 -configure:6467: /usr/bin/gcc -c -g -O2 conftest.c >&5 -conftest.c: In function 'main': -conftest.c:106:53: warning: integer overflow in expression [-Woverflow] - < (int32_t) (((((int32_t) 1 << N) << N) - 1) * 2 + 2))]; - ^ -conftest.c:105:12: error: storage size of 'test_array' isn't constant - static int test_array [1 - 2 * !((int32_t) (((((int32_t) 1 << N) << N) - 1) * 2 + 1) - ^ -configure:6467: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "" -| #define PACKAGE_TARNAME "" -| #define PACKAGE_VERSION "" -| #define PACKAGE_STRING "" -| #define PACKAGE_BUGREPORT "" -| #define PACKAGE_URL "" -| #define inline inline -| #define HAVE___ATTRIBUTE__ 1 -| #define __ATTRIBUTE___NORETURN_OK_FOR_FUNCTION_POINTERS 1 -| #define __ATTRIBUTE___FORMAT_OK 1 -| #define __ATTRIBUTE___FORMAT_OK_FOR_FUNCTION_POINTERS 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_FCNTL_H 1 -| #define HAVE_RPC_RPC_H 1 -| #define HAVE_NETINET_IF_ETHER_H 1 -| #define TIME_WITH_SYS_TIME 1 -| #define ENABLE_SMB 1 -| #define HAVE_OPENAT 1 -| #define HAVE_OS_IPV6_SUPPORT 1 -| #define HAVE_VFPRINTF 1 -| #define HAVE_STRDUP 1 -| #define HAVE_STRSEP 1 -| #define HAVE_GETOPT_LONG 1 -| #define HAVE_FORK 1 -| #define HAVE_VFORK 1 -| #define HAVE_STRFTIME 1 -| #define HAVE_SETLINEBUF 1 -| #define HAVE_ALARM 1 -| #define HAVE_VSNPRINTF 1 -| #define HAVE_SNPRINTF 1 -| #define RETSIGTYPE void -| #define RETSIGVAL /**/ -| #define HAVE_SIGACTION 1 -| #define HAVE_GETRPCBYNUMBER 1 -| #define HAVE_ETHER_NTOHOST 1 -| #define USE_ETHER_NTOHOST 1 -| #define HAVE_NETINET_ETHER_H 1 -| #define NETINET_ETHER_H_DECLARES_ETHER_NTOHOST /**/ -| #define HAVE_DECL_ETHER_NTOHOST 1 -| #define HAVE_PCAP_LIST_DATALINKS 1 -| #define HAVE_PCAP_FREE_DATALINKS 1 -| #define HAVE_PCAP_SET_DATALINK 1 -| #define HAVE_PCAP_DATALINK_NAME_TO_VAL 1 -| #define HAVE_PCAP_DATALINK_VAL_TO_DESCRIPTION 1 -| #define HAVE_PCAP_BREAKLOOP 1 -| #define HAVE_PCAP_DUMP_FTELL 1 -| #define HAVE_PCAP_CREATE 1 -| #define HAVE_PCAP_SET_TSTAMP_TYPE 1 -| #define HAVE_PCAP_SET_TSTAMP_PRECISION 1 -| #define HAVE_PCAP_FINDALLDEVS 1 -| #define HAVE_PCAP_DUMP_FLUSH 1 -| #define HAVE_PCAP_LIB_VERSION 1 -| #define HAVE_PCAP_SETDIRECTION 1 -| #define HAVE_PCAP_SET_IMMEDIATE_MODE 1 -| #define HAVE_PCAP_IF_T 1 -| #define HAVE_BPF_DUMP 1 -| /* end confdefs.h. */ -| #include -| #ifdef HAVE_SYS_TYPES_H -| # include -| #endif -| #ifdef HAVE_SYS_STAT_H -| # include -| #endif -| #ifdef STDC_HEADERS -| # include -| # include -| #else -| # ifdef HAVE_STDLIB_H -| # include -| # endif -| #endif -| #ifdef HAVE_STRING_H -| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H -| # include -| # endif -| # include -| #endif -| #ifdef HAVE_STRINGS_H -| # include -| #endif -| #ifdef HAVE_INTTYPES_H -| # include -| #endif -| #ifdef HAVE_STDINT_H -| # include -| #endif -| #ifdef HAVE_UNISTD_H -| # include -| #endif -| enum { N = 32 / 2 - 1 }; -| int -| main () -| { -| static int test_array [1 - 2 * !((int32_t) (((((int32_t) 1 << N) << N) - 1) * 2 + 1) -| < (int32_t) (((((int32_t) 1 << N) << N) - 1) * 2 + 2))]; -| test_array [0] = 0; -| return test_array [0]; -| -| ; -| return 0; -| } -configure:6467: result: yes -configure:6478: checking for int64_t -configure:6478: /usr/bin/gcc -c -g -O2 conftest.c >&5 -configure:6478: $? = 0 -configure:6478: /usr/bin/gcc -c -g -O2 conftest.c >&5 -conftest.c: In function 'main': -conftest.c:106:53: warning: integer overflow in expression [-Woverflow] - < (int64_t) (((((int64_t) 1 << N) << N) - 1) * 2 + 2))]; - ^ -conftest.c:105:12: error: storage size of 'test_array' isn't constant - static int test_array [1 - 2 * !((int64_t) (((((int64_t) 1 << N) << N) - 1) * 2 + 1) - ^ -configure:6478: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "" -| #define PACKAGE_TARNAME "" -| #define PACKAGE_VERSION "" -| #define PACKAGE_STRING "" -| #define PACKAGE_BUGREPORT "" -| #define PACKAGE_URL "" -| #define inline inline -| #define HAVE___ATTRIBUTE__ 1 -| #define __ATTRIBUTE___NORETURN_OK_FOR_FUNCTION_POINTERS 1 -| #define __ATTRIBUTE___FORMAT_OK 1 -| #define __ATTRIBUTE___FORMAT_OK_FOR_FUNCTION_POINTERS 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_FCNTL_H 1 -| #define HAVE_RPC_RPC_H 1 -| #define HAVE_NETINET_IF_ETHER_H 1 -| #define TIME_WITH_SYS_TIME 1 -| #define ENABLE_SMB 1 -| #define HAVE_OPENAT 1 -| #define HAVE_OS_IPV6_SUPPORT 1 -| #define HAVE_VFPRINTF 1 -| #define HAVE_STRDUP 1 -| #define HAVE_STRSEP 1 -| #define HAVE_GETOPT_LONG 1 -| #define HAVE_FORK 1 -| #define HAVE_VFORK 1 -| #define HAVE_STRFTIME 1 -| #define HAVE_SETLINEBUF 1 -| #define HAVE_ALARM 1 -| #define HAVE_VSNPRINTF 1 -| #define HAVE_SNPRINTF 1 -| #define RETSIGTYPE void -| #define RETSIGVAL /**/ -| #define HAVE_SIGACTION 1 -| #define HAVE_GETRPCBYNUMBER 1 -| #define HAVE_ETHER_NTOHOST 1 -| #define USE_ETHER_NTOHOST 1 -| #define HAVE_NETINET_ETHER_H 1 -| #define NETINET_ETHER_H_DECLARES_ETHER_NTOHOST /**/ -| #define HAVE_DECL_ETHER_NTOHOST 1 -| #define HAVE_PCAP_LIST_DATALINKS 1 -| #define HAVE_PCAP_FREE_DATALINKS 1 -| #define HAVE_PCAP_SET_DATALINK 1 -| #define HAVE_PCAP_DATALINK_NAME_TO_VAL 1 -| #define HAVE_PCAP_DATALINK_VAL_TO_DESCRIPTION 1 -| #define HAVE_PCAP_BREAKLOOP 1 -| #define HAVE_PCAP_DUMP_FTELL 1 -| #define HAVE_PCAP_CREATE 1 -| #define HAVE_PCAP_SET_TSTAMP_TYPE 1 -| #define HAVE_PCAP_SET_TSTAMP_PRECISION 1 -| #define HAVE_PCAP_FINDALLDEVS 1 -| #define HAVE_PCAP_DUMP_FLUSH 1 -| #define HAVE_PCAP_LIB_VERSION 1 -| #define HAVE_PCAP_SETDIRECTION 1 -| #define HAVE_PCAP_SET_IMMEDIATE_MODE 1 -| #define HAVE_PCAP_IF_T 1 -| #define HAVE_BPF_DUMP 1 -| /* end confdefs.h. */ -| #include -| #ifdef HAVE_SYS_TYPES_H -| # include -| #endif -| #ifdef HAVE_SYS_STAT_H -| # include -| #endif -| #ifdef STDC_HEADERS -| # include -| # include -| #else -| # ifdef HAVE_STDLIB_H -| # include -| # endif -| #endif -| #ifdef HAVE_STRING_H -| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H -| # include -| # endif -| # include -| #endif -| #ifdef HAVE_STRINGS_H -| # include -| #endif -| #ifdef HAVE_INTTYPES_H -| # include -| #endif -| #ifdef HAVE_STDINT_H -| # include -| #endif -| #ifdef HAVE_UNISTD_H -| # include -| #endif -| enum { N = 64 / 2 - 1 }; -| int -| main () -| { -| static int test_array [1 - 2 * !((int64_t) (((((int64_t) 1 << N) << N) - 1) * 2 + 1) -| < (int64_t) (((((int64_t) 1 << N) << N) - 1) * 2 + 2))]; -| test_array [0] = 0; -| return test_array [0]; -| -| ; -| return 0; -| } -configure:6478: result: yes -configure:6489: checking for uint8_t -configure:6489: /usr/bin/gcc -c -g -O2 conftest.c >&5 -configure:6489: $? = 0 -configure:6489: result: yes -configure:6503: checking for uint16_t -configure:6503: /usr/bin/gcc -c -g -O2 conftest.c >&5 -configure:6503: $? = 0 -configure:6503: result: yes -configure:6515: checking for uint32_t -configure:6515: /usr/bin/gcc -c -g -O2 conftest.c >&5 -configure:6515: $? = 0 -configure:6515: result: yes -configure:6529: checking for uint64_t -configure:6529: /usr/bin/gcc -c -g -O2 conftest.c >&5 -configure:6529: $? = 0 -configure:6529: result: yes -configure:6549: checking for uintptr_t -configure:6549: /usr/bin/gcc -c -g -O2 conftest.c >&5 -configure:6549: $? = 0 -configure:6549: /usr/bin/gcc -c -g -O2 conftest.c >&5 -conftest.c: In function 'main': -conftest.c:104:24: error: expected expression before ')' token - if (sizeof ((uintptr_t))) - ^ -configure:6549: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "" -| #define PACKAGE_TARNAME "" -| #define PACKAGE_VERSION "" -| #define PACKAGE_STRING "" -| #define PACKAGE_BUGREPORT "" -| #define PACKAGE_URL "" -| #define inline inline -| #define HAVE___ATTRIBUTE__ 1 -| #define __ATTRIBUTE___NORETURN_OK_FOR_FUNCTION_POINTERS 1 -| #define __ATTRIBUTE___FORMAT_OK 1 -| #define __ATTRIBUTE___FORMAT_OK_FOR_FUNCTION_POINTERS 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_FCNTL_H 1 -| #define HAVE_RPC_RPC_H 1 -| #define HAVE_NETINET_IF_ETHER_H 1 -| #define TIME_WITH_SYS_TIME 1 -| #define ENABLE_SMB 1 -| #define HAVE_OPENAT 1 -| #define HAVE_OS_IPV6_SUPPORT 1 -| #define HAVE_VFPRINTF 1 -| #define HAVE_STRDUP 1 -| #define HAVE_STRSEP 1 -| #define HAVE_GETOPT_LONG 1 -| #define HAVE_FORK 1 -| #define HAVE_VFORK 1 -| #define HAVE_STRFTIME 1 -| #define HAVE_SETLINEBUF 1 -| #define HAVE_ALARM 1 -| #define HAVE_VSNPRINTF 1 -| #define HAVE_SNPRINTF 1 -| #define RETSIGTYPE void -| #define RETSIGVAL /**/ -| #define HAVE_SIGACTION 1 -| #define HAVE_GETRPCBYNUMBER 1 -| #define HAVE_ETHER_NTOHOST 1 -| #define USE_ETHER_NTOHOST 1 -| #define HAVE_NETINET_ETHER_H 1 -| #define NETINET_ETHER_H_DECLARES_ETHER_NTOHOST /**/ -| #define HAVE_DECL_ETHER_NTOHOST 1 -| #define HAVE_PCAP_LIST_DATALINKS 1 -| #define HAVE_PCAP_FREE_DATALINKS 1 -| #define HAVE_PCAP_SET_DATALINK 1 -| #define HAVE_PCAP_DATALINK_NAME_TO_VAL 1 -| #define HAVE_PCAP_DATALINK_VAL_TO_DESCRIPTION 1 -| #define HAVE_PCAP_BREAKLOOP 1 -| #define HAVE_PCAP_DUMP_FTELL 1 -| #define HAVE_PCAP_CREATE 1 -| #define HAVE_PCAP_SET_TSTAMP_TYPE 1 -| #define HAVE_PCAP_SET_TSTAMP_PRECISION 1 -| #define HAVE_PCAP_FINDALLDEVS 1 -| #define HAVE_PCAP_DUMP_FLUSH 1 -| #define HAVE_PCAP_LIB_VERSION 1 -| #define HAVE_PCAP_SETDIRECTION 1 -| #define HAVE_PCAP_SET_IMMEDIATE_MODE 1 -| #define HAVE_PCAP_IF_T 1 -| #define HAVE_BPF_DUMP 1 -| /* end confdefs.h. */ -| #include -| #ifdef HAVE_SYS_TYPES_H -| # include -| #endif -| #ifdef HAVE_SYS_STAT_H -| # include -| #endif -| #ifdef STDC_HEADERS -| # include -| # include -| #else -| # ifdef HAVE_STDLIB_H -| # include -| # endif -| #endif -| #ifdef HAVE_STRING_H -| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H -| # include -| # endif -| # include -| #endif -| #ifdef HAVE_STRINGS_H -| # include -| #endif -| #ifdef HAVE_INTTYPES_H -| # include -| #endif -| #ifdef HAVE_STDINT_H -| # include -| #endif -| #ifdef HAVE_UNISTD_H -| # include -| #endif -| int -| main () -| { -| if (sizeof ((uintptr_t))) -| return 0; -| ; -| return 0; -| } -configure:6549: result: yes -configure:6590: checking for u_int8_t -configure:6590: /usr/bin/gcc -c -g -O2 conftest.c >&5 -configure:6590: $? = 0 -configure:6590: /usr/bin/gcc -c -g -O2 conftest.c >&5 -conftest.c: In function 'main': -conftest.c:108:23: error: expected expression before ')' token - if (sizeof ((u_int8_t))) - ^ -configure:6590: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "" -| #define PACKAGE_TARNAME "" -| #define PACKAGE_VERSION "" -| #define PACKAGE_STRING "" -| #define PACKAGE_BUGREPORT "" -| #define PACKAGE_URL "" -| #define inline inline -| #define HAVE___ATTRIBUTE__ 1 -| #define __ATTRIBUTE___NORETURN_OK_FOR_FUNCTION_POINTERS 1 -| #define __ATTRIBUTE___FORMAT_OK 1 -| #define __ATTRIBUTE___FORMAT_OK_FOR_FUNCTION_POINTERS 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_FCNTL_H 1 -| #define HAVE_RPC_RPC_H 1 -| #define HAVE_NETINET_IF_ETHER_H 1 -| #define TIME_WITH_SYS_TIME 1 -| #define ENABLE_SMB 1 -| #define HAVE_OPENAT 1 -| #define HAVE_OS_IPV6_SUPPORT 1 -| #define HAVE_VFPRINTF 1 -| #define HAVE_STRDUP 1 -| #define HAVE_STRSEP 1 -| #define HAVE_GETOPT_LONG 1 -| #define HAVE_FORK 1 -| #define HAVE_VFORK 1 -| #define HAVE_STRFTIME 1 -| #define HAVE_SETLINEBUF 1 -| #define HAVE_ALARM 1 -| #define HAVE_VSNPRINTF 1 -| #define HAVE_SNPRINTF 1 -| #define RETSIGTYPE void -| #define RETSIGVAL /**/ -| #define HAVE_SIGACTION 1 -| #define HAVE_GETRPCBYNUMBER 1 -| #define HAVE_ETHER_NTOHOST 1 -| #define USE_ETHER_NTOHOST 1 -| #define HAVE_NETINET_ETHER_H 1 -| #define NETINET_ETHER_H_DECLARES_ETHER_NTOHOST /**/ -| #define HAVE_DECL_ETHER_NTOHOST 1 -| #define HAVE_PCAP_LIST_DATALINKS 1 -| #define HAVE_PCAP_FREE_DATALINKS 1 -| #define HAVE_PCAP_SET_DATALINK 1 -| #define HAVE_PCAP_DATALINK_NAME_TO_VAL 1 -| #define HAVE_PCAP_DATALINK_VAL_TO_DESCRIPTION 1 -| #define HAVE_PCAP_BREAKLOOP 1 -| #define HAVE_PCAP_DUMP_FTELL 1 -| #define HAVE_PCAP_CREATE 1 -| #define HAVE_PCAP_SET_TSTAMP_TYPE 1 -| #define HAVE_PCAP_SET_TSTAMP_PRECISION 1 -| #define HAVE_PCAP_FINDALLDEVS 1 -| #define HAVE_PCAP_DUMP_FLUSH 1 -| #define HAVE_PCAP_LIB_VERSION 1 -| #define HAVE_PCAP_SETDIRECTION 1 -| #define HAVE_PCAP_SET_IMMEDIATE_MODE 1 -| #define HAVE_PCAP_IF_T 1 -| #define HAVE_BPF_DUMP 1 -| #define HAVE_UINTPTR_T 1 -| /* end confdefs.h. */ -| #include -| #ifdef HAVE_SYS_TYPES_H -| # include -| #endif -| #ifdef HAVE_SYS_STAT_H -| # include -| #endif -| #ifdef STDC_HEADERS -| # include -| # include -| #else -| # ifdef HAVE_STDLIB_H -| # include -| # endif -| #endif -| #ifdef HAVE_STRING_H -| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H -| # include -| # endif -| # include -| #endif -| #ifdef HAVE_STRINGS_H -| # include -| #endif -| #ifdef HAVE_INTTYPES_H -| # include -| #endif -| #ifdef HAVE_STDINT_H -| # include -| #endif -| #ifdef HAVE_UNISTD_H -| # include -| #endif -| #include -| -| -| int -| main () -| { -| if (sizeof ((u_int8_t))) -| return 0; -| ; -| return 0; -| } -configure:6590: result: yes -configure:6602: checking for u_int16_t -configure:6602: /usr/bin/gcc -c -g -O2 conftest.c >&5 -configure:6602: $? = 0 -configure:6602: /usr/bin/gcc -c -g -O2 conftest.c >&5 -conftest.c: In function 'main': -conftest.c:108:24: error: expected expression before ')' token - if (sizeof ((u_int16_t))) - ^ -configure:6602: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "" -| #define PACKAGE_TARNAME "" -| #define PACKAGE_VERSION "" -| #define PACKAGE_STRING "" -| #define PACKAGE_BUGREPORT "" -| #define PACKAGE_URL "" -| #define inline inline -| #define HAVE___ATTRIBUTE__ 1 -| #define __ATTRIBUTE___NORETURN_OK_FOR_FUNCTION_POINTERS 1 -| #define __ATTRIBUTE___FORMAT_OK 1 -| #define __ATTRIBUTE___FORMAT_OK_FOR_FUNCTION_POINTERS 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_FCNTL_H 1 -| #define HAVE_RPC_RPC_H 1 -| #define HAVE_NETINET_IF_ETHER_H 1 -| #define TIME_WITH_SYS_TIME 1 -| #define ENABLE_SMB 1 -| #define HAVE_OPENAT 1 -| #define HAVE_OS_IPV6_SUPPORT 1 -| #define HAVE_VFPRINTF 1 -| #define HAVE_STRDUP 1 -| #define HAVE_STRSEP 1 -| #define HAVE_GETOPT_LONG 1 -| #define HAVE_FORK 1 -| #define HAVE_VFORK 1 -| #define HAVE_STRFTIME 1 -| #define HAVE_SETLINEBUF 1 -| #define HAVE_ALARM 1 -| #define HAVE_VSNPRINTF 1 -| #define HAVE_SNPRINTF 1 -| #define RETSIGTYPE void -| #define RETSIGVAL /**/ -| #define HAVE_SIGACTION 1 -| #define HAVE_GETRPCBYNUMBER 1 -| #define HAVE_ETHER_NTOHOST 1 -| #define USE_ETHER_NTOHOST 1 -| #define HAVE_NETINET_ETHER_H 1 -| #define NETINET_ETHER_H_DECLARES_ETHER_NTOHOST /**/ -| #define HAVE_DECL_ETHER_NTOHOST 1 -| #define HAVE_PCAP_LIST_DATALINKS 1 -| #define HAVE_PCAP_FREE_DATALINKS 1 -| #define HAVE_PCAP_SET_DATALINK 1 -| #define HAVE_PCAP_DATALINK_NAME_TO_VAL 1 -| #define HAVE_PCAP_DATALINK_VAL_TO_DESCRIPTION 1 -| #define HAVE_PCAP_BREAKLOOP 1 -| #define HAVE_PCAP_DUMP_FTELL 1 -| #define HAVE_PCAP_CREATE 1 -| #define HAVE_PCAP_SET_TSTAMP_TYPE 1 -| #define HAVE_PCAP_SET_TSTAMP_PRECISION 1 -| #define HAVE_PCAP_FINDALLDEVS 1 -| #define HAVE_PCAP_DUMP_FLUSH 1 -| #define HAVE_PCAP_LIB_VERSION 1 -| #define HAVE_PCAP_SETDIRECTION 1 -| #define HAVE_PCAP_SET_IMMEDIATE_MODE 1 -| #define HAVE_PCAP_IF_T 1 -| #define HAVE_BPF_DUMP 1 -| #define HAVE_UINTPTR_T 1 -| /* end confdefs.h. */ -| #include -| #ifdef HAVE_SYS_TYPES_H -| # include -| #endif -| #ifdef HAVE_SYS_STAT_H -| # include -| #endif -| #ifdef STDC_HEADERS -| # include -| # include -| #else -| # ifdef HAVE_STDLIB_H -| # include -| # endif -| #endif -| #ifdef HAVE_STRING_H -| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H -| # include -| # endif -| # include -| #endif -| #ifdef HAVE_STRINGS_H -| # include -| #endif -| #ifdef HAVE_INTTYPES_H -| # include -| #endif -| #ifdef HAVE_STDINT_H -| # include -| #endif -| #ifdef HAVE_UNISTD_H -| # include -| #endif -| #include -| -| -| int -| main () -| { -| if (sizeof ((u_int16_t))) -| return 0; -| ; -| return 0; -| } -configure:6602: result: yes -configure:6614: checking for u_int32_t -configure:6614: /usr/bin/gcc -c -g -O2 conftest.c >&5 -configure:6614: $? = 0 -configure:6614: /usr/bin/gcc -c -g -O2 conftest.c >&5 -conftest.c: In function 'main': -conftest.c:108:24: error: expected expression before ')' token - if (sizeof ((u_int32_t))) - ^ -configure:6614: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "" -| #define PACKAGE_TARNAME "" -| #define PACKAGE_VERSION "" -| #define PACKAGE_STRING "" -| #define PACKAGE_BUGREPORT "" -| #define PACKAGE_URL "" -| #define inline inline -| #define HAVE___ATTRIBUTE__ 1 -| #define __ATTRIBUTE___NORETURN_OK_FOR_FUNCTION_POINTERS 1 -| #define __ATTRIBUTE___FORMAT_OK 1 -| #define __ATTRIBUTE___FORMAT_OK_FOR_FUNCTION_POINTERS 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_FCNTL_H 1 -| #define HAVE_RPC_RPC_H 1 -| #define HAVE_NETINET_IF_ETHER_H 1 -| #define TIME_WITH_SYS_TIME 1 -| #define ENABLE_SMB 1 -| #define HAVE_OPENAT 1 -| #define HAVE_OS_IPV6_SUPPORT 1 -| #define HAVE_VFPRINTF 1 -| #define HAVE_STRDUP 1 -| #define HAVE_STRSEP 1 -| #define HAVE_GETOPT_LONG 1 -| #define HAVE_FORK 1 -| #define HAVE_VFORK 1 -| #define HAVE_STRFTIME 1 -| #define HAVE_SETLINEBUF 1 -| #define HAVE_ALARM 1 -| #define HAVE_VSNPRINTF 1 -| #define HAVE_SNPRINTF 1 -| #define RETSIGTYPE void -| #define RETSIGVAL /**/ -| #define HAVE_SIGACTION 1 -| #define HAVE_GETRPCBYNUMBER 1 -| #define HAVE_ETHER_NTOHOST 1 -| #define USE_ETHER_NTOHOST 1 -| #define HAVE_NETINET_ETHER_H 1 -| #define NETINET_ETHER_H_DECLARES_ETHER_NTOHOST /**/ -| #define HAVE_DECL_ETHER_NTOHOST 1 -| #define HAVE_PCAP_LIST_DATALINKS 1 -| #define HAVE_PCAP_FREE_DATALINKS 1 -| #define HAVE_PCAP_SET_DATALINK 1 -| #define HAVE_PCAP_DATALINK_NAME_TO_VAL 1 -| #define HAVE_PCAP_DATALINK_VAL_TO_DESCRIPTION 1 -| #define HAVE_PCAP_BREAKLOOP 1 -| #define HAVE_PCAP_DUMP_FTELL 1 -| #define HAVE_PCAP_CREATE 1 -| #define HAVE_PCAP_SET_TSTAMP_TYPE 1 -| #define HAVE_PCAP_SET_TSTAMP_PRECISION 1 -| #define HAVE_PCAP_FINDALLDEVS 1 -| #define HAVE_PCAP_DUMP_FLUSH 1 -| #define HAVE_PCAP_LIB_VERSION 1 -| #define HAVE_PCAP_SETDIRECTION 1 -| #define HAVE_PCAP_SET_IMMEDIATE_MODE 1 -| #define HAVE_PCAP_IF_T 1 -| #define HAVE_BPF_DUMP 1 -| #define HAVE_UINTPTR_T 1 -| /* end confdefs.h. */ -| #include -| #ifdef HAVE_SYS_TYPES_H -| # include -| #endif -| #ifdef HAVE_SYS_STAT_H -| # include -| #endif -| #ifdef STDC_HEADERS -| # include -| # include -| #else -| # ifdef HAVE_STDLIB_H -| # include -| # endif -| #endif -| #ifdef HAVE_STRING_H -| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H -| # include -| # endif -| # include -| #endif -| #ifdef HAVE_STRINGS_H -| # include -| #endif -| #ifdef HAVE_INTTYPES_H -| # include -| #endif -| #ifdef HAVE_STDINT_H -| # include -| #endif -| #ifdef HAVE_UNISTD_H -| # include -| #endif -| #include -| -| -| int -| main () -| { -| if (sizeof ((u_int32_t))) -| return 0; -| ; -| return 0; -| } -configure:6614: result: yes -configure:6626: checking for u_int64_t -configure:6626: /usr/bin/gcc -c -g -O2 conftest.c >&5 -configure:6626: $? = 0 -configure:6626: /usr/bin/gcc -c -g -O2 conftest.c >&5 -conftest.c: In function 'main': -conftest.c:108:24: error: expected expression before ')' token - if (sizeof ((u_int64_t))) - ^ -configure:6626: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "" -| #define PACKAGE_TARNAME "" -| #define PACKAGE_VERSION "" -| #define PACKAGE_STRING "" -| #define PACKAGE_BUGREPORT "" -| #define PACKAGE_URL "" -| #define inline inline -| #define HAVE___ATTRIBUTE__ 1 -| #define __ATTRIBUTE___NORETURN_OK_FOR_FUNCTION_POINTERS 1 -| #define __ATTRIBUTE___FORMAT_OK 1 -| #define __ATTRIBUTE___FORMAT_OK_FOR_FUNCTION_POINTERS 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_FCNTL_H 1 -| #define HAVE_RPC_RPC_H 1 -| #define HAVE_NETINET_IF_ETHER_H 1 -| #define TIME_WITH_SYS_TIME 1 -| #define ENABLE_SMB 1 -| #define HAVE_OPENAT 1 -| #define HAVE_OS_IPV6_SUPPORT 1 -| #define HAVE_VFPRINTF 1 -| #define HAVE_STRDUP 1 -| #define HAVE_STRSEP 1 -| #define HAVE_GETOPT_LONG 1 -| #define HAVE_FORK 1 -| #define HAVE_VFORK 1 -| #define HAVE_STRFTIME 1 -| #define HAVE_SETLINEBUF 1 -| #define HAVE_ALARM 1 -| #define HAVE_VSNPRINTF 1 -| #define HAVE_SNPRINTF 1 -| #define RETSIGTYPE void -| #define RETSIGVAL /**/ -| #define HAVE_SIGACTION 1 -| #define HAVE_GETRPCBYNUMBER 1 -| #define HAVE_ETHER_NTOHOST 1 -| #define USE_ETHER_NTOHOST 1 -| #define HAVE_NETINET_ETHER_H 1 -| #define NETINET_ETHER_H_DECLARES_ETHER_NTOHOST /**/ -| #define HAVE_DECL_ETHER_NTOHOST 1 -| #define HAVE_PCAP_LIST_DATALINKS 1 -| #define HAVE_PCAP_FREE_DATALINKS 1 -| #define HAVE_PCAP_SET_DATALINK 1 -| #define HAVE_PCAP_DATALINK_NAME_TO_VAL 1 -| #define HAVE_PCAP_DATALINK_VAL_TO_DESCRIPTION 1 -| #define HAVE_PCAP_BREAKLOOP 1 -| #define HAVE_PCAP_DUMP_FTELL 1 -| #define HAVE_PCAP_CREATE 1 -| #define HAVE_PCAP_SET_TSTAMP_TYPE 1 -| #define HAVE_PCAP_SET_TSTAMP_PRECISION 1 -| #define HAVE_PCAP_FINDALLDEVS 1 -| #define HAVE_PCAP_DUMP_FLUSH 1 -| #define HAVE_PCAP_LIB_VERSION 1 -| #define HAVE_PCAP_SETDIRECTION 1 -| #define HAVE_PCAP_SET_IMMEDIATE_MODE 1 -| #define HAVE_PCAP_IF_T 1 -| #define HAVE_BPF_DUMP 1 -| #define HAVE_UINTPTR_T 1 -| /* end confdefs.h. */ -| #include -| #ifdef HAVE_SYS_TYPES_H -| # include -| #endif -| #ifdef HAVE_SYS_STAT_H -| # include -| #endif -| #ifdef STDC_HEADERS -| # include -| # include -| #else -| # ifdef HAVE_STDLIB_H -| # include -| # endif -| #endif -| #ifdef HAVE_STRING_H -| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H -| # include -| # endif -| # include -| #endif -| #ifdef HAVE_STRINGS_H -| # include -| #endif -| #ifdef HAVE_INTTYPES_H -| # include -| #endif -| #ifdef HAVE_STDINT_H -| # include -| #endif -| #ifdef HAVE_UNISTD_H -| # include -| #endif -| #include -| -| -| int -| main () -| { -| if (sizeof ((u_int64_t))) -| return 0; -| ; -| return 0; -| } -configure:6626: result: yes -configure:6644: checking for inttypes.h -configure:6644: result: yes -configure:6654: checking whether inttypes.h defines the PRI[doxu]64 macros -configure:6674: /usr/bin/gcc -c -g -O2 conftest.c >&5 -configure:6674: $? = 0 -configure:6676: result: yes -configure:6964: checking for pcap/bluetooth.h -configure:6964: /usr/bin/gcc -c -g -O2 -I/usr/local/include -I../src conftest.c >&5 -configure:6964: $? = 0 -configure:6964: result: yes -configure:6977: checking for pcap/nflog.h -configure:6977: /usr/bin/gcc -c -g -O2 -I/usr/local/include -I../src conftest.c >&5 -configure:6977: $? = 0 -configure:6977: result: yes -configure:6990: checking for pcap/usb.h -configure:6990: /usr/bin/gcc -c -g -O2 -I/usr/local/include -I../src conftest.c >&5 -configure:6990: $? = 0 -configure:6990: result: yes -configure:7046: checking for ranlib -configure:7062: found /usr/bin/ranlib -configure:7073: result: ranlib -configure:7138: checking for ar -configure:7154: found /usr/bin/ar -configure:7165: result: ar -configure:7827: checking if sockaddr struct has the sa_len member -configure:7845: /usr/bin/gcc -c -g -O2 conftest.c >&5 -conftest.c: In function 'main': -conftest.c:79:40: error: 'struct sockaddr' has no member named 'sa_len' - u_int i = sizeof(((struct sockaddr *)0)->sa_len) - ^ -configure:7845: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "" -| #define PACKAGE_TARNAME "" -| #define PACKAGE_VERSION "" -| #define PACKAGE_STRING "" -| #define PACKAGE_BUGREPORT "" -| #define PACKAGE_URL "" -| #define inline inline -| #define HAVE___ATTRIBUTE__ 1 -| #define __ATTRIBUTE___NORETURN_OK_FOR_FUNCTION_POINTERS 1 -| #define __ATTRIBUTE___FORMAT_OK 1 -| #define __ATTRIBUTE___FORMAT_OK_FOR_FUNCTION_POINTERS 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_FCNTL_H 1 -| #define HAVE_RPC_RPC_H 1 -| #define HAVE_NETINET_IF_ETHER_H 1 -| #define TIME_WITH_SYS_TIME 1 -| #define ENABLE_SMB 1 -| #define HAVE_OPENAT 1 -| #define HAVE_OS_IPV6_SUPPORT 1 -| #define HAVE_VFPRINTF 1 -| #define HAVE_STRDUP 1 -| #define HAVE_STRSEP 1 -| #define HAVE_GETOPT_LONG 1 -| #define HAVE_FORK 1 -| #define HAVE_VFORK 1 -| #define HAVE_STRFTIME 1 -| #define HAVE_SETLINEBUF 1 -| #define HAVE_ALARM 1 -| #define HAVE_VSNPRINTF 1 -| #define HAVE_SNPRINTF 1 -| #define RETSIGTYPE void -| #define RETSIGVAL /**/ -| #define HAVE_SIGACTION 1 -| #define HAVE_GETRPCBYNUMBER 1 -| #define HAVE_ETHER_NTOHOST 1 -| #define USE_ETHER_NTOHOST 1 -| #define HAVE_NETINET_ETHER_H 1 -| #define NETINET_ETHER_H_DECLARES_ETHER_NTOHOST /**/ -| #define HAVE_DECL_ETHER_NTOHOST 1 -| #define HAVE_PCAP_LIST_DATALINKS 1 -| #define HAVE_PCAP_FREE_DATALINKS 1 -| #define HAVE_PCAP_SET_DATALINK 1 -| #define HAVE_PCAP_DATALINK_NAME_TO_VAL 1 -| #define HAVE_PCAP_DATALINK_VAL_TO_DESCRIPTION 1 -| #define HAVE_PCAP_BREAKLOOP 1 -| #define HAVE_PCAP_DUMP_FTELL 1 -| #define HAVE_PCAP_CREATE 1 -| #define HAVE_PCAP_SET_TSTAMP_TYPE 1 -| #define HAVE_PCAP_SET_TSTAMP_PRECISION 1 -| #define HAVE_PCAP_FINDALLDEVS 1 -| #define HAVE_PCAP_DUMP_FLUSH 1 -| #define HAVE_PCAP_LIB_VERSION 1 -| #define HAVE_PCAP_SETDIRECTION 1 -| #define HAVE_PCAP_SET_IMMEDIATE_MODE 1 -| #define HAVE_PCAP_IF_T 1 -| #define HAVE_BPF_DUMP 1 -| #define HAVE_UINTPTR_T 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_PCAP_BLUETOOTH_H 1 -| #define HAVE_PCAP_NFLOG_H 1 -| #define HAVE_PCAP_USB_H 1 -| /* end confdefs.h. */ -| -| # include -| # include -| int -| main () -| { -| u_int i = sizeof(((struct sockaddr *)0)->sa_len) -| ; -| return 0; -| } -configure:7853: result: no -configure:7861: checking if unaligned accesses fail -configure:7948: result: no -configure:7957: checking whether to use OpenSSL/libressl libcrypto -configure:8001: result: yes, if available -configure:8016: checking openssl/crypto.h usability -configure:8016: /usr/bin/gcc -c -g -O2 conftest.c >&5 -configure:8016: $? = 0 -configure:8016: result: yes -configure:8016: checking openssl/crypto.h presence -configure:8016: /usr/bin/gcc -E conftest.c -configure:8016: $? = 0 -configure:8016: result: yes -configure:8016: checking for openssl/crypto.h -configure:8016: result: yes -configure:8019: checking for DES_cbc_encrypt in -lcrypto -configure:8044: /usr/bin/gcc -o conftest -g -O2 conftest.c -lcrypto -L/usr/local/lib -Wl,-rpath,/usr/local/lib -lpcap >&5 -configure:8044: $? = 0 -configure:8053: result: yes -configure:8067: checking openssl/evp.h usability -configure:8067: /usr/bin/gcc -c -g -O2 conftest.c >&5 -configure:8067: $? = 0 -configure:8067: result: yes -configure:8067: checking openssl/evp.h presence -configure:8067: /usr/bin/gcc -E conftest.c -configure:8067: $? = 0 -configure:8067: result: yes -configure:8067: checking for openssl/evp.h -configure:8067: result: yes -configure:8085: checking for EVP_CIPHER_CTX_new -configure:8085: /usr/bin/gcc -o conftest -g -O2 conftest.c -lcrypto -L/usr/local/lib -Wl,-rpath,/usr/local/lib -lpcap >&5 -configure:8085: $? = 0 -configure:8085: result: yes -configure:8102: checking whether to use libcap-ng -configure:8128: result: yes, if available -configure:8134: checking for capng_change_id in -lcap-ng -configure:8159: /usr/bin/gcc -o conftest -g -O2 conftest.c -lcap-ng -lcrypto -L/usr/local/lib -Wl,-rpath,/usr/local/lib -lpcap >&5 -/usr/bin/ld: cannot find -lcap-ng -collect2: error: ld returned 1 exit status -configure:8159: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "" -| #define PACKAGE_TARNAME "" -| #define PACKAGE_VERSION "" -| #define PACKAGE_STRING "" -| #define PACKAGE_BUGREPORT "" -| #define PACKAGE_URL "" -| #define inline inline -| #define HAVE___ATTRIBUTE__ 1 -| #define __ATTRIBUTE___NORETURN_OK_FOR_FUNCTION_POINTERS 1 -| #define __ATTRIBUTE___FORMAT_OK 1 -| #define __ATTRIBUTE___FORMAT_OK_FOR_FUNCTION_POINTERS 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_FCNTL_H 1 -| #define HAVE_RPC_RPC_H 1 -| #define HAVE_NETINET_IF_ETHER_H 1 -| #define TIME_WITH_SYS_TIME 1 -| #define ENABLE_SMB 1 -| #define HAVE_OPENAT 1 -| #define HAVE_OS_IPV6_SUPPORT 1 -| #define HAVE_VFPRINTF 1 -| #define HAVE_STRDUP 1 -| #define HAVE_STRSEP 1 -| #define HAVE_GETOPT_LONG 1 -| #define HAVE_FORK 1 -| #define HAVE_VFORK 1 -| #define HAVE_STRFTIME 1 -| #define HAVE_SETLINEBUF 1 -| #define HAVE_ALARM 1 -| #define HAVE_VSNPRINTF 1 -| #define HAVE_SNPRINTF 1 -| #define RETSIGTYPE void -| #define RETSIGVAL /**/ -| #define HAVE_SIGACTION 1 -| #define HAVE_GETRPCBYNUMBER 1 -| #define HAVE_ETHER_NTOHOST 1 -| #define USE_ETHER_NTOHOST 1 -| #define HAVE_NETINET_ETHER_H 1 -| #define NETINET_ETHER_H_DECLARES_ETHER_NTOHOST /**/ -| #define HAVE_DECL_ETHER_NTOHOST 1 -| #define HAVE_PCAP_LIST_DATALINKS 1 -| #define HAVE_PCAP_FREE_DATALINKS 1 -| #define HAVE_PCAP_SET_DATALINK 1 -| #define HAVE_PCAP_DATALINK_NAME_TO_VAL 1 -| #define HAVE_PCAP_DATALINK_VAL_TO_DESCRIPTION 1 -| #define HAVE_PCAP_BREAKLOOP 1 -| #define HAVE_PCAP_DUMP_FTELL 1 -| #define HAVE_PCAP_CREATE 1 -| #define HAVE_PCAP_SET_TSTAMP_TYPE 1 -| #define HAVE_PCAP_SET_TSTAMP_PRECISION 1 -| #define HAVE_PCAP_FINDALLDEVS 1 -| #define HAVE_PCAP_DUMP_FLUSH 1 -| #define HAVE_PCAP_LIB_VERSION 1 -| #define HAVE_PCAP_SETDIRECTION 1 -| #define HAVE_PCAP_SET_IMMEDIATE_MODE 1 -| #define HAVE_PCAP_IF_T 1 -| #define HAVE_BPF_DUMP 1 -| #define HAVE_UINTPTR_T 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_PCAP_BLUETOOTH_H 1 -| #define HAVE_PCAP_NFLOG_H 1 -| #define HAVE_PCAP_USB_H 1 -| #define HAVE_LIBCRYPTO 1 -| #define HAVE_OPENSSL_EVP_H 1 -| #define HAVE_EVP_CIPHER_CTX_NEW 1 -| /* end confdefs.h. */ -| -| /* Override any GCC internal prototype to avoid an error. -| Use char because int might match the return type of a GCC -| builtin and then its argument prototype would still apply. */ -| #ifdef __cplusplus -| extern "C" -| #endif -| char capng_change_id (); -| int -| main () -| { -| return capng_change_id (); -| ; -| return 0; -| } -configure:8168: result: no -configure:8181: checking cap-ng.h usability -configure:8181: /usr/bin/gcc -c -g -O2 conftest.c >&5 -conftest.c:109:20: fatal error: cap-ng.h: No such file or directory - #include - ^ -compilation terminated. -configure:8181: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "" -| #define PACKAGE_TARNAME "" -| #define PACKAGE_VERSION "" -| #define PACKAGE_STRING "" -| #define PACKAGE_BUGREPORT "" -| #define PACKAGE_URL "" -| #define inline inline -| #define HAVE___ATTRIBUTE__ 1 -| #define __ATTRIBUTE___NORETURN_OK_FOR_FUNCTION_POINTERS 1 -| #define __ATTRIBUTE___FORMAT_OK 1 -| #define __ATTRIBUTE___FORMAT_OK_FOR_FUNCTION_POINTERS 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_FCNTL_H 1 -| #define HAVE_RPC_RPC_H 1 -| #define HAVE_NETINET_IF_ETHER_H 1 -| #define TIME_WITH_SYS_TIME 1 -| #define ENABLE_SMB 1 -| #define HAVE_OPENAT 1 -| #define HAVE_OS_IPV6_SUPPORT 1 -| #define HAVE_VFPRINTF 1 -| #define HAVE_STRDUP 1 -| #define HAVE_STRSEP 1 -| #define HAVE_GETOPT_LONG 1 -| #define HAVE_FORK 1 -| #define HAVE_VFORK 1 -| #define HAVE_STRFTIME 1 -| #define HAVE_SETLINEBUF 1 -| #define HAVE_ALARM 1 -| #define HAVE_VSNPRINTF 1 -| #define HAVE_SNPRINTF 1 -| #define RETSIGTYPE void -| #define RETSIGVAL /**/ -| #define HAVE_SIGACTION 1 -| #define HAVE_GETRPCBYNUMBER 1 -| #define HAVE_ETHER_NTOHOST 1 -| #define USE_ETHER_NTOHOST 1 -| #define HAVE_NETINET_ETHER_H 1 -| #define NETINET_ETHER_H_DECLARES_ETHER_NTOHOST /**/ -| #define HAVE_DECL_ETHER_NTOHOST 1 -| #define HAVE_PCAP_LIST_DATALINKS 1 -| #define HAVE_PCAP_FREE_DATALINKS 1 -| #define HAVE_PCAP_SET_DATALINK 1 -| #define HAVE_PCAP_DATALINK_NAME_TO_VAL 1 -| #define HAVE_PCAP_DATALINK_VAL_TO_DESCRIPTION 1 -| #define HAVE_PCAP_BREAKLOOP 1 -| #define HAVE_PCAP_DUMP_FTELL 1 -| #define HAVE_PCAP_CREATE 1 -| #define HAVE_PCAP_SET_TSTAMP_TYPE 1 -| #define HAVE_PCAP_SET_TSTAMP_PRECISION 1 -| #define HAVE_PCAP_FINDALLDEVS 1 -| #define HAVE_PCAP_DUMP_FLUSH 1 -| #define HAVE_PCAP_LIB_VERSION 1 -| #define HAVE_PCAP_SETDIRECTION 1 -| #define HAVE_PCAP_SET_IMMEDIATE_MODE 1 -| #define HAVE_PCAP_IF_T 1 -| #define HAVE_BPF_DUMP 1 -| #define HAVE_UINTPTR_T 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_PCAP_BLUETOOTH_H 1 -| #define HAVE_PCAP_NFLOG_H 1 -| #define HAVE_PCAP_USB_H 1 -| #define HAVE_LIBCRYPTO 1 -| #define HAVE_OPENSSL_EVP_H 1 -| #define HAVE_EVP_CIPHER_CTX_NEW 1 -| /* end confdefs.h. */ -| #include -| #ifdef HAVE_SYS_TYPES_H -| # include -| #endif -| #ifdef HAVE_SYS_STAT_H -| # include -| #endif -| #ifdef STDC_HEADERS -| # include -| # include -| #else -| # ifdef HAVE_STDLIB_H -| # include -| # endif -| #endif -| #ifdef HAVE_STRING_H -| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H -| # include -| # endif -| # include -| #endif -| #ifdef HAVE_STRINGS_H -| # include -| #endif -| #ifdef HAVE_INTTYPES_H -| # include -| #endif -| #ifdef HAVE_STDINT_H -| # include -| #endif -| #ifdef HAVE_UNISTD_H -| # include -| #endif -| #include -configure:8181: result: no -configure:8181: checking cap-ng.h presence -configure:8181: /usr/bin/gcc -E conftest.c -conftest.c:76:20: fatal error: cap-ng.h: No such file or directory - #include - ^ -compilation terminated. -configure:8181: $? = 1 -configure: failed program was: -| /* confdefs.h */ -| #define PACKAGE_NAME "" -| #define PACKAGE_TARNAME "" -| #define PACKAGE_VERSION "" -| #define PACKAGE_STRING "" -| #define PACKAGE_BUGREPORT "" -| #define PACKAGE_URL "" -| #define inline inline -| #define HAVE___ATTRIBUTE__ 1 -| #define __ATTRIBUTE___NORETURN_OK_FOR_FUNCTION_POINTERS 1 -| #define __ATTRIBUTE___FORMAT_OK 1 -| #define __ATTRIBUTE___FORMAT_OK_FOR_FUNCTION_POINTERS 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_FCNTL_H 1 -| #define HAVE_RPC_RPC_H 1 -| #define HAVE_NETINET_IF_ETHER_H 1 -| #define TIME_WITH_SYS_TIME 1 -| #define ENABLE_SMB 1 -| #define HAVE_OPENAT 1 -| #define HAVE_OS_IPV6_SUPPORT 1 -| #define HAVE_VFPRINTF 1 -| #define HAVE_STRDUP 1 -| #define HAVE_STRSEP 1 -| #define HAVE_GETOPT_LONG 1 -| #define HAVE_FORK 1 -| #define HAVE_VFORK 1 -| #define HAVE_STRFTIME 1 -| #define HAVE_SETLINEBUF 1 -| #define HAVE_ALARM 1 -| #define HAVE_VSNPRINTF 1 -| #define HAVE_SNPRINTF 1 -| #define RETSIGTYPE void -| #define RETSIGVAL /**/ -| #define HAVE_SIGACTION 1 -| #define HAVE_GETRPCBYNUMBER 1 -| #define HAVE_ETHER_NTOHOST 1 -| #define USE_ETHER_NTOHOST 1 -| #define HAVE_NETINET_ETHER_H 1 -| #define NETINET_ETHER_H_DECLARES_ETHER_NTOHOST /**/ -| #define HAVE_DECL_ETHER_NTOHOST 1 -| #define HAVE_PCAP_LIST_DATALINKS 1 -| #define HAVE_PCAP_FREE_DATALINKS 1 -| #define HAVE_PCAP_SET_DATALINK 1 -| #define HAVE_PCAP_DATALINK_NAME_TO_VAL 1 -| #define HAVE_PCAP_DATALINK_VAL_TO_DESCRIPTION 1 -| #define HAVE_PCAP_BREAKLOOP 1 -| #define HAVE_PCAP_DUMP_FTELL 1 -| #define HAVE_PCAP_CREATE 1 -| #define HAVE_PCAP_SET_TSTAMP_TYPE 1 -| #define HAVE_PCAP_SET_TSTAMP_PRECISION 1 -| #define HAVE_PCAP_FINDALLDEVS 1 -| #define HAVE_PCAP_DUMP_FLUSH 1 -| #define HAVE_PCAP_LIB_VERSION 1 -| #define HAVE_PCAP_SETDIRECTION 1 -| #define HAVE_PCAP_SET_IMMEDIATE_MODE 1 -| #define HAVE_PCAP_IF_T 1 -| #define HAVE_BPF_DUMP 1 -| #define HAVE_UINTPTR_T 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_PCAP_BLUETOOTH_H 1 -| #define HAVE_PCAP_NFLOG_H 1 -| #define HAVE_PCAP_USB_H 1 -| #define HAVE_LIBCRYPTO 1 -| #define HAVE_OPENSSL_EVP_H 1 -| #define HAVE_EVP_CIPHER_CTX_NEW 1 -| /* end confdefs.h. */ -| #include -configure:8181: result: no -configure:8181: checking for cap-ng.h -configure:8181: result: no -configure:8221: checking for a BSD-compatible install -configure:8289: result: /usr/bin/install -c -configure:8422: creating ./config.status - -## ---------------------- ## -## Running config.status. ## -## ---------------------- ## - -This file was extended by config.status, which was -generated by GNU Autoconf 2.69. Invocation command line was - - CONFIG_FILES = - CONFIG_HEADERS = - CONFIG_LINKS = - CONFIG_COMMANDS = - $ ./config.status - -on localhost.localdomain - -config.status:892: creating Makefile -config.status:892: creating tcpdump.1 -config.status:892: creating config.h -config.status:1066: executing default-1 commands - -## ---------------- ## -## Cache variables. ## -## ---------------- ## - -ac_cv___attribute__=yes -ac_cv___attribute___format=yes -ac_cv___attribute___format_function_pointer=yes -ac_cv___attribute___noreturn_function_pointer=yes -ac_cv___attribute___unused=yes -ac_cv_buggy_ether_ntohost=no -ac_cv_build=x86_64-unknown-linux-gnu -ac_cv_c_compiler_gnu=yes -ac_cv_c_int16_t=yes -ac_cv_c_int32_t=yes -ac_cv_c_int64_t=yes -ac_cv_c_int8_t=yes -ac_cv_c_uint16_t=yes -ac_cv_c_uint32_t=yes -ac_cv_c_uint64_t=yes -ac_cv_c_uint8_t=yes -ac_cv_env_CC_set=set -ac_cv_env_CC_value=/usr/bin/gcc -ac_cv_env_CFLAGS_set= -ac_cv_env_CFLAGS_value= -ac_cv_env_CPPFLAGS_set= -ac_cv_env_CPPFLAGS_value= -ac_cv_env_CPP_set= -ac_cv_env_CPP_value= -ac_cv_env_LDFLAGS_set= -ac_cv_env_LDFLAGS_value= -ac_cv_env_LIBS_set= -ac_cv_env_LIBS_value= -ac_cv_env_build_alias_set= -ac_cv_env_build_alias_value= -ac_cv_env_host_alias_set= -ac_cv_env_host_alias_value= -ac_cv_env_target_alias_set= -ac_cv_env_target_alias_value= -ac_cv_func_EVP_CIPHER_CTX_new=yes -ac_cv_func_alarm=yes -ac_cv_func_bpf_dump=yes -ac_cv_func_cap_enter=no -ac_cv_func_cap_ioctls_limit=no -ac_cv_func_cap_rights_limit=no -ac_cv_func_ether_ntohost=yes -ac_cv_func_fork=yes -ac_cv_func_getopt_long=yes -ac_cv_func_openat=yes -ac_cv_func_pcap_breakloop=yes -ac_cv_func_pcap_create=yes -ac_cv_func_pcap_datalink_name_to_val=yes -ac_cv_func_pcap_datalink_val_to_description=yes -ac_cv_func_pcap_dump_flush=yes -ac_cv_func_pcap_dump_ftell=yes -ac_cv_func_pcap_findalldevs=yes -ac_cv_func_pcap_free_datalinks=yes -ac_cv_func_pcap_lib_version=yes -ac_cv_func_pcap_list_datalinks=yes -ac_cv_func_pcap_loop=yes -ac_cv_func_pcap_set_datalink=yes -ac_cv_func_pcap_set_immediate_mode=yes -ac_cv_func_pcap_set_optimizer_debug=no -ac_cv_func_pcap_set_parser_debug=no -ac_cv_func_pcap_set_tstamp_precision=yes -ac_cv_func_pcap_set_tstamp_type=yes -ac_cv_func_pcap_setdirection=yes -ac_cv_func_setlinebuf=yes -ac_cv_func_sigaction=yes -ac_cv_func_snprintf=yes -ac_cv_func_strdup=yes -ac_cv_func_strftime=yes -ac_cv_func_strlcat=no -ac_cv_func_strlcpy=no -ac_cv_func_strsep=yes -ac_cv_func_vfork=yes -ac_cv_func_vfprintf=yes -ac_cv_func_vsnprintf=yes -ac_cv_have_decl_ether_ntohost=yes -ac_cv_header_cap_ng_h=no -ac_cv_header_fcntl_h=yes -ac_cv_header_inttypes_h=yes -ac_cv_header_memory_h=yes -ac_cv_header_net_pfvar_h=no -ac_cv_header_netdnet_dnetdb_h=no -ac_cv_header_netinet_ether_h=yes -ac_cv_header_netinet_if_ether_h=yes -ac_cv_header_openssl_crypto_h=yes -ac_cv_header_openssl_evp_h=yes -ac_cv_header_pcap_bluetooth_h=yes -ac_cv_header_pcap_nflog_h=yes -ac_cv_header_pcap_usb_h=yes -ac_cv_header_rpc_rpc_h=yes -ac_cv_header_rpc_rpcent_h=no -ac_cv_header_smi_h=no -ac_cv_header_stdc=yes -ac_cv_header_stdint_h=yes -ac_cv_header_stdlib_h=yes -ac_cv_header_string_h=yes -ac_cv_header_strings_h=yes -ac_cv_header_sys_stat_h=yes -ac_cv_header_sys_types_h=yes -ac_cv_header_time=yes -ac_cv_header_unistd_h=yes -ac_cv_host=x86_64-unknown-linux-gnu -ac_cv_lbl_inline=inline -ac_cv_lbl_sockaddr_has_sa_len=no -ac_cv_lbl_unaligned_fail=no -ac_cv_lib_cap_ng_capng_change_id=no -ac_cv_lib_crypto_DES_cbc_encrypt=yes -ac_cv_lib_dlpi_dlpi_walk=no -ac_cv_lib_rpc_main=no -ac_cv_objext=o -ac_cv_path_EGREP='/usr/bin/grep -E' -ac_cv_path_GREP=/usr/bin/grep -ac_cv_path_ac_pt_PCAP_CONFIG=/usr/local/bin/pcap-config -ac_cv_path_install='/usr/bin/install -c' -ac_cv_prog_CPP='/usr/bin/gcc -E' -ac_cv_prog_ac_ct_AR=ar -ac_cv_prog_ac_ct_CC=/usr/bin/gcc -ac_cv_prog_ac_ct_RANLIB=ranlib -ac_cv_prog_cc_c89= -ac_cv_prog_cc_g=yes -ac_cv_search_dnet_htoa=no -ac_cv_search_gethostbyname='none required' -ac_cv_search_getrpcbynumber='none required' -ac_cv_search_putmsg='none required' -ac_cv_search_socket='none required' -ac_cv_type_pcap_if_t=yes -ac_cv_type_signal=void -ac_cv_type_u_int16_t=yes -ac_cv_type_u_int32_t=yes -ac_cv_type_u_int64_t=yes -ac_cv_type_u_int8_t=yes -ac_cv_type_uintptr_t=yes -ac_lbl_cv_pcap_debug_defined=no -ac_lbl_cv_yydebug_defined=no -td_cv_decl_netdnet_dnetdb_h_dnet_htoa=no - -## ----------------- ## -## Output variables. ## -## ----------------- ## - -AR='ar' -CC='/usr/bin/gcc' -CFLAGS='-g -O2' -CPP='/usr/bin/gcc -E' -CPPFLAGS='' -DEFS='-DHAVE_CONFIG_H' -DEPENDENCY_CFLAG='' -ECHO_C='' -ECHO_N='-n' -ECHO_T='' -EGREP='/usr/bin/grep -E' -EXEEXT='' -GREP='/usr/bin/grep' -INSTALL_DATA='${INSTALL} -m 644' -INSTALL_PROGRAM='${INSTALL}' -INSTALL_SCRIPT='${INSTALL}' -LDFLAGS='' -LIBOBJS=' ${LIBOBJDIR}strlcat$U.o ${LIBOBJDIR}strlcpy$U.o' -LIBS='-lcrypto -L/usr/local/lib -Wl,-rpath,/usr/local/lib -lpcap ' -LOCALSRC='print-smb.c smbutil.c ' -LTLIBOBJS=' ${LIBOBJDIR}strlcat$U.lo ${LIBOBJDIR}strlcpy$U.lo' -MAN_FILE_FORMATS='5' -MAN_MISC_INFO='7' -MKDEP='' -OBJEXT='o' -PACKAGE_BUGREPORT='' -PACKAGE_NAME='' -PACKAGE_STRING='' -PACKAGE_TARNAME='' -PACKAGE_URL='' -PACKAGE_VERSION='' -PATH_SEPARATOR=':' -PCAP_CONFIG='/usr/local/bin/pcap-config' -RANLIB='ranlib' -SHELL='/bin/sh' -SHLICC2='' -V_CCOPT=' -ffloat-store' -V_DEFS=' -D_U_="__attribute__((unused))"' -V_GROUP='wheel' -V_INCLS='-I/usr/local/include -I../src' -V_PCAPDEP='' -ac_ct_CC='/usr/bin/gcc' -bindir='${exec_prefix}/bin' -build='x86_64-unknown-linux-gnu' -build_alias='' -build_cpu='x86_64' -build_os='linux-gnu' -build_vendor='unknown' -datadir='${datarootdir}' -datarootdir='${prefix}/share' -docdir='${datarootdir}/doc/${PACKAGE}' -dvidir='${docdir}' -exec_prefix='${prefix}' -host='x86_64-unknown-linux-gnu' -host_alias='' -host_cpu='x86_64' -host_os='linux-gnu' -host_vendor='unknown' -htmldir='${docdir}' -includedir='${prefix}/include' -infodir='${datarootdir}/info' -libdir='${exec_prefix}/lib' -libexecdir='${exec_prefix}/libexec' -localedir='${datarootdir}/locale' -localstatedir='${prefix}/var' -mandir='${datarootdir}/man' -oldincludedir='/usr/include' -pdfdir='${docdir}' -prefix='/usr/local' -program_transform_name='s,x,x,' -psdir='${docdir}' -sbindir='${exec_prefix}/sbin' -sharedstatedir='${prefix}/com' -sysconfdir='${prefix}/etc' -target_alias='' - -## ----------- ## -## confdefs.h. ## -## ----------- ## - -/* confdefs.h */ -#define PACKAGE_NAME "" -#define PACKAGE_TARNAME "" -#define PACKAGE_VERSION "" -#define PACKAGE_STRING "" -#define PACKAGE_BUGREPORT "" -#define PACKAGE_URL "" -#define inline inline -#define HAVE___ATTRIBUTE__ 1 -#define __ATTRIBUTE___NORETURN_OK_FOR_FUNCTION_POINTERS 1 -#define __ATTRIBUTE___FORMAT_OK 1 -#define __ATTRIBUTE___FORMAT_OK_FOR_FUNCTION_POINTERS 1 -#define STDC_HEADERS 1 -#define HAVE_SYS_TYPES_H 1 -#define HAVE_SYS_STAT_H 1 -#define HAVE_STDLIB_H 1 -#define HAVE_STRING_H 1 -#define HAVE_MEMORY_H 1 -#define HAVE_STRINGS_H 1 -#define HAVE_INTTYPES_H 1 -#define HAVE_STDINT_H 1 -#define HAVE_UNISTD_H 1 -#define HAVE_FCNTL_H 1 -#define HAVE_RPC_RPC_H 1 -#define HAVE_NETINET_IF_ETHER_H 1 -#define TIME_WITH_SYS_TIME 1 -#define ENABLE_SMB 1 -#define HAVE_OPENAT 1 -#define HAVE_OS_IPV6_SUPPORT 1 -#define HAVE_VFPRINTF 1 -#define HAVE_STRDUP 1 -#define HAVE_STRSEP 1 -#define HAVE_GETOPT_LONG 1 -#define HAVE_FORK 1 -#define HAVE_VFORK 1 -#define HAVE_STRFTIME 1 -#define HAVE_SETLINEBUF 1 -#define HAVE_ALARM 1 -#define HAVE_VSNPRINTF 1 -#define HAVE_SNPRINTF 1 -#define RETSIGTYPE void -#define RETSIGVAL /**/ -#define HAVE_SIGACTION 1 -#define HAVE_GETRPCBYNUMBER 1 -#define HAVE_ETHER_NTOHOST 1 -#define USE_ETHER_NTOHOST 1 -#define HAVE_NETINET_ETHER_H 1 -#define NETINET_ETHER_H_DECLARES_ETHER_NTOHOST /**/ -#define HAVE_DECL_ETHER_NTOHOST 1 -#define HAVE_PCAP_LIST_DATALINKS 1 -#define HAVE_PCAP_FREE_DATALINKS 1 -#define HAVE_PCAP_SET_DATALINK 1 -#define HAVE_PCAP_DATALINK_NAME_TO_VAL 1 -#define HAVE_PCAP_DATALINK_VAL_TO_DESCRIPTION 1 -#define HAVE_PCAP_BREAKLOOP 1 -#define HAVE_PCAP_DUMP_FTELL 1 -#define HAVE_PCAP_CREATE 1 -#define HAVE_PCAP_SET_TSTAMP_TYPE 1 -#define HAVE_PCAP_SET_TSTAMP_PRECISION 1 -#define HAVE_PCAP_FINDALLDEVS 1 -#define HAVE_PCAP_DUMP_FLUSH 1 -#define HAVE_PCAP_LIB_VERSION 1 -#define HAVE_PCAP_SETDIRECTION 1 -#define HAVE_PCAP_SET_IMMEDIATE_MODE 1 -#define HAVE_PCAP_IF_T 1 -#define HAVE_BPF_DUMP 1 -#define HAVE_UINTPTR_T 1 -#define HAVE_INTTYPES_H 1 -#define HAVE_PCAP_BLUETOOTH_H 1 -#define HAVE_PCAP_NFLOG_H 1 -#define HAVE_PCAP_USB_H 1 -#define HAVE_LIBCRYPTO 1 -#define HAVE_OPENSSL_EVP_H 1 -#define HAVE_EVP_CIPHER_CTX_NEW 1 - -configure: exit 0 diff --git a/cmake-build-debug/config.status b/cmake-build-debug/config.status deleted file mode 100755 index d89e5fb..0000000 --- a/cmake-build-debug/config.status +++ /dev/null @@ -1,1083 +0,0 @@ -#! /bin/sh -# Generated by configure. -# Run this file to recreate the current configuration. -# Compiler output produced by configure, useful for debugging -# configure, is in config.log if it exists. - -debug=false -ac_cs_recheck=false -ac_cs_silent=false - -SHELL=${CONFIG_SHELL-/bin/sh} -export SHELL -## -------------------- ## -## M4sh Initialization. ## -## -------------------- ## - -# Be more Bourne compatible -DUALCASE=1; export DUALCASE # for MKS sh -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : - emulate sh - NULLCMD=: - # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which - # is contrary to our usage. Disable this feature. - alias -g '${1+"$@"}'='"$@"' - setopt NO_GLOB_SUBST -else - case `(set -o) 2>/dev/null` in #( - *posix*) : - set -o posix ;; #( - *) : - ;; -esac -fi - - -as_nl=' -' -export as_nl -# Printing a long string crashes Solaris 7 /usr/bin/printf. -as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' -as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo -as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo -# Prefer a ksh shell builtin over an external printf program on Solaris, -# but without wasting forks for bash or zsh. -if test -z "$BASH_VERSION$ZSH_VERSION" \ - && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then - as_echo='print -r --' - as_echo_n='print -rn --' -elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then - as_echo='printf %s\n' - as_echo_n='printf %s' -else - if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then - as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' - as_echo_n='/usr/ucb/echo -n' - else - as_echo_body='eval expr "X$1" : "X\\(.*\\)"' - as_echo_n_body='eval - arg=$1; - case $arg in #( - *"$as_nl"*) - expr "X$arg" : "X\\(.*\\)$as_nl"; - arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; - esac; - expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" - ' - export as_echo_n_body - as_echo_n='sh -c $as_echo_n_body as_echo' - fi - export as_echo_body - as_echo='sh -c $as_echo_body as_echo' -fi - -# The user is always right. -if test "${PATH_SEPARATOR+set}" != set; then - PATH_SEPARATOR=: - (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { - (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || - PATH_SEPARATOR=';' - } -fi - - -# IFS -# We need space, tab and new line, in precisely that order. Quoting is -# there to prevent editors from complaining about space-tab. -# (If _AS_PATH_WALK were called with IFS unset, it would disable word -# splitting by setting IFS to empty value.) -IFS=" "" $as_nl" - -# Find who we are. Look in the path if we contain no directory separator. -as_myself= -case $0 in #(( - *[\\/]* ) as_myself=$0 ;; - *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break - done -IFS=$as_save_IFS - - ;; -esac -# We did not find ourselves, most probably we were run as `sh COMMAND' -# in which case we are not to be found in the path. -if test "x$as_myself" = x; then - as_myself=$0 -fi -if test ! -f "$as_myself"; then - $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 - exit 1 -fi - -# Unset variables that we do not need and which cause bugs (e.g. in -# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" -# suppresses any "Segmentation fault" message there. '((' could -# trigger a bug in pdksh 5.2.14. -for as_var in BASH_ENV ENV MAIL MAILPATH -do eval test x\${$as_var+set} = xset \ - && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : -done -PS1='$ ' -PS2='> ' -PS4='+ ' - -# NLS nuisances. -LC_ALL=C -export LC_ALL -LANGUAGE=C -export LANGUAGE - -# CDPATH. -(unset CDPATH) >/dev/null 2>&1 && unset CDPATH - - -# as_fn_error STATUS ERROR [LINENO LOG_FD] -# ---------------------------------------- -# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are -# provided, also output the error to LOG_FD, referencing LINENO. Then exit the -# script with STATUS, using 1 if that was 0. -as_fn_error () -{ - as_status=$1; test $as_status -eq 0 && as_status=1 - if test "$4"; then - as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 - fi - $as_echo "$as_me: error: $2" >&2 - as_fn_exit $as_status -} # as_fn_error - - -# as_fn_set_status STATUS -# ----------------------- -# Set $? to STATUS, without forking. -as_fn_set_status () -{ - return $1 -} # as_fn_set_status - -# as_fn_exit STATUS -# ----------------- -# Exit the shell with STATUS, even in a "trap 0" or "set -e" context. -as_fn_exit () -{ - set +e - as_fn_set_status $1 - exit $1 -} # as_fn_exit - -# as_fn_unset VAR -# --------------- -# Portably unset VAR. -as_fn_unset () -{ - { eval $1=; unset $1;} -} -as_unset=as_fn_unset -# as_fn_append VAR VALUE -# ---------------------- -# Append the text in VALUE to the end of the definition contained in VAR. Take -# advantage of any shell optimizations that allow amortized linear growth over -# repeated appends, instead of the typical quadratic growth present in naive -# implementations. -if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : - eval 'as_fn_append () - { - eval $1+=\$2 - }' -else - as_fn_append () - { - eval $1=\$$1\$2 - } -fi # as_fn_append - -# as_fn_arith ARG... -# ------------------ -# Perform arithmetic evaluation on the ARGs, and store the result in the -# global $as_val. Take advantage of shells that can avoid forks. The arguments -# must be portable across $(()) and expr. -if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : - eval 'as_fn_arith () - { - as_val=$(( $* )) - }' -else - as_fn_arith () - { - as_val=`expr "$@" || test $? -eq 1` - } -fi # as_fn_arith - - -if expr a : '\(a\)' >/dev/null 2>&1 && - test "X`expr 00001 : '.*\(...\)'`" = X001; then - as_expr=expr -else - as_expr=false -fi - -if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then - as_basename=basename -else - as_basename=false -fi - -if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then - as_dirname=dirname -else - as_dirname=false -fi - -as_me=`$as_basename -- "$0" || -$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ - X"$0" : 'X\(//\)$' \| \ - X"$0" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X/"$0" | - sed '/^.*\/\([^/][^/]*\)\/*$/{ - s//\1/ - q - } - /^X\/\(\/\/\)$/{ - s//\1/ - q - } - /^X\/\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - -# Avoid depending upon Character Ranges. -as_cr_letters='abcdefghijklmnopqrstuvwxyz' -as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' -as_cr_Letters=$as_cr_letters$as_cr_LETTERS -as_cr_digits='0123456789' -as_cr_alnum=$as_cr_Letters$as_cr_digits - -ECHO_C= ECHO_N= ECHO_T= -case `echo -n x` in #((((( --n*) - case `echo 'xy\c'` in - *c*) ECHO_T=' ';; # ECHO_T is single tab character. - xy) ECHO_C='\c';; - *) echo `echo ksh88 bug on AIX 6.1` > /dev/null - ECHO_T=' ';; - esac;; -*) - ECHO_N='-n';; -esac - -rm -f conf$$ conf$$.exe conf$$.file -if test -d conf$$.dir; then - rm -f conf$$.dir/conf$$.file -else - rm -f conf$$.dir - mkdir conf$$.dir 2>/dev/null -fi -if (echo >conf$$.file) 2>/dev/null; then - if ln -s conf$$.file conf$$ 2>/dev/null; then - as_ln_s='ln -s' - # ... but there are two gotchas: - # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. - # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. - # In both cases, we have to default to `cp -pR'. - ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || - as_ln_s='cp -pR' - elif ln conf$$.file conf$$ 2>/dev/null; then - as_ln_s=ln - else - as_ln_s='cp -pR' - fi -else - as_ln_s='cp -pR' -fi -rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file -rmdir conf$$.dir 2>/dev/null - - -# as_fn_mkdir_p -# ------------- -# Create "$as_dir" as a directory, including parents if necessary. -as_fn_mkdir_p () -{ - - case $as_dir in #( - -*) as_dir=./$as_dir;; - esac - test -d "$as_dir" || eval $as_mkdir_p || { - as_dirs= - while :; do - case $as_dir in #( - *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( - *) as_qdir=$as_dir;; - esac - as_dirs="'$as_qdir' $as_dirs" - as_dir=`$as_dirname -- "$as_dir" || -$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$as_dir" : 'X\(//\)[^/]' \| \ - X"$as_dir" : 'X\(//\)$' \| \ - X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$as_dir" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - test -d "$as_dir" && break - done - test -z "$as_dirs" || eval "mkdir $as_dirs" - } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" - - -} # as_fn_mkdir_p -if mkdir -p . 2>/dev/null; then - as_mkdir_p='mkdir -p "$as_dir"' -else - test -d ./-p && rmdir ./-p - as_mkdir_p=false -fi - - -# as_fn_executable_p FILE -# ----------------------- -# Test if FILE is an executable regular file. -as_fn_executable_p () -{ - test -f "$1" && test -x "$1" -} # as_fn_executable_p -as_test_x='test -x' -as_executable_p=as_fn_executable_p - -# Sed expression to map a string onto a valid CPP name. -as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" - -# Sed expression to map a string onto a valid variable name. -as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" - - -exec 6>&1 -## ----------------------------------- ## -## Main body of $CONFIG_STATUS script. ## -## ----------------------------------- ## -# Save the log message, to keep $0 and so on meaningful, and to -# report actual input values of CONFIG_FILES etc. instead of their -# values after options handling. -ac_log=" -This file was extended by $as_me, which was -generated by GNU Autoconf 2.69. Invocation command line was - - CONFIG_FILES = $CONFIG_FILES - CONFIG_HEADERS = $CONFIG_HEADERS - CONFIG_LINKS = $CONFIG_LINKS - CONFIG_COMMANDS = $CONFIG_COMMANDS - $ $0 $@ - -on `(hostname || uname -n) 2>/dev/null | sed 1q` -" - -# Files that config.status was made for. -config_files=" Makefile tcpdump.1" -config_headers=" config.h" -config_commands=" default-1" - -ac_cs_usage="\ -\`$as_me' instantiates files and other configuration actions -from templates according to the current configuration. Unless the files -and actions are specified as TAGs, all are instantiated by default. - -Usage: $0 [OPTION]... [TAG]... - - -h, --help print this help, then exit - -V, --version print version number and configuration settings, then exit - --config print configuration, then exit - -q, --quiet, --silent - do not print progress messages - -d, --debug don't remove temporary files - --recheck update $as_me by reconfiguring in the same conditions - --file=FILE[:TEMPLATE] - instantiate the configuration file FILE - --header=FILE[:TEMPLATE] - instantiate the configuration header FILE - -Configuration files: -$config_files - -Configuration headers: -$config_headers - -Configuration commands: -$config_commands - -Report bugs to the package provider." - -ac_cs_config="'CC=/usr/bin/gcc'" -ac_cs_version="\ -config.status -configured by ../src/configure, generated by GNU Autoconf 2.69, - with options \"$ac_cs_config\" - -Copyright (C) 2012 Free Software Foundation, Inc. -This config.status script is free software; the Free Software Foundation -gives unlimited permission to copy, distribute and modify it." - -ac_pwd='/home/yangwei/tcpdump_mesa/cmake-build-debug' -srcdir='../src' -INSTALL='/usr/bin/install -c' -test -n "$AWK" || AWK=awk -# The default lists apply if the user does not specify any file. -ac_need_defaults=: -while test $# != 0 -do - case $1 in - --*=?*) - ac_option=`expr "X$1" : 'X\([^=]*\)='` - ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` - ac_shift=: - ;; - --*=) - ac_option=`expr "X$1" : 'X\([^=]*\)='` - ac_optarg= - ac_shift=: - ;; - *) - ac_option=$1 - ac_optarg=$2 - ac_shift=shift - ;; - esac - - case $ac_option in - # Handling of the options. - -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) - ac_cs_recheck=: ;; - --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) - $as_echo "$ac_cs_version"; exit ;; - --config | --confi | --conf | --con | --co | --c ) - $as_echo "$ac_cs_config"; exit ;; - --debug | --debu | --deb | --de | --d | -d ) - debug=: ;; - --file | --fil | --fi | --f ) - $ac_shift - case $ac_optarg in - *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; - '') as_fn_error $? "missing file argument" ;; - esac - as_fn_append CONFIG_FILES " '$ac_optarg'" - ac_need_defaults=false;; - --header | --heade | --head | --hea ) - $ac_shift - case $ac_optarg in - *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; - esac - as_fn_append CONFIG_HEADERS " '$ac_optarg'" - ac_need_defaults=false;; - --he | --h) - # Conflict between --help and --header - as_fn_error $? "ambiguous option: \`$1' -Try \`$0 --help' for more information.";; - --help | --hel | -h ) - $as_echo "$ac_cs_usage"; exit ;; - -q | -quiet | --quiet | --quie | --qui | --qu | --q \ - | -silent | --silent | --silen | --sile | --sil | --si | --s) - ac_cs_silent=: ;; - - # This is an error. - -*) as_fn_error $? "unrecognized option: \`$1' -Try \`$0 --help' for more information." ;; - - *) as_fn_append ac_config_targets " $1" - ac_need_defaults=false ;; - - esac - shift -done - -ac_configure_extra_args= - -if $ac_cs_silent; then - exec 6>/dev/null - ac_configure_extra_args="$ac_configure_extra_args --silent" -fi - -if $ac_cs_recheck; then - set X /bin/sh '../src/configure' 'CC=/usr/bin/gcc' $ac_configure_extra_args --no-create --no-recursion - shift - $as_echo "running CONFIG_SHELL=/bin/sh $*" >&6 - CONFIG_SHELL='/bin/sh' - export CONFIG_SHELL - exec "$@" -fi - -exec 5>>config.log -{ - echo - sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX -## Running $as_me. ## -_ASBOX - $as_echo "$ac_log" -} >&5 - -# -# INIT-COMMANDS -# - - - -# Handling of arguments. -for ac_config_target in $ac_config_targets -do - case $ac_config_target in - "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;; - "default-1") CONFIG_COMMANDS="$CONFIG_COMMANDS default-1" ;; - "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; - "tcpdump.1") CONFIG_FILES="$CONFIG_FILES tcpdump.1" ;; - - *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; - esac -done - - -# If the user did not use the arguments to specify the items to instantiate, -# then the envvar interface is used. Set only those that are not. -# We use the long form for the default assignment because of an extremely -# bizarre bug on SunOS 4.1.3. -if $ac_need_defaults; then - test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files - test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers - test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands -fi - -# Have a temporary directory for convenience. Make it in the build tree -# simply because there is no reason against having it here, and in addition, -# creating and moving files from /tmp can sometimes cause problems. -# Hook for its removal unless debugging. -# Note that there is a small window in which the directory will not be cleaned: -# after its creation but before its name has been assigned to `$tmp'. -$debug || -{ - tmp= ac_tmp= - trap 'exit_status=$? - : "${ac_tmp:=$tmp}" - { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status -' 0 - trap 'as_fn_exit 1' 1 2 13 15 -} -# Create a (secure) tmp directory for tmp files. - -{ - tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && - test -d "$tmp" -} || -{ - tmp=./conf$$-$RANDOM - (umask 077 && mkdir "$tmp") -} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5 -ac_tmp=$tmp - -# Set up the scripts for CONFIG_FILES section. -# No need to generate them if there are no CONFIG_FILES. -# This happens for instance with `./config.status config.h'. -if test -n "$CONFIG_FILES"; then - - -ac_cr=`echo X | tr X '\015'` -# On cygwin, bash can eat \r inside `` if the user requested igncr. -# But we know of no other shell where ac_cr would be empty at this -# point, so we can use a bashism as a fallback. -if test "x$ac_cr" = x; then - eval ac_cr=\$\'\\r\' -fi -ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' /dev/null` -if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then - ac_cs_awk_cr='\\r' -else - ac_cs_awk_cr=$ac_cr -fi - -echo 'BEGIN {' >"$ac_tmp/subs1.awk" && -cat >>"$ac_tmp/subs1.awk" <<\_ACAWK && -S["LTLIBOBJS"]=" ${LIBOBJDIR}strlcat$U.lo ${LIBOBJDIR}strlcpy$U.lo" -S["INSTALL_DATA"]="${INSTALL} -m 644" -S["INSTALL_SCRIPT"]="${INSTALL}" -S["INSTALL_PROGRAM"]="${INSTALL}" -S["MAN_MISC_INFO"]="7" -S["MAN_FILE_FORMATS"]="5" -S["LOCALSRC"]="print-smb.c smbutil.c " -S["V_PCAPDEP"]="" -S["V_INCLS"]="-I/usr/local/include -I../src" -S["V_GROUP"]="wheel" -S["V_DEFS"]=" -D_U_=\"__attribute__((unused))\"" -S["V_CCOPT"]=" -ffloat-store" -S["MKDEP"]="" -S["DEPENDENCY_CFLAG"]="" -S["AR"]="ar" -S["RANLIB"]="ranlib" -S["PCAP_CONFIG"]="/usr/local/bin/pcap-config" -S["LIBOBJS"]=" ${LIBOBJDIR}strlcat$U.o ${LIBOBJDIR}strlcpy$U.o" -S["EGREP"]="/usr/bin/grep -E" -S["GREP"]="/usr/bin/grep" -S["CPP"]="/usr/bin/gcc -E" -S["OBJEXT"]="o" -S["EXEEXT"]="" -S["ac_ct_CC"]="/usr/bin/gcc" -S["CPPFLAGS"]="" -S["LDFLAGS"]="" -S["CFLAGS"]="-g -O2" -S["CC"]="/usr/bin/gcc" -S["SHLICC2"]="" -S["host_os"]="linux-gnu" -S["host_vendor"]="unknown" -S["host_cpu"]="x86_64" -S["host"]="x86_64-unknown-linux-gnu" -S["build_os"]="linux-gnu" -S["build_vendor"]="unknown" -S["build_cpu"]="x86_64" -S["build"]="x86_64-unknown-linux-gnu" -S["target_alias"]="" -S["host_alias"]="" -S["build_alias"]="" -S["LIBS"]="-lcrypto -L/usr/local/lib -Wl,-rpath,/usr/local/lib -lpcap " -S["ECHO_T"]="" -S["ECHO_N"]="-n" -S["ECHO_C"]="" -S["DEFS"]="-DHAVE_CONFIG_H" -S["mandir"]="${datarootdir}/man" -S["localedir"]="${datarootdir}/locale" -S["libdir"]="${exec_prefix}/lib" -S["psdir"]="${docdir}" -S["pdfdir"]="${docdir}" -S["dvidir"]="${docdir}" -S["htmldir"]="${docdir}" -S["infodir"]="${datarootdir}/info" -S["docdir"]="${datarootdir}/doc/${PACKAGE}" -S["oldincludedir"]="/usr/include" -S["includedir"]="${prefix}/include" -S["localstatedir"]="${prefix}/var" -S["sharedstatedir"]="${prefix}/com" -S["sysconfdir"]="${prefix}/etc" -S["datadir"]="${datarootdir}" -S["datarootdir"]="${prefix}/share" -S["libexecdir"]="${exec_prefix}/libexec" -S["sbindir"]="${exec_prefix}/sbin" -S["bindir"]="${exec_prefix}/bin" -S["program_transform_name"]="s,x,x," -S["prefix"]="/usr/local" -S["exec_prefix"]="${prefix}" -S["PACKAGE_URL"]="" -S["PACKAGE_BUGREPORT"]="" -S["PACKAGE_STRING"]="" -S["PACKAGE_VERSION"]="" -S["PACKAGE_TARNAME"]="" -S["PACKAGE_NAME"]="" -S["PATH_SEPARATOR"]=":" -S["SHELL"]="/bin/sh" -_ACAWK -cat >>"$ac_tmp/subs1.awk" <<_ACAWK && - for (key in S) S_is_set[key] = 1 - FS = "" - -} -{ - line = $ 0 - nfields = split(line, field, "@") - substed = 0 - len = length(field[1]) - for (i = 2; i < nfields; i++) { - key = field[i] - keylen = length(key) - if (S_is_set[key]) { - value = S[key] - line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) - len += length(value) + length(field[++i]) - substed = 1 - } else - len += 1 + keylen - } - - print line -} - -_ACAWK -if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then - sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" -else - cat -fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \ - || as_fn_error $? "could not setup config files machinery" "$LINENO" 5 -fi # test -n "$CONFIG_FILES" - -# Set up the scripts for CONFIG_HEADERS section. -# No need to generate them if there are no CONFIG_HEADERS. -# This happens for instance with `./config.status Makefile'. -if test -n "$CONFIG_HEADERS"; then -cat >"$ac_tmp/defines.awk" <<\_ACAWK || -BEGIN { -D["PACKAGE_NAME"]=" \"\"" -D["PACKAGE_TARNAME"]=" \"\"" -D["PACKAGE_VERSION"]=" \"\"" -D["PACKAGE_STRING"]=" \"\"" -D["PACKAGE_BUGREPORT"]=" \"\"" -D["PACKAGE_URL"]=" \"\"" -D["inline"]=" inline" -D["HAVE___ATTRIBUTE__"]=" 1" -D["__ATTRIBUTE___NORETURN_OK_FOR_FUNCTION_POINTERS"]=" 1" -D["__ATTRIBUTE___FORMAT_OK"]=" 1" -D["__ATTRIBUTE___FORMAT_OK_FOR_FUNCTION_POINTERS"]=" 1" -D["STDC_HEADERS"]=" 1" -D["HAVE_SYS_TYPES_H"]=" 1" -D["HAVE_SYS_STAT_H"]=" 1" -D["HAVE_STDLIB_H"]=" 1" -D["HAVE_STRING_H"]=" 1" -D["HAVE_MEMORY_H"]=" 1" -D["HAVE_STRINGS_H"]=" 1" -D["HAVE_INTTYPES_H"]=" 1" -D["HAVE_STDINT_H"]=" 1" -D["HAVE_UNISTD_H"]=" 1" -D["HAVE_FCNTL_H"]=" 1" -D["HAVE_RPC_RPC_H"]=" 1" -D["HAVE_NETINET_IF_ETHER_H"]=" 1" -D["TIME_WITH_SYS_TIME"]=" 1" -D["ENABLE_SMB"]=" 1" -D["HAVE_OPENAT"]=" 1" -D["HAVE_OS_IPV6_SUPPORT"]=" 1" -D["HAVE_VFPRINTF"]=" 1" -D["HAVE_STRDUP"]=" 1" -D["HAVE_STRSEP"]=" 1" -D["HAVE_GETOPT_LONG"]=" 1" -D["HAVE_FORK"]=" 1" -D["HAVE_VFORK"]=" 1" -D["HAVE_STRFTIME"]=" 1" -D["HAVE_SETLINEBUF"]=" 1" -D["HAVE_ALARM"]=" 1" -D["HAVE_VSNPRINTF"]=" 1" -D["HAVE_SNPRINTF"]=" 1" -D["RETSIGTYPE"]=" void" -D["RETSIGVAL"]=" /**/" -D["HAVE_SIGACTION"]=" 1" -D["HAVE_GETRPCBYNUMBER"]=" 1" -D["HAVE_ETHER_NTOHOST"]=" 1" -D["USE_ETHER_NTOHOST"]=" 1" -D["HAVE_NETINET_ETHER_H"]=" 1" -D["NETINET_ETHER_H_DECLARES_ETHER_NTOHOST"]=" /**/" -D["HAVE_DECL_ETHER_NTOHOST"]=" 1" -D["HAVE_PCAP_LIST_DATALINKS"]=" 1" -D["HAVE_PCAP_FREE_DATALINKS"]=" 1" -D["HAVE_PCAP_SET_DATALINK"]=" 1" -D["HAVE_PCAP_DATALINK_NAME_TO_VAL"]=" 1" -D["HAVE_PCAP_DATALINK_VAL_TO_DESCRIPTION"]=" 1" -D["HAVE_PCAP_BREAKLOOP"]=" 1" -D["HAVE_PCAP_DUMP_FTELL"]=" 1" -D["HAVE_PCAP_CREATE"]=" 1" -D["HAVE_PCAP_SET_TSTAMP_TYPE"]=" 1" -D["HAVE_PCAP_SET_TSTAMP_PRECISION"]=" 1" -D["HAVE_PCAP_FINDALLDEVS"]=" 1" -D["HAVE_PCAP_DUMP_FLUSH"]=" 1" -D["HAVE_PCAP_LIB_VERSION"]=" 1" -D["HAVE_PCAP_SETDIRECTION"]=" 1" -D["HAVE_PCAP_SET_IMMEDIATE_MODE"]=" 1" -D["HAVE_PCAP_IF_T"]=" 1" -D["HAVE_BPF_DUMP"]=" 1" -D["HAVE_UINTPTR_T"]=" 1" -D["HAVE_INTTYPES_H"]=" 1" -D["HAVE_PCAP_BLUETOOTH_H"]=" 1" -D["HAVE_PCAP_NFLOG_H"]=" 1" -D["HAVE_PCAP_USB_H"]=" 1" -D["HAVE_LIBCRYPTO"]=" 1" -D["HAVE_OPENSSL_EVP_H"]=" 1" -D["HAVE_EVP_CIPHER_CTX_NEW"]=" 1" - for (key in D) D_is_set[key] = 1 - FS = "" -} -/^[\t ]*#[\t ]*(define|undef)[\t ]+[_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ][_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789]*([\t (]|$)/ { - line = $ 0 - split(line, arg, " ") - if (arg[1] == "#") { - defundef = arg[2] - mac1 = arg[3] - } else { - defundef = substr(arg[1], 2) - mac1 = arg[2] - } - split(mac1, mac2, "(") #) - macro = mac2[1] - prefix = substr(line, 1, index(line, defundef) - 1) - if (D_is_set[macro]) { - # Preserve the white space surrounding the "#". - print prefix "define", macro P[macro] D[macro] - next - } else { - # Replace #undef with comments. This is necessary, for example, - # in the case of _POSIX_SOURCE, which is predefined and required - # on some systems where configure will not decide to define it. - if (defundef == "undef") { - print "/*", prefix defundef, macro, "*/" - next - } - } -} -{ print } -_ACAWK - as_fn_error $? "could not setup config headers machinery" "$LINENO" 5 -fi # test -n "$CONFIG_HEADERS" - - -eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS" -shift -for ac_tag -do - case $ac_tag in - :[FHLC]) ac_mode=$ac_tag; continue;; - esac - case $ac_mode$ac_tag in - :[FHL]*:*);; - :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;; - :[FH]-) ac_tag=-:-;; - :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; - esac - ac_save_IFS=$IFS - IFS=: - set x $ac_tag - IFS=$ac_save_IFS - shift - ac_file=$1 - shift - - case $ac_mode in - :L) ac_source=$1;; - :[FH]) - ac_file_inputs= - for ac_f - do - case $ac_f in - -) ac_f="$ac_tmp/stdin";; - *) # Look for the file first in the build tree, then in the source tree - # (if the path is not absolute). The absolute path cannot be DOS-style, - # because $ac_f cannot contain `:'. - test -f "$ac_f" || - case $ac_f in - [\\/$]*) false;; - *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; - esac || - as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;; - esac - case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac - as_fn_append ac_file_inputs " '$ac_f'" - done - - # Let's still pretend it is `configure' which instantiates (i.e., don't - # use $as_me), people would be surprised to read: - # /* config.h. Generated by config.status. */ - configure_input='Generated from '` - $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' - `' by configure.' - if test x"$ac_file" != x-; then - configure_input="$ac_file. $configure_input" - { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 -$as_echo "$as_me: creating $ac_file" >&6;} - fi - # Neutralize special characters interpreted by sed in replacement strings. - case $configure_input in #( - *\&* | *\|* | *\\* ) - ac_sed_conf_input=`$as_echo "$configure_input" | - sed 's/[\\\\&|]/\\\\&/g'`;; #( - *) ac_sed_conf_input=$configure_input;; - esac - - case $ac_tag in - *:-:* | *:-) cat >"$ac_tmp/stdin" \ - || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; - esac - ;; - esac - - ac_dir=`$as_dirname -- "$ac_file" || -$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$ac_file" : 'X\(//\)[^/]' \| \ - X"$ac_file" : 'X\(//\)$' \| \ - X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$ac_file" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - as_dir="$ac_dir"; as_fn_mkdir_p - ac_builddir=. - -case "$ac_dir" in -.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; -*) - ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` - # A ".." for each directory in $ac_dir_suffix. - ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` - case $ac_top_builddir_sub in - "") ac_top_builddir_sub=. ac_top_build_prefix= ;; - *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; - esac ;; -esac -ac_abs_top_builddir=$ac_pwd -ac_abs_builddir=$ac_pwd$ac_dir_suffix -# for backward compatibility: -ac_top_builddir=$ac_top_build_prefix - -case $srcdir in - .) # We are building in place. - ac_srcdir=. - ac_top_srcdir=$ac_top_builddir_sub - ac_abs_top_srcdir=$ac_pwd ;; - [\\/]* | ?:[\\/]* ) # Absolute name. - ac_srcdir=$srcdir$ac_dir_suffix; - ac_top_srcdir=$srcdir - ac_abs_top_srcdir=$srcdir ;; - *) # Relative name. - ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix - ac_top_srcdir=$ac_top_build_prefix$srcdir - ac_abs_top_srcdir=$ac_pwd/$srcdir ;; -esac -ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix - - - case $ac_mode in - :F) - # - # CONFIG_FILE - # - - case $INSTALL in - [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; - *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; - esac -# If the template does not know about datarootdir, expand it. -# FIXME: This hack should be removed a few years after 2.60. -ac_datarootdir_hack=; ac_datarootdir_seen= -ac_sed_dataroot=' -/datarootdir/ { - p - q -} -/@datadir@/p -/@docdir@/p -/@infodir@/p -/@localedir@/p -/@mandir@/p' -case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in -*datarootdir*) ac_datarootdir_seen=yes;; -*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 -$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} - ac_datarootdir_hack=' - s&@datadir@&${datarootdir}&g - s&@docdir@&${datarootdir}/doc/${PACKAGE}&g - s&@infodir@&${datarootdir}/info&g - s&@localedir@&${datarootdir}/locale&g - s&@mandir@&${datarootdir}/man&g - s&\${datarootdir}&${prefix}/share&g' ;; -esac -ac_sed_extra=" - -:t -/@[a-zA-Z_][a-zA-Z_0-9]*@/!b -s|@configure_input@|$ac_sed_conf_input|;t t -s&@top_builddir@&$ac_top_builddir_sub&;t t -s&@top_build_prefix@&$ac_top_build_prefix&;t t -s&@srcdir@&$ac_srcdir&;t t -s&@abs_srcdir@&$ac_abs_srcdir&;t t -s&@top_srcdir@&$ac_top_srcdir&;t t -s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t -s&@builddir@&$ac_builddir&;t t -s&@abs_builddir@&$ac_abs_builddir&;t t -s&@abs_top_builddir@&$ac_abs_top_builddir&;t t -s&@INSTALL@&$ac_INSTALL&;t t -$ac_datarootdir_hack -" -eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \ - >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5 - -test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && - { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } && - { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \ - "$ac_tmp/out"`; test -z "$ac_out"; } && - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' -which seems to be undefined. Please make sure it is defined" >&5 -$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' -which seems to be undefined. Please make sure it is defined" >&2;} - - rm -f "$ac_tmp/stdin" - case $ac_file in - -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";; - *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";; - esac \ - || as_fn_error $? "could not create $ac_file" "$LINENO" 5 - ;; - :H) - # - # CONFIG_HEADER - # - if test x"$ac_file" != x-; then - { - $as_echo "/* $configure_input */" \ - && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" - } >"$ac_tmp/config.h" \ - || as_fn_error $? "could not create $ac_file" "$LINENO" 5 - if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then - { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 -$as_echo "$as_me: $ac_file is unchanged" >&6;} - else - rm -f "$ac_file" - mv "$ac_tmp/config.h" "$ac_file" \ - || as_fn_error $? "could not create $ac_file" "$LINENO" 5 - fi - else - $as_echo "/* $configure_input */" \ - && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \ - || as_fn_error $? "could not create -" "$LINENO" 5 - fi - ;; - - :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5 -$as_echo "$as_me: executing $ac_file commands" >&6;} - ;; - esac - - - case $ac_file$ac_mode in - "default-1":C) if test -f .devel; then - echo timestamp > stamp-h - cat Makefile-devel-adds >> Makefile - make depend -fi ;; - - esac -done # for ac_tag - - -as_fn_exit 0 diff --git a/cmake-build-debug/cpack.o b/cmake-build-debug/cpack.o deleted file mode 100644 index 4fcbcb4..0000000 Binary files a/cmake-build-debug/cpack.o and /dev/null differ diff --git a/cmake-build-debug/gmpls.o b/cmake-build-debug/gmpls.o deleted file mode 100644 index b2156e8..0000000 Binary files a/cmake-build-debug/gmpls.o and /dev/null differ diff --git a/cmake-build-debug/gmt2local.o b/cmake-build-debug/gmt2local.o deleted file mode 100644 index e0f88a2..0000000 Binary files a/cmake-build-debug/gmt2local.o and /dev/null differ diff --git a/cmake-build-debug/in_cksum.o b/cmake-build-debug/in_cksum.o deleted file mode 100644 index 7eb06ef..0000000 Binary files a/cmake-build-debug/in_cksum.o and /dev/null differ diff --git a/cmake-build-debug/ipproto.o b/cmake-build-debug/ipproto.o deleted file mode 100644 index c9473b4..0000000 Binary files a/cmake-build-debug/ipproto.o and /dev/null differ diff --git a/cmake-build-debug/l2vpn.o b/cmake-build-debug/l2vpn.o deleted file mode 100644 index 2a7f2a7..0000000 Binary files a/cmake-build-debug/l2vpn.o and /dev/null differ diff --git a/cmake-build-debug/libnetdissect.a b/cmake-build-debug/libnetdissect.a deleted file mode 100644 index e1f00b3..0000000 Binary files a/cmake-build-debug/libnetdissect.a and /dev/null differ diff --git a/cmake-build-debug/machdep.o b/cmake-build-debug/machdep.o deleted file mode 100644 index 1c7616c..0000000 Binary files a/cmake-build-debug/machdep.o and /dev/null differ diff --git a/cmake-build-debug/net_common.o b/cmake-build-debug/net_common.o deleted file mode 100644 index 949fe85..0000000 Binary files a/cmake-build-debug/net_common.o and /dev/null differ diff --git a/cmake-build-debug/nlpid.o b/cmake-build-debug/nlpid.o deleted file mode 100644 index 7079392..0000000 Binary files a/cmake-build-debug/nlpid.o and /dev/null differ diff --git a/cmake-build-debug/oui.o b/cmake-build-debug/oui.o deleted file mode 100644 index d39090e..0000000 Binary files a/cmake-build-debug/oui.o and /dev/null differ diff --git a/cmake-build-debug/parsenfsfh.o b/cmake-build-debug/parsenfsfh.o deleted file mode 100644 index 629bc89..0000000 Binary files a/cmake-build-debug/parsenfsfh.o and /dev/null differ diff --git a/cmake-build-debug/print-802_11.o b/cmake-build-debug/print-802_11.o deleted file mode 100644 index 9f50232..0000000 Binary files a/cmake-build-debug/print-802_11.o and /dev/null differ diff --git a/cmake-build-debug/print-802_15_4.o b/cmake-build-debug/print-802_15_4.o deleted file mode 100644 index 9181eba..0000000 Binary files a/cmake-build-debug/print-802_15_4.o and /dev/null differ diff --git a/cmake-build-debug/print-ah.o b/cmake-build-debug/print-ah.o deleted file mode 100644 index fd8b4a8..0000000 Binary files a/cmake-build-debug/print-ah.o and /dev/null differ diff --git a/cmake-build-debug/print-ahcp.o b/cmake-build-debug/print-ahcp.o deleted file mode 100644 index 78d506f..0000000 Binary files a/cmake-build-debug/print-ahcp.o and /dev/null differ diff --git a/cmake-build-debug/print-aodv.o b/cmake-build-debug/print-aodv.o deleted file mode 100644 index 77567c8..0000000 Binary files a/cmake-build-debug/print-aodv.o and /dev/null differ diff --git a/cmake-build-debug/print-aoe.o b/cmake-build-debug/print-aoe.o deleted file mode 100644 index 66e53f7..0000000 Binary files a/cmake-build-debug/print-aoe.o and /dev/null differ diff --git a/cmake-build-debug/print-ap1394.o b/cmake-build-debug/print-ap1394.o deleted file mode 100644 index 0980010..0000000 Binary files a/cmake-build-debug/print-ap1394.o and /dev/null differ diff --git a/cmake-build-debug/print-arcnet.o b/cmake-build-debug/print-arcnet.o deleted file mode 100644 index ab93a88..0000000 Binary files a/cmake-build-debug/print-arcnet.o and /dev/null differ diff --git a/cmake-build-debug/print-arp.o b/cmake-build-debug/print-arp.o deleted file mode 100644 index 9ee4020..0000000 Binary files a/cmake-build-debug/print-arp.o and /dev/null differ diff --git a/cmake-build-debug/print-ascii.o b/cmake-build-debug/print-ascii.o deleted file mode 100644 index 0facd97..0000000 Binary files a/cmake-build-debug/print-ascii.o and /dev/null differ diff --git a/cmake-build-debug/print-atalk.o b/cmake-build-debug/print-atalk.o deleted file mode 100644 index d024b83..0000000 Binary files a/cmake-build-debug/print-atalk.o and /dev/null differ diff --git a/cmake-build-debug/print-atm.o b/cmake-build-debug/print-atm.o deleted file mode 100644 index 50aa370..0000000 Binary files a/cmake-build-debug/print-atm.o and /dev/null differ diff --git a/cmake-build-debug/print-babel.o b/cmake-build-debug/print-babel.o deleted file mode 100644 index 0bb6506..0000000 Binary files a/cmake-build-debug/print-babel.o and /dev/null differ diff --git a/cmake-build-debug/print-beep.o b/cmake-build-debug/print-beep.o deleted file mode 100644 index a57a419..0000000 Binary files a/cmake-build-debug/print-beep.o and /dev/null differ diff --git a/cmake-build-debug/print-bfd.o b/cmake-build-debug/print-bfd.o deleted file mode 100644 index ef0869d..0000000 Binary files a/cmake-build-debug/print-bfd.o and /dev/null differ diff --git a/cmake-build-debug/print-bgp.o b/cmake-build-debug/print-bgp.o deleted file mode 100644 index b279ed5..0000000 Binary files a/cmake-build-debug/print-bgp.o and /dev/null differ diff --git a/cmake-build-debug/print-bootp.o b/cmake-build-debug/print-bootp.o deleted file mode 100644 index 07b2778..0000000 Binary files a/cmake-build-debug/print-bootp.o and /dev/null differ diff --git a/cmake-build-debug/print-bt.o b/cmake-build-debug/print-bt.o deleted file mode 100644 index e3d8404..0000000 Binary files a/cmake-build-debug/print-bt.o and /dev/null differ diff --git a/cmake-build-debug/print-calm-fast.o b/cmake-build-debug/print-calm-fast.o deleted file mode 100644 index c05535a..0000000 Binary files a/cmake-build-debug/print-calm-fast.o and /dev/null differ diff --git a/cmake-build-debug/print-carp.o b/cmake-build-debug/print-carp.o deleted file mode 100644 index 9758f80..0000000 Binary files a/cmake-build-debug/print-carp.o and /dev/null differ diff --git a/cmake-build-debug/print-cdp.o b/cmake-build-debug/print-cdp.o deleted file mode 100644 index 1ffa6ed..0000000 Binary files a/cmake-build-debug/print-cdp.o and /dev/null differ diff --git a/cmake-build-debug/print-cfm.o b/cmake-build-debug/print-cfm.o deleted file mode 100644 index cf618b8..0000000 Binary files a/cmake-build-debug/print-cfm.o and /dev/null differ diff --git a/cmake-build-debug/print-chdlc.o b/cmake-build-debug/print-chdlc.o deleted file mode 100644 index 289d549..0000000 Binary files a/cmake-build-debug/print-chdlc.o and /dev/null differ diff --git a/cmake-build-debug/print-cip.o b/cmake-build-debug/print-cip.o deleted file mode 100644 index a1072a0..0000000 Binary files a/cmake-build-debug/print-cip.o and /dev/null differ diff --git a/cmake-build-debug/print-cnfp.o b/cmake-build-debug/print-cnfp.o deleted file mode 100644 index 5145525..0000000 Binary files a/cmake-build-debug/print-cnfp.o and /dev/null differ diff --git a/cmake-build-debug/print-dccp.o b/cmake-build-debug/print-dccp.o deleted file mode 100644 index 29691b8..0000000 Binary files a/cmake-build-debug/print-dccp.o and /dev/null differ diff --git a/cmake-build-debug/print-decnet.o b/cmake-build-debug/print-decnet.o deleted file mode 100644 index c9f3e6b..0000000 Binary files a/cmake-build-debug/print-decnet.o and /dev/null differ diff --git a/cmake-build-debug/print-dhcp6.o b/cmake-build-debug/print-dhcp6.o deleted file mode 100644 index 4c64b04..0000000 Binary files a/cmake-build-debug/print-dhcp6.o and /dev/null differ diff --git a/cmake-build-debug/print-domain.o b/cmake-build-debug/print-domain.o deleted file mode 100644 index a3ab610..0000000 Binary files a/cmake-build-debug/print-domain.o and /dev/null differ diff --git a/cmake-build-debug/print-dtp.o b/cmake-build-debug/print-dtp.o deleted file mode 100644 index 9171c65..0000000 Binary files a/cmake-build-debug/print-dtp.o and /dev/null differ diff --git a/cmake-build-debug/print-dvmrp.o b/cmake-build-debug/print-dvmrp.o deleted file mode 100644 index e7f2102..0000000 Binary files a/cmake-build-debug/print-dvmrp.o and /dev/null differ diff --git a/cmake-build-debug/print-eap.o b/cmake-build-debug/print-eap.o deleted file mode 100644 index 449e35a..0000000 Binary files a/cmake-build-debug/print-eap.o and /dev/null differ diff --git a/cmake-build-debug/print-egp.o b/cmake-build-debug/print-egp.o deleted file mode 100644 index f8f2686..0000000 Binary files a/cmake-build-debug/print-egp.o and /dev/null differ diff --git a/cmake-build-debug/print-eigrp.o b/cmake-build-debug/print-eigrp.o deleted file mode 100644 index ac82fa2..0000000 Binary files a/cmake-build-debug/print-eigrp.o and /dev/null differ diff --git a/cmake-build-debug/print-enc.o b/cmake-build-debug/print-enc.o deleted file mode 100644 index 8e86dce..0000000 Binary files a/cmake-build-debug/print-enc.o and /dev/null differ diff --git a/cmake-build-debug/print-esp.o b/cmake-build-debug/print-esp.o deleted file mode 100644 index b86cd85..0000000 Binary files a/cmake-build-debug/print-esp.o and /dev/null differ diff --git a/cmake-build-debug/print-ether.o b/cmake-build-debug/print-ether.o deleted file mode 100644 index f2d7171..0000000 Binary files a/cmake-build-debug/print-ether.o and /dev/null differ diff --git a/cmake-build-debug/print-fddi.o b/cmake-build-debug/print-fddi.o deleted file mode 100644 index 080b0f3..0000000 Binary files a/cmake-build-debug/print-fddi.o and /dev/null differ diff --git a/cmake-build-debug/print-forces.o b/cmake-build-debug/print-forces.o deleted file mode 100644 index 65b4df4..0000000 Binary files a/cmake-build-debug/print-forces.o and /dev/null differ diff --git a/cmake-build-debug/print-fr.o b/cmake-build-debug/print-fr.o deleted file mode 100644 index 634c235..0000000 Binary files a/cmake-build-debug/print-fr.o and /dev/null differ diff --git a/cmake-build-debug/print-frag6.o b/cmake-build-debug/print-frag6.o deleted file mode 100644 index 17135c0..0000000 Binary files a/cmake-build-debug/print-frag6.o and /dev/null differ diff --git a/cmake-build-debug/print-ftp.o b/cmake-build-debug/print-ftp.o deleted file mode 100644 index 2827bbd..0000000 Binary files a/cmake-build-debug/print-ftp.o and /dev/null differ diff --git a/cmake-build-debug/print-geneve.o b/cmake-build-debug/print-geneve.o deleted file mode 100644 index 29aa60f..0000000 Binary files a/cmake-build-debug/print-geneve.o and /dev/null differ diff --git a/cmake-build-debug/print-geonet.o b/cmake-build-debug/print-geonet.o deleted file mode 100644 index c487b4f..0000000 Binary files a/cmake-build-debug/print-geonet.o and /dev/null differ diff --git a/cmake-build-debug/print-gre.o b/cmake-build-debug/print-gre.o deleted file mode 100644 index 02dd5f0..0000000 Binary files a/cmake-build-debug/print-gre.o and /dev/null differ diff --git a/cmake-build-debug/print-hncp.o b/cmake-build-debug/print-hncp.o deleted file mode 100644 index 51a72fd..0000000 Binary files a/cmake-build-debug/print-hncp.o and /dev/null differ diff --git a/cmake-build-debug/print-hsrp.o b/cmake-build-debug/print-hsrp.o deleted file mode 100644 index 63e389d..0000000 Binary files a/cmake-build-debug/print-hsrp.o and /dev/null differ diff --git a/cmake-build-debug/print-http.o b/cmake-build-debug/print-http.o deleted file mode 100644 index 1698104..0000000 Binary files a/cmake-build-debug/print-http.o and /dev/null differ diff --git a/cmake-build-debug/print-icmp.o b/cmake-build-debug/print-icmp.o deleted file mode 100644 index e1d4a9c..0000000 Binary files a/cmake-build-debug/print-icmp.o and /dev/null differ diff --git a/cmake-build-debug/print-icmp6.o b/cmake-build-debug/print-icmp6.o deleted file mode 100644 index 23dfb11..0000000 Binary files a/cmake-build-debug/print-icmp6.o and /dev/null differ diff --git a/cmake-build-debug/print-igmp.o b/cmake-build-debug/print-igmp.o deleted file mode 100644 index c13147a..0000000 Binary files a/cmake-build-debug/print-igmp.o and /dev/null differ diff --git a/cmake-build-debug/print-igrp.o b/cmake-build-debug/print-igrp.o deleted file mode 100644 index dacf9d1..0000000 Binary files a/cmake-build-debug/print-igrp.o and /dev/null differ diff --git a/cmake-build-debug/print-ip.o b/cmake-build-debug/print-ip.o deleted file mode 100644 index dd8be3c..0000000 Binary files a/cmake-build-debug/print-ip.o and /dev/null differ diff --git a/cmake-build-debug/print-ip6.o b/cmake-build-debug/print-ip6.o deleted file mode 100644 index 12c921a..0000000 Binary files a/cmake-build-debug/print-ip6.o and /dev/null differ diff --git a/cmake-build-debug/print-ip6opts.o b/cmake-build-debug/print-ip6opts.o deleted file mode 100644 index 223e799..0000000 Binary files a/cmake-build-debug/print-ip6opts.o and /dev/null differ diff --git a/cmake-build-debug/print-ipcomp.o b/cmake-build-debug/print-ipcomp.o deleted file mode 100644 index 8639a88..0000000 Binary files a/cmake-build-debug/print-ipcomp.o and /dev/null differ diff --git a/cmake-build-debug/print-ipfc.o b/cmake-build-debug/print-ipfc.o deleted file mode 100644 index adc5a6e..0000000 Binary files a/cmake-build-debug/print-ipfc.o and /dev/null differ diff --git a/cmake-build-debug/print-ipnet.o b/cmake-build-debug/print-ipnet.o deleted file mode 100644 index 8df11a7..0000000 Binary files a/cmake-build-debug/print-ipnet.o and /dev/null differ diff --git a/cmake-build-debug/print-ipx.o b/cmake-build-debug/print-ipx.o deleted file mode 100644 index 34bab7a..0000000 Binary files a/cmake-build-debug/print-ipx.o and /dev/null differ diff --git a/cmake-build-debug/print-isakmp.o b/cmake-build-debug/print-isakmp.o deleted file mode 100644 index 8f9ca68..0000000 Binary files a/cmake-build-debug/print-isakmp.o and /dev/null differ diff --git a/cmake-build-debug/print-isoclns.o b/cmake-build-debug/print-isoclns.o deleted file mode 100644 index 4896173..0000000 Binary files a/cmake-build-debug/print-isoclns.o and /dev/null differ diff --git a/cmake-build-debug/print-juniper.o b/cmake-build-debug/print-juniper.o deleted file mode 100644 index 2033b49..0000000 Binary files a/cmake-build-debug/print-juniper.o and /dev/null differ diff --git a/cmake-build-debug/print-krb.o b/cmake-build-debug/print-krb.o deleted file mode 100644 index f7beb02..0000000 Binary files a/cmake-build-debug/print-krb.o and /dev/null differ diff --git a/cmake-build-debug/print-l2tp.o b/cmake-build-debug/print-l2tp.o deleted file mode 100644 index bfa3b02..0000000 Binary files a/cmake-build-debug/print-l2tp.o and /dev/null differ diff --git a/cmake-build-debug/print-lane.o b/cmake-build-debug/print-lane.o deleted file mode 100644 index 90088dc..0000000 Binary files a/cmake-build-debug/print-lane.o and /dev/null differ diff --git a/cmake-build-debug/print-ldp.o b/cmake-build-debug/print-ldp.o deleted file mode 100644 index b839c55..0000000 Binary files a/cmake-build-debug/print-ldp.o and /dev/null differ diff --git a/cmake-build-debug/print-lisp.o b/cmake-build-debug/print-lisp.o deleted file mode 100644 index ba2f295..0000000 Binary files a/cmake-build-debug/print-lisp.o and /dev/null differ diff --git a/cmake-build-debug/print-llc.o b/cmake-build-debug/print-llc.o deleted file mode 100644 index 959a184..0000000 Binary files a/cmake-build-debug/print-llc.o and /dev/null differ diff --git a/cmake-build-debug/print-lldp.o b/cmake-build-debug/print-lldp.o deleted file mode 100644 index 12ebc63..0000000 Binary files a/cmake-build-debug/print-lldp.o and /dev/null differ diff --git a/cmake-build-debug/print-lmp.o b/cmake-build-debug/print-lmp.o deleted file mode 100644 index ed2f980..0000000 Binary files a/cmake-build-debug/print-lmp.o and /dev/null differ diff --git a/cmake-build-debug/print-loopback.o b/cmake-build-debug/print-loopback.o deleted file mode 100644 index 1429803..0000000 Binary files a/cmake-build-debug/print-loopback.o and /dev/null differ diff --git a/cmake-build-debug/print-lspping.o b/cmake-build-debug/print-lspping.o deleted file mode 100644 index 2c83423..0000000 Binary files a/cmake-build-debug/print-lspping.o and /dev/null differ diff --git a/cmake-build-debug/print-lwapp.o b/cmake-build-debug/print-lwapp.o deleted file mode 100644 index 4731ab9..0000000 Binary files a/cmake-build-debug/print-lwapp.o and /dev/null differ diff --git a/cmake-build-debug/print-lwres.o b/cmake-build-debug/print-lwres.o deleted file mode 100644 index 21c74b0..0000000 Binary files a/cmake-build-debug/print-lwres.o and /dev/null differ diff --git a/cmake-build-debug/print-m3ua.o b/cmake-build-debug/print-m3ua.o deleted file mode 100644 index c87884d..0000000 Binary files a/cmake-build-debug/print-m3ua.o and /dev/null differ diff --git a/cmake-build-debug/print-medsa.o b/cmake-build-debug/print-medsa.o deleted file mode 100644 index cd1bcfc..0000000 Binary files a/cmake-build-debug/print-medsa.o and /dev/null differ diff --git a/cmake-build-debug/print-mobile.o b/cmake-build-debug/print-mobile.o deleted file mode 100644 index 409bc99..0000000 Binary files a/cmake-build-debug/print-mobile.o and /dev/null differ diff --git a/cmake-build-debug/print-mobility.o b/cmake-build-debug/print-mobility.o deleted file mode 100644 index 4f0ecb8..0000000 Binary files a/cmake-build-debug/print-mobility.o and /dev/null differ diff --git a/cmake-build-debug/print-mpcp.o b/cmake-build-debug/print-mpcp.o deleted file mode 100644 index 83db0d4..0000000 Binary files a/cmake-build-debug/print-mpcp.o and /dev/null differ diff --git a/cmake-build-debug/print-mpls.o b/cmake-build-debug/print-mpls.o deleted file mode 100644 index d6bf1b8..0000000 Binary files a/cmake-build-debug/print-mpls.o and /dev/null differ diff --git a/cmake-build-debug/print-mptcp.o b/cmake-build-debug/print-mptcp.o deleted file mode 100644 index 23d39a0..0000000 Binary files a/cmake-build-debug/print-mptcp.o and /dev/null differ diff --git a/cmake-build-debug/print-msdp.o b/cmake-build-debug/print-msdp.o deleted file mode 100644 index 4e182b1..0000000 Binary files a/cmake-build-debug/print-msdp.o and /dev/null differ diff --git a/cmake-build-debug/print-msnlb.o b/cmake-build-debug/print-msnlb.o deleted file mode 100644 index 50119d8..0000000 Binary files a/cmake-build-debug/print-msnlb.o and /dev/null differ diff --git a/cmake-build-debug/print-nflog.o b/cmake-build-debug/print-nflog.o deleted file mode 100644 index 1448c72..0000000 Binary files a/cmake-build-debug/print-nflog.o and /dev/null differ diff --git a/cmake-build-debug/print-nfs.o b/cmake-build-debug/print-nfs.o deleted file mode 100644 index aeab5ac..0000000 Binary files a/cmake-build-debug/print-nfs.o and /dev/null differ diff --git a/cmake-build-debug/print-nsh.o b/cmake-build-debug/print-nsh.o deleted file mode 100644 index ffcd046..0000000 Binary files a/cmake-build-debug/print-nsh.o and /dev/null differ diff --git a/cmake-build-debug/print-ntp.o b/cmake-build-debug/print-ntp.o deleted file mode 100644 index f9a7a36..0000000 Binary files a/cmake-build-debug/print-ntp.o and /dev/null differ diff --git a/cmake-build-debug/print-null.o b/cmake-build-debug/print-null.o deleted file mode 100644 index 0e3c05a..0000000 Binary files a/cmake-build-debug/print-null.o and /dev/null differ diff --git a/cmake-build-debug/print-olsr.o b/cmake-build-debug/print-olsr.o deleted file mode 100644 index 2046e0f..0000000 Binary files a/cmake-build-debug/print-olsr.o and /dev/null differ diff --git a/cmake-build-debug/print-openflow-1.0.o b/cmake-build-debug/print-openflow-1.0.o deleted file mode 100644 index 14c14da..0000000 Binary files a/cmake-build-debug/print-openflow-1.0.o and /dev/null differ diff --git a/cmake-build-debug/print-openflow.o b/cmake-build-debug/print-openflow.o deleted file mode 100644 index bbb82a7..0000000 Binary files a/cmake-build-debug/print-openflow.o and /dev/null differ diff --git a/cmake-build-debug/print-ospf.o b/cmake-build-debug/print-ospf.o deleted file mode 100644 index 56c77c9..0000000 Binary files a/cmake-build-debug/print-ospf.o and /dev/null differ diff --git a/cmake-build-debug/print-ospf6.o b/cmake-build-debug/print-ospf6.o deleted file mode 100644 index 49f3391..0000000 Binary files a/cmake-build-debug/print-ospf6.o and /dev/null differ diff --git a/cmake-build-debug/print-otv.o b/cmake-build-debug/print-otv.o deleted file mode 100644 index c759899..0000000 Binary files a/cmake-build-debug/print-otv.o and /dev/null differ diff --git a/cmake-build-debug/print-pgm.o b/cmake-build-debug/print-pgm.o deleted file mode 100644 index d20da4c..0000000 Binary files a/cmake-build-debug/print-pgm.o and /dev/null differ diff --git a/cmake-build-debug/print-pim.o b/cmake-build-debug/print-pim.o deleted file mode 100644 index 52deee3..0000000 Binary files a/cmake-build-debug/print-pim.o and /dev/null differ diff --git a/cmake-build-debug/print-pktap.o b/cmake-build-debug/print-pktap.o deleted file mode 100644 index 7b21b7e..0000000 Binary files a/cmake-build-debug/print-pktap.o and /dev/null differ diff --git a/cmake-build-debug/print-ppi.o b/cmake-build-debug/print-ppi.o deleted file mode 100644 index aa0a43a..0000000 Binary files a/cmake-build-debug/print-ppi.o and /dev/null differ diff --git a/cmake-build-debug/print-ppp.o b/cmake-build-debug/print-ppp.o deleted file mode 100644 index 702fbf3..0000000 Binary files a/cmake-build-debug/print-ppp.o and /dev/null differ diff --git a/cmake-build-debug/print-pppoe.o b/cmake-build-debug/print-pppoe.o deleted file mode 100644 index 0f7de37..0000000 Binary files a/cmake-build-debug/print-pppoe.o and /dev/null differ diff --git a/cmake-build-debug/print-pptp.o b/cmake-build-debug/print-pptp.o deleted file mode 100644 index 3e6b654..0000000 Binary files a/cmake-build-debug/print-pptp.o and /dev/null differ diff --git a/cmake-build-debug/print-radius.o b/cmake-build-debug/print-radius.o deleted file mode 100644 index f534e83..0000000 Binary files a/cmake-build-debug/print-radius.o and /dev/null differ diff --git a/cmake-build-debug/print-raw.o b/cmake-build-debug/print-raw.o deleted file mode 100644 index 9f74431..0000000 Binary files a/cmake-build-debug/print-raw.o and /dev/null differ diff --git a/cmake-build-debug/print-resp.o b/cmake-build-debug/print-resp.o deleted file mode 100644 index d6f4b7a..0000000 Binary files a/cmake-build-debug/print-resp.o and /dev/null differ diff --git a/cmake-build-debug/print-rip.o b/cmake-build-debug/print-rip.o deleted file mode 100644 index de12b32..0000000 Binary files a/cmake-build-debug/print-rip.o and /dev/null differ diff --git a/cmake-build-debug/print-ripng.o b/cmake-build-debug/print-ripng.o deleted file mode 100644 index 0ee3e44..0000000 Binary files a/cmake-build-debug/print-ripng.o and /dev/null differ diff --git a/cmake-build-debug/print-rpki-rtr.o b/cmake-build-debug/print-rpki-rtr.o deleted file mode 100644 index dd0133e..0000000 Binary files a/cmake-build-debug/print-rpki-rtr.o and /dev/null differ diff --git a/cmake-build-debug/print-rrcp.o b/cmake-build-debug/print-rrcp.o deleted file mode 100644 index 1c69fdc..0000000 Binary files a/cmake-build-debug/print-rrcp.o and /dev/null differ diff --git a/cmake-build-debug/print-rsvp.o b/cmake-build-debug/print-rsvp.o deleted file mode 100644 index 9ab6eb6..0000000 Binary files a/cmake-build-debug/print-rsvp.o and /dev/null differ diff --git a/cmake-build-debug/print-rt6.o b/cmake-build-debug/print-rt6.o deleted file mode 100644 index f40389f..0000000 Binary files a/cmake-build-debug/print-rt6.o and /dev/null differ diff --git a/cmake-build-debug/print-rtsp.o b/cmake-build-debug/print-rtsp.o deleted file mode 100644 index cf57928..0000000 Binary files a/cmake-build-debug/print-rtsp.o and /dev/null differ diff --git a/cmake-build-debug/print-rx.o b/cmake-build-debug/print-rx.o deleted file mode 100644 index fbff7ed..0000000 Binary files a/cmake-build-debug/print-rx.o and /dev/null differ diff --git a/cmake-build-debug/print-sctp.o b/cmake-build-debug/print-sctp.o deleted file mode 100644 index 2997d35..0000000 Binary files a/cmake-build-debug/print-sctp.o and /dev/null differ diff --git a/cmake-build-debug/print-sflow.o b/cmake-build-debug/print-sflow.o deleted file mode 100644 index cbccf4d..0000000 Binary files a/cmake-build-debug/print-sflow.o and /dev/null differ diff --git a/cmake-build-debug/print-sip.o b/cmake-build-debug/print-sip.o deleted file mode 100644 index b3cb534..0000000 Binary files a/cmake-build-debug/print-sip.o and /dev/null differ diff --git a/cmake-build-debug/print-sl.o b/cmake-build-debug/print-sl.o deleted file mode 100644 index 89a511f..0000000 Binary files a/cmake-build-debug/print-sl.o and /dev/null differ diff --git a/cmake-build-debug/print-sll.o b/cmake-build-debug/print-sll.o deleted file mode 100644 index 7768f25..0000000 Binary files a/cmake-build-debug/print-sll.o and /dev/null differ diff --git a/cmake-build-debug/print-slow.o b/cmake-build-debug/print-slow.o deleted file mode 100644 index 3edb2d1..0000000 Binary files a/cmake-build-debug/print-slow.o and /dev/null differ diff --git a/cmake-build-debug/print-smb.o b/cmake-build-debug/print-smb.o deleted file mode 100644 index eac4b38..0000000 Binary files a/cmake-build-debug/print-smb.o and /dev/null differ diff --git a/cmake-build-debug/print-smtp.o b/cmake-build-debug/print-smtp.o deleted file mode 100644 index bc310be..0000000 Binary files a/cmake-build-debug/print-smtp.o and /dev/null differ diff --git a/cmake-build-debug/print-snmp.o b/cmake-build-debug/print-snmp.o deleted file mode 100644 index e92a415..0000000 Binary files a/cmake-build-debug/print-snmp.o and /dev/null differ diff --git a/cmake-build-debug/print-stp.o b/cmake-build-debug/print-stp.o deleted file mode 100644 index 619c28e..0000000 Binary files a/cmake-build-debug/print-stp.o and /dev/null differ diff --git a/cmake-build-debug/print-sunatm.o b/cmake-build-debug/print-sunatm.o deleted file mode 100644 index 87d5283..0000000 Binary files a/cmake-build-debug/print-sunatm.o and /dev/null differ diff --git a/cmake-build-debug/print-sunrpc.o b/cmake-build-debug/print-sunrpc.o deleted file mode 100644 index c3c1ba0..0000000 Binary files a/cmake-build-debug/print-sunrpc.o and /dev/null differ diff --git a/cmake-build-debug/print-symantec.o b/cmake-build-debug/print-symantec.o deleted file mode 100644 index 5ffacee..0000000 Binary files a/cmake-build-debug/print-symantec.o and /dev/null differ diff --git a/cmake-build-debug/print-syslog.o b/cmake-build-debug/print-syslog.o deleted file mode 100644 index 38fd7a4..0000000 Binary files a/cmake-build-debug/print-syslog.o and /dev/null differ diff --git a/cmake-build-debug/print-tcp.o b/cmake-build-debug/print-tcp.o deleted file mode 100644 index 59f9479..0000000 Binary files a/cmake-build-debug/print-tcp.o and /dev/null differ diff --git a/cmake-build-debug/print-telnet.o b/cmake-build-debug/print-telnet.o deleted file mode 100644 index baacbc0..0000000 Binary files a/cmake-build-debug/print-telnet.o and /dev/null differ diff --git a/cmake-build-debug/print-tftp.o b/cmake-build-debug/print-tftp.o deleted file mode 100644 index 48961f4..0000000 Binary files a/cmake-build-debug/print-tftp.o and /dev/null differ diff --git a/cmake-build-debug/print-timed.o b/cmake-build-debug/print-timed.o deleted file mode 100644 index 2b9ece7..0000000 Binary files a/cmake-build-debug/print-timed.o and /dev/null differ diff --git a/cmake-build-debug/print-tipc.o b/cmake-build-debug/print-tipc.o deleted file mode 100644 index 3bd1b81..0000000 Binary files a/cmake-build-debug/print-tipc.o and /dev/null differ diff --git a/cmake-build-debug/print-token.o b/cmake-build-debug/print-token.o deleted file mode 100644 index b164b78..0000000 Binary files a/cmake-build-debug/print-token.o and /dev/null differ diff --git a/cmake-build-debug/print-udld.o b/cmake-build-debug/print-udld.o deleted file mode 100644 index 84d0b6d..0000000 Binary files a/cmake-build-debug/print-udld.o and /dev/null differ diff --git a/cmake-build-debug/print-udp.o b/cmake-build-debug/print-udp.o deleted file mode 100644 index 4a866ec..0000000 Binary files a/cmake-build-debug/print-udp.o and /dev/null differ diff --git a/cmake-build-debug/print-usb.o b/cmake-build-debug/print-usb.o deleted file mode 100644 index 5829315..0000000 Binary files a/cmake-build-debug/print-usb.o and /dev/null differ diff --git a/cmake-build-debug/print-vjc.o b/cmake-build-debug/print-vjc.o deleted file mode 100644 index 8942e0a..0000000 Binary files a/cmake-build-debug/print-vjc.o and /dev/null differ diff --git a/cmake-build-debug/print-vqp.o b/cmake-build-debug/print-vqp.o deleted file mode 100644 index 57a8ec4..0000000 Binary files a/cmake-build-debug/print-vqp.o and /dev/null differ diff --git a/cmake-build-debug/print-vrrp.o b/cmake-build-debug/print-vrrp.o deleted file mode 100644 index d4e0d6c..0000000 Binary files a/cmake-build-debug/print-vrrp.o and /dev/null differ diff --git a/cmake-build-debug/print-vtp.o b/cmake-build-debug/print-vtp.o deleted file mode 100644 index c2b8cab..0000000 Binary files a/cmake-build-debug/print-vtp.o and /dev/null differ diff --git a/cmake-build-debug/print-vxlan-gpe.o b/cmake-build-debug/print-vxlan-gpe.o deleted file mode 100644 index 2739907..0000000 Binary files a/cmake-build-debug/print-vxlan-gpe.o and /dev/null differ diff --git a/cmake-build-debug/print-vxlan.o b/cmake-build-debug/print-vxlan.o deleted file mode 100644 index 2becb77..0000000 Binary files a/cmake-build-debug/print-vxlan.o and /dev/null differ diff --git a/cmake-build-debug/print-wb.o b/cmake-build-debug/print-wb.o deleted file mode 100644 index 2612ec3..0000000 Binary files a/cmake-build-debug/print-wb.o and /dev/null differ diff --git a/cmake-build-debug/print-zephyr.o b/cmake-build-debug/print-zephyr.o deleted file mode 100644 index a7ebcba..0000000 Binary files a/cmake-build-debug/print-zephyr.o and /dev/null differ diff --git a/cmake-build-debug/print-zeromq.o b/cmake-build-debug/print-zeromq.o deleted file mode 100644 index 9aa4a45..0000000 Binary files a/cmake-build-debug/print-zeromq.o and /dev/null differ diff --git a/cmake-build-debug/print.o b/cmake-build-debug/print.o deleted file mode 100644 index b913794..0000000 Binary files a/cmake-build-debug/print.o and /dev/null differ diff --git a/cmake-build-debug/setsignal.o b/cmake-build-debug/setsignal.o deleted file mode 100644 index 10fc969..0000000 Binary files a/cmake-build-debug/setsignal.o and /dev/null differ diff --git a/cmake-build-debug/signature.o b/cmake-build-debug/signature.o deleted file mode 100644 index da88e8d..0000000 Binary files a/cmake-build-debug/signature.o and /dev/null differ diff --git a/cmake-build-debug/smbutil.o b/cmake-build-debug/smbutil.o deleted file mode 100644 index 083426b..0000000 Binary files a/cmake-build-debug/smbutil.o and /dev/null differ diff --git a/cmake-build-debug/strlcat.o b/cmake-build-debug/strlcat.o deleted file mode 100644 index 29a9640..0000000 Binary files a/cmake-build-debug/strlcat.o and /dev/null differ diff --git a/cmake-build-debug/strlcpy.o b/cmake-build-debug/strlcpy.o deleted file mode 100644 index 28f21c9..0000000 Binary files a/cmake-build-debug/strlcpy.o and /dev/null differ diff --git a/cmake-build-debug/strtoaddr.o b/cmake-build-debug/strtoaddr.o deleted file mode 100644 index b630736..0000000 Binary files a/cmake-build-debug/strtoaddr.o and /dev/null differ diff --git a/cmake-build-debug/tcpdump b/cmake-build-debug/tcpdump deleted file mode 100755 index 5f5892a..0000000 Binary files a/cmake-build-debug/tcpdump and /dev/null differ diff --git a/cmake-build-debug/tcpdump.1 b/cmake-build-debug/tcpdump.1 deleted file mode 100644 index 2f2d65d..0000000 --- a/cmake-build-debug/tcpdump.1 +++ /dev/null @@ -1,1975 +0,0 @@ -.\" $NetBSD: tcpdump.8,v 1.9 2003/03/31 00:18:17 perry Exp $ -.\" -.\" Copyright (c) 1987, 1988, 1989, 1990, 1991, 1992, 1994, 1995, 1996, 1997 -.\" The Regents of the University of California. All rights reserved. -.\" All rights reserved. -.\" -.\" Redistribution and use in source and binary forms, with or without -.\" modification, are permitted provided that: (1) source code distributions -.\" retain the above copyright notice and this paragraph in its entirety, (2) -.\" distributions including binary code include the above copyright notice and -.\" this paragraph in its entirety in the documentation or other materials -.\" provided with the distribution, and (3) all advertising materials mentioning -.\" features or use of this software display the following acknowledgement: -.\" ``This product includes software developed by the University of California, -.\" Lawrence Berkeley Laboratory and its contributors.'' Neither the name of -.\" the University nor the names of its contributors may be used to endorse -.\" or promote products derived from this software without specific prior -.\" written permission. -.\" THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED -.\" WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF -.\" MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. -.\" -.TH TCPDUMP 1 "17 September 2015" -.SH NAME -tcpdump \- dump traffic on a network -.SH SYNOPSIS -.na -.B tcpdump -[ -.B \-AbdDefhHIJKlLnNOpqStuUvxX# -] [ -.B \-B -.I buffer_size -] -.br -.ti +8 -[ -.B \-c -.I count -] -.br -.ti +8 -[ -.B \-C -.I file_size -] [ -.B \-G -.I rotate_seconds -] [ -.B \-F -.I file -] -.br -.ti +8 -[ -.B \-i -.I interface -] -[ -.B \-j -.I tstamp_type -] -[ -.B \-m -.I module -] -[ -.B \-M -.I secret -] -.br -.ti +8 -[ -.B \-\-number -] -[ -.B \-Q -.I in|out|inout -] -.ti +8 -[ -.B \-r -.I file -] -[ -.B \-V -.I file -] -[ -.B \-s -.I snaplen -] -[ -.B \-T -.I type -] -[ -.B \-w -.I file -] -.br -.ti +8 -[ -.B \-W -.I filecount -] -.br -.ti +8 -[ -.B \-E -.I spi@ipaddr algo:secret,... -] -.br -.ti +8 -[ -.B \-y -.I datalinktype -] -[ -.B \-z -.I postrotate-command -] -[ -.B \-Z -.I user -] -.ti +8 -[ -.BI \-\-time\-stamp\-precision= tstamp_precision -] -.ti +8 -[ -.B \-\-immediate\-mode -] -[ -.B \-\-version -] -.ti +8 -[ -.I expression -] -.br -.ad -.SH DESCRIPTION -.LP -\fITcpdump\fP prints out a description of the contents of packets on a -network interface that match the boolean \fIexpression\fP; the -description is preceded by a time stamp, printed, by default, as hours, -minutes, seconds, and fractions of a second since midnight. It can also -be run with the -.B \-w -flag, which causes it to save the packet data to a file for later -analysis, and/or with the -.B \-r -flag, which causes it to read from a saved packet file rather than to -read packets from a network interface. It can also be run with the -.B \-V -flag, which causes it to read a list of saved packet files. In all cases, -only packets that match -.I expression -will be processed by -.IR tcpdump . -.LP -.I Tcpdump -will, if not run with the -.B \-c -flag, continue capturing packets until it is interrupted by a SIGINT -signal (generated, for example, by typing your interrupt character, -typically control-C) or a SIGTERM signal (typically generated with the -.BR kill (1) -command); if run with the -.B \-c -flag, it will capture packets until it is interrupted by a SIGINT or -SIGTERM signal or the specified number of packets have been processed. -.LP -When -.I tcpdump -finishes capturing packets, it will report counts of: -.IP -packets ``captured'' (this is the number of packets that -.I tcpdump -has received and processed); -.IP -packets ``received by filter'' (the meaning of this depends on the OS on -which you're running -.IR tcpdump , -and possibly on the way the OS was configured - if a filter was -specified on the command line, on some OSes it counts packets regardless -of whether they were matched by the filter expression and, even if they -were matched by the filter expression, regardless of whether -.I tcpdump -has read and processed them yet, on other OSes it counts only packets that were -matched by the filter expression regardless of whether -.I tcpdump -has read and processed them yet, and on other OSes it counts only -packets that were matched by the filter expression and were processed by -.IR tcpdump ); -.IP -packets ``dropped by kernel'' (this is the number of packets that were -dropped, due to a lack of buffer space, by the packet capture mechanism -in the OS on which -.I tcpdump -is running, if the OS reports that information to applications; if not, -it will be reported as 0). -.LP -On platforms that support the SIGINFO signal, such as most BSDs -(including Mac OS X) and Digital/Tru64 UNIX, it will report those counts -when it receives a SIGINFO signal (generated, for example, by typing -your ``status'' character, typically control-T, although on some -platforms, such as Mac OS X, the ``status'' character is not set by -default, so you must set it with -.BR stty (1) -in order to use it) and will continue capturing packets. On platforms that -do not support the SIGINFO signal, the same can be achieved by using the -SIGUSR1 signal. -.LP -Reading packets from a network interface may require that you have -special privileges; see the -.B pcap (3PCAP) -man page for details. Reading a saved packet file doesn't require -special privileges. -.SH OPTIONS -.TP -.B \-A -Print each packet (minus its link level header) in ASCII. Handy for -capturing web pages. -.TP -.B \-b -Print the AS number in BGP packets in ASDOT notation rather than ASPLAIN -notation. -.TP -.BI \-B " buffer_size" -.PD 0 -.TP -.BI \-\-buffer\-size= buffer_size -.PD -Set the operating system capture buffer size to \fIbuffer_size\fP, in -units of KiB (1024 bytes). -.TP -.BI \-c " count" -Exit after receiving \fIcount\fP packets. -.TP -.BI \-C " file_size" -Before writing a raw packet to a savefile, check whether the file is -currently larger than \fIfile_size\fP and, if so, close the current -savefile and open a new one. Savefiles after the first savefile will -have the name specified with the -.B \-w -flag, with a number after it, starting at 1 and continuing upward. -The units of \fIfile_size\fP are millions of bytes (1,000,000 bytes, -not 1,048,576 bytes). -.TP -.B \-d -Dump the compiled packet-matching code in a human readable form to -standard output and stop. -.TP -.B \-dd -Dump packet-matching code as a -.B C -program fragment. -.TP -.B \-ddd -Dump packet-matching code as decimal numbers (preceded with a count). -.TP -.B \-D -.PD 0 -.TP -.B \-\-list\-interfaces -.PD -Print the list of the network interfaces available on the system and on -which -.I tcpdump -can capture packets. For each network interface, a number and an -interface name, possibly followed by a text description of the -interface, is printed. The interface name or the number can be supplied -to the -.B \-i -flag to specify an interface on which to capture. -.IP -This can be useful on systems that don't have a command to list them -(e.g., Windows systems, or UNIX systems lacking -.BR "ifconfig \-a" ); -the number can be useful on Windows 2000 and later systems, where the -interface name is a somewhat complex string. -.IP -The -.B \-D -flag will not be supported if -.I tcpdump -was built with an older version of -.I libpcap -that lacks the -.B pcap_findalldevs() -function. -.TP -.B \-e -Print the link-level header on each dump line. This can be used, for -example, to print MAC layer addresses for protocols such as Ethernet and -IEEE 802.11. -.TP -.B \-E -Use \fIspi@ipaddr algo:secret\fP for decrypting IPsec ESP packets that -are addressed to \fIaddr\fP and contain Security Parameter Index value -\fIspi\fP. This combination may be repeated with comma or newline separation. -.IP -Note that setting the secret for IPv4 ESP packets is supported at this time. -.IP -Algorithms may be -\fBdes-cbc\fP, -\fB3des-cbc\fP, -\fBblowfish-cbc\fP, -\fBrc3-cbc\fP, -\fBcast128-cbc\fP, or -\fBnone\fP. -The default is \fBdes-cbc\fP. -The ability to decrypt packets is only present if \fItcpdump\fP was compiled -with cryptography enabled. -.IP -\fIsecret\fP is the ASCII text for ESP secret key. -If preceded by 0x, then a hex value will be read. -.IP -The option assumes RFC2406 ESP, not RFC1827 ESP. -The option is only for debugging purposes, and -the use of this option with a true `secret' key is discouraged. -By presenting IPsec secret key onto command line -you make it visible to others, via -.IR ps (1) -and other occasions. -.IP -In addition to the above syntax, the syntax \fIfile name\fP may be used -to have tcpdump read the provided file in. The file is opened upon -receiving the first ESP packet, so any special permissions that tcpdump -may have been given should already have been given up. -.TP -.B \-f -Print `foreign' IPv4 addresses numerically rather than symbolically -(this option is intended to get around serious brain damage in -Sun's NIS server \(em usually it hangs forever translating non-local -internet numbers). -.IP -The test for `foreign' IPv4 addresses is done using the IPv4 address and -netmask of the interface on which capture is being done. If that -address or netmask are not available, available, either because the -interface on which capture is being done has no address or netmask or -because the capture is being done on the Linux "any" interface, which -can capture on more than one interface, this option will not work -correctly. -.TP -.BI \-F " file" -Use \fIfile\fP as input for the filter expression. -An additional expression given on the command line is ignored. -.TP -.BI \-G " rotate_seconds" -If specified, rotates the dump file specified with the -.B \-w -option every \fIrotate_seconds\fP seconds. -Savefiles will have the name specified by -.B \-w -which should include a time format as defined by -.BR strftime (3). -If no time format is specified, each new file will overwrite the previous. -.IP -If used in conjunction with the -.B \-C -option, filenames will take the form of `\fIfile\fP'. -.TP -.B \-h -.PD 0 -.TP -.B \-\-help -.PD -Print the tcpdump and libpcap version strings, print a usage message, -and exit. -.TP -.B \-\-version -.PD -Print the tcpdump and libpcap version strings and exit. -.TP -.B \-H -Attempt to detect 802.11s draft mesh headers. -.TP -.BI \-i " interface" -.PD 0 -.TP -.BI \-\-interface= interface -.PD -Listen on \fIinterface\fP. -If unspecified, \fItcpdump\fP searches the system interface list for the -lowest numbered, configured up interface (excluding loopback), which may turn -out to be, for example, ``eth0''. -.IP -On Linux systems with 2.2 or later kernels, an -.I interface -argument of ``any'' can be used to capture packets from all interfaces. -Note that captures on the ``any'' device will not be done in promiscuous -mode. -.IP -If the -.B \-D -flag is supported, an interface number as printed by that flag can be -used as the -.I interface -argument. -.TP -.B \-I -.PD 0 -.TP -.B \-\-monitor\-mode -.PD -Put the interface in "monitor mode"; this is supported only on IEEE -802.11 Wi-Fi interfaces, and supported only on some operating systems. -.IP -Note that in monitor mode the adapter might disassociate from the -network with which it's associated, so that you will not be able to use -any wireless networks with that adapter. This could prevent accessing -files on a network server, or resolving host names or network addresses, -if you are capturing in monitor mode and are not connected to another -network with another adapter. -.IP -This flag will affect the output of the -.B \-L -flag. If -.B \-I -isn't specified, only those link-layer types available when not in -monitor mode will be shown; if -.B \-I -is specified, only those link-layer types available when in monitor mode -will be shown. -.TP -.BI \-\-immediate\-mode -Capture in "immediate mode". In this mode, packets are delivered to -tcpdump as soon as they arrive, rather than being buffered for -efficiency. This is the default when printing packets rather than -saving packets to a ``savefile'' if the packets are being printed to a -terminal rather than to a file or pipe. -.TP -.BI \-j " tstamp_type" -.PD 0 -.TP -.BI \-\-time\-stamp\-type= tstamp_type -.PD -Set the time stamp type for the capture to \fItstamp_type\fP. The names -to use for the time stamp types are given in -.BR pcap-tstamp (7); -not all the types listed there will necessarily be valid for any given -interface. -.TP -.B \-J -.PD 0 -.TP -.B \-\-list\-time\-stamp\-types -.PD -List the supported time stamp types for the interface and exit. If the -time stamp type cannot be set for the interface, no time stamp types are -listed. -.TP -.BI \-\-time\-stamp\-precision= tstamp_precision -When capturing, set the time stamp precision for the capture to -\fItstamp_precision\fP. Note that availability of high precision time -stamps (nanoseconds) and their actual accuracy is platform and hardware -dependent. Also note that when writing captures made with nanosecond -accuracy to a savefile, the time stamps are written with nanosecond -resolution, and the file is written with a different magic number, to -indicate that the time stamps are in seconds and nanoseconds; not all -programs that read pcap savefiles will be able to read those captures. -.LP -When reading a savefile, convert time stamps to the precision specified -by \fItimestamp_precision\fP, and display them with that resolution. If -the precision specified is less than the precision of time stamps in the -file, the conversion will lose precision. -.LP -The supported values for \fItimestamp_precision\fP are \fBmicro\fP for -microsecond resolution and \fBnano\fP for nanosecond resolution. The -default is microsecond resolution. -.TP -.B \-K -.PD 0 -.TP -.B \-\-dont\-verify\-checksums -.PD -Don't attempt to verify IP, TCP, or UDP checksums. This is useful for -interfaces that perform some or all of those checksum calculation in -hardware; otherwise, all outgoing TCP checksums will be flagged as bad. -.TP -.B \-l -Make stdout line buffered. -Useful if you want to see the data -while capturing it. -E.g., -.IP -.RS -.RS -.nf -\fBtcpdump \-l | tee dat\fP -.fi -.RE -.RE -.IP -or -.IP -.RS -.RS -.nf -\fBtcpdump \-l > dat & tail \-f dat\fP -.fi -.RE -.RE -.IP -Note that on Windows,``line buffered'' means ``unbuffered'', so that -WinDump will write each character individually if -.B \-l -is specified. -.IP -.B \-U -is similar to -.B \-l -in its behavior, but it will cause output to be ``packet-buffered'', so -that the output is written to stdout at the end of each packet rather -than at the end of each line; this is buffered on all platforms, -including Windows. -.TP -.B \-L -.PD 0 -.TP -.B \-\-list\-data\-link\-types -.PD -List the known data link types for the interface, in the specified mode, -and exit. The list of known data link types may be dependent on the -specified mode; for example, on some platforms, a Wi-Fi interface might -support one set of data link types when not in monitor mode (for -example, it might support only fake Ethernet headers, or might support -802.11 headers but not support 802.11 headers with radio information) -and another set of data link types when in monitor mode (for example, it -might support 802.11 headers, or 802.11 headers with radio information, -only in monitor mode). -.TP -.BI \-m " module" -Load SMI MIB module definitions from file \fImodule\fR. -This option -can be used several times to load several MIB modules into \fItcpdump\fP. -.TP -.BI \-M " secret" -Use \fIsecret\fP as a shared secret for validating the digests found in -TCP segments with the TCP-MD5 option (RFC 2385), if present. -.TP -.B \-n -Don't convert addresses (i.e., host addresses, port numbers, etc.) to names. -.TP -.B \-N -Don't print domain name qualification of host names. -E.g., -if you give this flag then \fItcpdump\fP will print ``nic'' -instead of ``nic.ddn.mil''. -.TP -.B \-# -.PD 0 -.TP -.B \-\-number -.PD -Print an optional packet number at the beginning of the line. -.TP -.B \-O -.PD 0 -.TP -.B \-\-no\-optimize -.PD -Do not run the packet-matching code optimizer. -This is useful only -if you suspect a bug in the optimizer. -.TP -.B \-p -.PD 0 -.TP -.B \-\-no\-promiscuous\-mode -.PD -\fIDon't\fP put the interface -into promiscuous mode. -Note that the interface might be in promiscuous -mode for some other reason; hence, `-p' cannot be used as an abbreviation for -`ether host {local-hw-addr} or ether broadcast'. -.TP -.BI \-Q " direction" -.PD 0 -.TP -.BI \-\-direction= direction -.PD -Choose send/receive direction \fIdirection\fR for which packets should be -captured. Possible values are `in', `out' and `inout'. Not available -on all platforms. -.TP -.B \-q -Quick (quiet?) output. -Print less protocol information so output -lines are shorter. -.TP -.BI \-r " file" -Read packets from \fIfile\fR (which was created with the -.B \-w -option or by other tools that write pcap or pcap-ng files). -Standard input is used if \fIfile\fR is ``-''. -.TP -.B \-S -.PD 0 -.TP -.B \-\-absolute\-tcp\-sequence\-numbers -.PD -Print absolute, rather than relative, TCP sequence numbers. -.TP -.BI \-s " snaplen" -.PD 0 -.TP -.BI \-\-snapshot\-length= snaplen -.PD -Snarf \fIsnaplen\fP bytes of data from each packet rather than the -default of 262144 bytes. -Packets truncated because of a limited snapshot -are indicated in the output with ``[|\fIproto\fP]'', where \fIproto\fP -is the name of the protocol level at which the truncation has occurred. -Note that taking larger snapshots both increases -the amount of time it takes to process packets and, effectively, -decreases the amount of packet buffering. -This may cause packets to be -lost. -You should limit \fIsnaplen\fP to the smallest number that will -capture the protocol information you're interested in. -Setting -\fIsnaplen\fP to 0 sets it to the default of 262144, -for backwards compatibility with recent older versions of -.IR tcpdump . -.TP -.BI \-T " type" -Force packets selected by "\fIexpression\fP" to be interpreted the -specified \fItype\fR. -Currently known types are -\fBaodv\fR (Ad-hoc On-demand Distance Vector protocol), -\fBcarp\fR (Common Address Redundancy Protocol), -\fBcnfp\fR (Cisco NetFlow protocol), -\fBlmp\fR (Link Management Protocol), -\fBpgm\fR (Pragmatic General Multicast), -\fBpgm_zmtp1\fR (ZMTP/1.0 inside PGM/EPGM), -\fBresp\fR (REdis Serialization Protocol), -\fBradius\fR (RADIUS), -\fBrpc\fR (Remote Procedure Call), -\fBrtp\fR (Real-Time Applications protocol), -\fBrtcp\fR (Real-Time Applications control protocol), -\fBsnmp\fR (Simple Network Management Protocol), -\fBtftp\fR (Trivial File Transfer Protocol), -\fBvat\fR (Visual Audio Tool), -\fBwb\fR (distributed White Board), -\fBzmtp1\fR (ZeroMQ Message Transport Protocol 1.0) -and -\fBvxlan\fR (Virtual eXtensible Local Area Network). -.IP -Note that the \fBpgm\fR type above affects UDP interpretation only, the native -PGM is always recognised as IP protocol 113 regardless. UDP-encapsulated PGM is -often called "EPGM" or "PGM/UDP". -.IP -Note that the \fBpgm_zmtp1\fR type above affects interpretation of both native -PGM and UDP at once. During the native PGM decoding the application data of an -ODATA/RDATA packet would be decoded as a ZeroMQ datagram with ZMTP/1.0 frames. -During the UDP decoding in addition to that any UDP packet would be treated as -an encapsulated PGM packet. -.TP -.B \-t -\fIDon't\fP print a timestamp on each dump line. -.TP -.B \-tt -Print the timestamp, as seconds since January 1, 1970, 00:00:00, UTC, and -fractions of a second since that time, on each dump line. -.TP -.B \-ttt -Print a delta (micro-second resolution) between current and previous line -on each dump line. -.TP -.B \-tttt -Print a timestamp, as hours, minutes, seconds, and fractions of a second -since midnight, preceded by the date, on each dump line. -.TP -.B \-ttttt -Print a delta (micro-second resolution) between current and first line -on each dump line. -.TP -.B \-u -Print undecoded NFS handles. -.TP -.B \-U -.PD 0 -.TP -.B \-\-packet\-buffered -.PD -If the -.B \-w -option is not specified, make the printed packet output -``packet-buffered''; i.e., as the description of the contents of each -packet is printed, it will be written to the standard output, rather -than, when not writing to a terminal, being written only when the output -buffer fills. -.IP -If the -.B \-w -option is specified, make the saved raw packet output -``packet-buffered''; i.e., as each packet is saved, it will be written -to the output file, rather than being written only when the output -buffer fills. -.IP -The -.B \-U -flag will not be supported if -.I tcpdump -was built with an older version of -.I libpcap -that lacks the -.B pcap_dump_flush() -function. -.TP -.B \-v -When parsing and printing, produce (slightly more) verbose output. -For example, the time to live, -identification, total length and options in an IP packet are printed. -Also enables additional packet integrity checks such as verifying the -IP and ICMP header checksum. -.IP -When writing to a file with the -.B \-w -option, report, every 10 seconds, the number of packets captured. -.TP -.B \-vv -Even more verbose output. -For example, additional fields are -printed from NFS reply packets, and SMB packets are fully decoded. -.TP -.B \-vvv -Even more verbose output. -For example, -telnet \fBSB\fP ... \fBSE\fP options -are printed in full. -With -.B \-X -Telnet options are printed in hex as well. -.TP -.BI \-V " file" -Read a list of filenames from \fIfile\fR. Standard input is used -if \fIfile\fR is ``-''. -.TP -.BI \-w " file" -Write the raw packets to \fIfile\fR rather than parsing and printing -them out. -They can later be printed with the \-r option. -Standard output is used if \fIfile\fR is ``-''. -.IP -This output will be buffered if written to a file or pipe, so a program -reading from the file or pipe may not see packets for an arbitrary -amount of time after they are received. Use the -.B \-U -flag to cause packets to be written as soon as they are received. -.IP -The MIME type \fIapplication/vnd.tcpdump.pcap\fP has been registered -with IANA for \fIpcap\fP files. The filename extension \fI.pcap\fP -appears to be the most commonly used along with \fI.cap\fP and -\fI.dmp\fP. \fITcpdump\fP itself doesn't check the extension when -reading capture files and doesn't add an extension when writing them -(it uses magic numbers in the file header instead). However, many -operating systems and applications will use the extension if it is -present and adding one (e.g. .pcap) is recommended. -.IP -See -.BR pcap-savefile (5) -for a description of the file format. -.TP -.B \-W -Used in conjunction with the -.B \-C -option, this will limit the number -of files created to the specified number, and begin overwriting files -from the beginning, thus creating a 'rotating' buffer. -In addition, it will name -the files with enough leading 0s to support the maximum number of -files, allowing them to sort correctly. -.IP -Used in conjunction with the -.B \-G -option, this will limit the number of rotated dump files that get -created, exiting with status 0 when reaching the limit. If used with -.B \-C -as well, the behavior will result in cyclical files per timeslice. -.TP -.B \-x -When parsing and printing, -in addition to printing the headers of each packet, print the data of -each packet (minus its link level header) in hex. -The smaller of the entire packet or -.I snaplen -bytes will be printed. Note that this is the entire link-layer -packet, so for link layers that pad (e.g. Ethernet), the padding bytes -will also be printed when the higher layer packet is shorter than the -required padding. -.TP -.B \-xx -When parsing and printing, -in addition to printing the headers of each packet, print the data of -each packet, -.I including -its link level header, in hex. -.TP -.B \-X -When parsing and printing, -in addition to printing the headers of each packet, print the data of -each packet (minus its link level header) in hex and ASCII. -This is very handy for analysing new protocols. -.TP -.B \-XX -When parsing and printing, -in addition to printing the headers of each packet, print the data of -each packet, -.I including -its link level header, in hex and ASCII. -.TP -.BI \-y " datalinktype" -.PD 0 -.TP -.BI \-\-linktype= datalinktype -.PD -Set the data link type to use while capturing packets to \fIdatalinktype\fP. -.TP -.BI \-z " postrotate-command" -Used in conjunction with the -.B -C -or -.B -G -options, this will make -.I tcpdump -run " -.I postrotate-command file -" where -.I file -is the savefile being closed after each rotation. For example, specifying -.B \-z gzip -or -.B \-z bzip2 -will compress each savefile using gzip or bzip2. -.IP -Note that tcpdump will run the command in parallel to the capture, using -the lowest priority so that this doesn't disturb the capture process. -.IP -And in case you would like to use a command that itself takes flags or -different arguments, you can always write a shell script that will take the -savefile name as the only argument, make the flags & arguments arrangements -and execute the command that you want. -.TP -.BI \-Z " user" -.PD 0 -.TP -.BI \-\-relinquish\-privileges= user -.PD -If -.I tcpdump -is running as root, after opening the capture device or input savefile, -but before opening any savefiles for output, change the user ID to -.I user -and the group ID to the primary group of -.IR user . -.IP -This behavior can also be enabled by default at compile time. -.IP "\fI expression\fP" -.RS -selects which packets will be dumped. -If no \fIexpression\fP -is given, all packets on the net will be dumped. -Otherwise, -only packets for which \fIexpression\fP is `true' will be dumped. -.LP -For the \fIexpression\fP syntax, see -.BR pcap-filter (7). -.LP -The \fIexpression\fP argument can be passed to \fItcpdump\fP as either a single -Shell argument, or as multiple Shell arguments, whichever is more convenient. -Generally, if the expression contains Shell metacharacters, such as -backslashes used to escape protocol names, it is easier to pass it as -a single, quoted argument rather than to escape the Shell -metacharacters. -Multiple arguments are concatenated with spaces before being parsed. -.SH EXAMPLES -.LP -To print all packets arriving at or departing from \fIsundown\fP: -.RS -.nf -\fBtcpdump host sundown\fP -.fi -.RE -.LP -To print traffic between \fIhelios\fR and either \fIhot\fR or \fIace\fR: -.RS -.nf -\fBtcpdump host helios and \\( hot or ace \\)\fP -.fi -.RE -.LP -To print all IP packets between \fIace\fR and any host except \fIhelios\fR: -.RS -.nf -\fBtcpdump ip host ace and not helios\fP -.fi -.RE -.LP -To print all traffic between local hosts and hosts at Berkeley: -.RS -.nf -.B -tcpdump net ucb-ether -.fi -.RE -.LP -To print all ftp traffic through internet gateway \fIsnup\fP: -(note that the expression is quoted to prevent the shell from -(mis-)interpreting the parentheses): -.RS -.nf -.B -tcpdump 'gateway snup and (port ftp or ftp-data)' -.fi -.RE -.LP -To print traffic neither sourced from nor destined for local hosts -(if you gateway to one other net, this stuff should never make it -onto your local net). -.RS -.nf -.B -tcpdump ip and not net \fIlocalnet\fP -.fi -.RE -.LP -To print the start and end packets (the SYN and FIN packets) of each -TCP conversation that involves a non-local host. -.RS -.nf -.B -tcpdump 'tcp[tcpflags] & (tcp-syn|tcp-fin) != 0 and not src and dst net \fIlocalnet\fP' -.fi -.RE -.LP -To print all IPv4 HTTP packets to and from port 80, i.e. print only -packets that contain data, not, for example, SYN and FIN packets and -ACK-only packets. (IPv6 is left as an exercise for the reader.) -.RS -.nf -.B -tcpdump 'tcp port 80 and (((ip[2:2] - ((ip[0]&0xf)<<2)) - ((tcp[12]&0xf0)>>2)) != 0)' -.fi -.RE -.LP -To print IP packets longer than 576 bytes sent through gateway \fIsnup\fP: -.RS -.nf -.B -tcpdump 'gateway snup and ip[2:2] > 576' -.fi -.RE -.LP -To print IP broadcast or multicast packets that were -.I not -sent via Ethernet broadcast or multicast: -.RS -.nf -.B -tcpdump 'ether[0] & 1 = 0 and ip[16] >= 224' -.fi -.RE -.LP -To print all ICMP packets that are not echo requests/replies (i.e., not -ping packets): -.RS -.nf -.B -tcpdump 'icmp[icmptype] != icmp-echo and icmp[icmptype] != icmp-echoreply' -.fi -.RE -.SH OUTPUT FORMAT -.LP -The output of \fItcpdump\fP is protocol dependent. -The following -gives a brief description and examples of most of the formats. -.de HD -.sp 1.5 -.B -.. -.HD -Link Level Headers -.LP -If the '-e' option is given, the link level header is printed out. -On Ethernets, the source and destination addresses, protocol, -and packet length are printed. -.LP -On FDDI networks, the '-e' option causes \fItcpdump\fP to print -the `frame control' field, the source and destination addresses, -and the packet length. -(The `frame control' field governs the -interpretation of the rest of the packet. -Normal packets (such -as those containing IP datagrams) are `async' packets, with a priority -value between 0 and 7; for example, `\fBasync4\fR'. -Such packets -are assumed to contain an 802.2 Logical Link Control (LLC) packet; -the LLC header is printed if it is \fInot\fR an ISO datagram or a -so-called SNAP packet. -.LP -On Token Ring networks, the '-e' option causes \fItcpdump\fP to print -the `access control' and `frame control' fields, the source and -destination addresses, and the packet length. -As on FDDI networks, -packets are assumed to contain an LLC packet. -Regardless of whether -the '-e' option is specified or not, the source routing information is -printed for source-routed packets. -.LP -On 802.11 networks, the '-e' option causes \fItcpdump\fP to print -the `frame control' fields, all of the addresses in the 802.11 header, -and the packet length. -As on FDDI networks, -packets are assumed to contain an LLC packet. -.LP -\fI(N.B.: The following description assumes familiarity with -the SLIP compression algorithm described in RFC-1144.)\fP -.LP -On SLIP links, a direction indicator (``I'' for inbound, ``O'' for outbound), -packet type, and compression information are printed out. -The packet type is printed first. -The three types are \fIip\fP, \fIutcp\fP, and \fIctcp\fP. -No further link information is printed for \fIip\fR packets. -For TCP packets, the connection identifier is printed following the type. -If the packet is compressed, its encoded header is printed out. -The special cases are printed out as -\fB*S+\fIn\fR and \fB*SA+\fIn\fR, where \fIn\fR is the amount by which -the sequence number (or sequence number and ack) has changed. -If it is not a special case, -zero or more changes are printed. -A change is indicated by U (urgent pointer), W (window), A (ack), -S (sequence number), and I (packet ID), followed by a delta (+n or -n), -or a new value (=n). -Finally, the amount of data in the packet and compressed header length -are printed. -.LP -For example, the following line shows an outbound compressed TCP packet, -with an implicit connection identifier; the ack has changed by 6, -the sequence number by 49, and the packet ID by 6; there are 3 bytes of -data and 6 bytes of compressed header: -.RS -.nf -\fBO ctcp * A+6 S+49 I+6 3 (6)\fP -.fi -.RE -.HD -ARP/RARP Packets -.LP -Arp/rarp output shows the type of request and its arguments. -The -format is intended to be self explanatory. -Here is a short sample taken from the start of an `rlogin' from -host \fIrtsg\fP to host \fIcsam\fP: -.RS -.nf -.sp .5 -\f(CWarp who-has csam tell rtsg -arp reply csam is-at CSAM\fR -.sp .5 -.fi -.RE -The first line says that rtsg sent an arp packet asking -for the Ethernet address of internet host csam. -Csam -replies with its Ethernet address (in this example, Ethernet addresses -are in caps and internet addresses in lower case). -.LP -This would look less redundant if we had done \fItcpdump \-n\fP: -.RS -.nf -.sp .5 -\f(CWarp who-has 128.3.254.6 tell 128.3.254.68 -arp reply 128.3.254.6 is-at 02:07:01:00:01:c4\fP -.fi -.RE -.LP -If we had done \fItcpdump \-e\fP, the fact that the first packet is -broadcast and the second is point-to-point would be visible: -.RS -.nf -.sp .5 -\f(CWRTSG Broadcast 0806 64: arp who-has csam tell rtsg -CSAM RTSG 0806 64: arp reply csam is-at CSAM\fR -.sp .5 -.fi -.RE -For the first packet this says the Ethernet source address is RTSG, the -destination is the Ethernet broadcast address, the type field -contained hex 0806 (type ETHER_ARP) and the total length was 64 bytes. -.HD -TCP Packets -.LP -\fI(N.B.:The following description assumes familiarity with -the TCP protocol described in RFC-793. -If you are not familiar -with the protocol, neither this description nor \fItcpdump\fP will -be of much use to you.)\fP -.LP -The general format of a tcp protocol line is: -.RS -.nf -.sp .5 -\fIsrc > dst: flags data-seqno ack window urgent options\fP -.sp .5 -.fi -.RE -\fISrc\fP and \fIdst\fP are the source and destination IP -addresses and ports. -\fIFlags\fP are some combination of S (SYN), -F (FIN), P (PUSH), R (RST), U (URG), W (ECN CWR), E (ECN-Echo) or -`.' (ACK), or `none' if no flags are set. -\fIData-seqno\fP describes the portion of sequence space covered -by the data in this packet (see example below). -\fIAck\fP is sequence number of the next data expected the other -direction on this connection. -\fIWindow\fP is the number of bytes of receive buffer space available -the other direction on this connection. -\fIUrg\fP indicates there is `urgent' data in the packet. -\fIOptions\fP are tcp options enclosed in angle brackets (e.g., ). -.LP -\fISrc, dst\fP and \fIflags\fP are always present. -The other fields -depend on the contents of the packet's tcp protocol header and -are output only if appropriate. -.LP -Here is the opening portion of an rlogin from host \fIrtsg\fP to -host \fIcsam\fP. -.RS -.nf -.sp .5 -\s-2\f(CWrtsg.1023 > csam.login: S 768512:768512(0) win 4096 -csam.login > rtsg.1023: S 947648:947648(0) ack 768513 win 4096 -rtsg.1023 > csam.login: . ack 1 win 4096 -rtsg.1023 > csam.login: P 1:2(1) ack 1 win 4096 -csam.login > rtsg.1023: . ack 2 win 4096 -rtsg.1023 > csam.login: P 2:21(19) ack 1 win 4096 -csam.login > rtsg.1023: P 1:2(1) ack 21 win 4077 -csam.login > rtsg.1023: P 2:3(1) ack 21 win 4077 urg 1 -csam.login > rtsg.1023: P 3:4(1) ack 21 win 4077 urg 1\fR\s+2 -.sp .5 -.fi -.RE -The first line says that tcp port 1023 on rtsg sent a packet -to port \fIlogin\fP -on csam. -The \fBS\fP indicates that the \fISYN\fP flag was set. -The packet sequence number was 768512 and it contained no data. -(The notation is `first:last(nbytes)' which means `sequence -numbers \fIfirst\fP -up to but not including \fIlast\fP which is \fInbytes\fP bytes of user data'.) -There was no piggy-backed ack, the available receive window was 4096 -bytes and there was a max-segment-size option requesting an mss of -1024 bytes. -.LP -Csam replies with a similar packet except it includes a piggy-backed -ack for rtsg's SYN. -Rtsg then acks csam's SYN. -The `.' means the ACK flag was set. -The packet contained no data so there is no data sequence number. -Note that the ack sequence -number is a small integer (1). -The first time \fItcpdump\fP sees a -tcp `conversation', it prints the sequence number from the packet. -On subsequent packets of the conversation, the difference between -the current packet's sequence number and this initial sequence number -is printed. -This means that sequence numbers after the -first can be interpreted -as relative byte positions in the conversation's data stream (with the -first data byte each direction being `1'). -`-S' will override this -feature, causing the original sequence numbers to be output. -.LP -On the 6th line, rtsg sends csam 19 bytes of data (bytes 2 through 20 -in the rtsg \(-> csam side of the conversation). -The PUSH flag is set in the packet. -On the 7th line, csam says it's received data sent by rtsg up to -but not including byte 21. -Most of this data is apparently sitting in the -socket buffer since csam's receive window has gotten 19 bytes smaller. -Csam also sends one byte of data to rtsg in this packet. -On the 8th and 9th lines, -csam sends two bytes of urgent, pushed data to rtsg. -.LP -If the snapshot was small enough that \fItcpdump\fP didn't capture -the full TCP header, it interprets as much of the header as it can -and then reports ``[|\fItcp\fP]'' to indicate the remainder could not -be interpreted. -If the header contains a bogus option (one with a length -that's either too small or beyond the end of the header), \fItcpdump\fP -reports it as ``[\fIbad opt\fP]'' and does not interpret any further -options (since it's impossible to tell where they start). -If the header -length indicates options are present but the IP datagram length is not -long enough for the options to actually be there, \fItcpdump\fP reports -it as ``[\fIbad hdr length\fP]''. -.HD -.B Capturing TCP packets with particular flag combinations (SYN-ACK, URG-ACK, etc.) -.PP -There are 8 bits in the control bits section of the TCP header: -.IP -.I CWR | ECE | URG | ACK | PSH | RST | SYN | FIN -.PP -Let's assume that we want to watch packets used in establishing -a TCP connection. -Recall that TCP uses a 3-way handshake protocol -when it initializes a new connection; the connection sequence with -regard to the TCP control bits is -.PP -.RS -1) Caller sends SYN -.RE -.RS -2) Recipient responds with SYN, ACK -.RE -.RS -3) Caller sends ACK -.RE -.PP -Now we're interested in capturing packets that have only the -SYN bit set (Step 1). -Note that we don't want packets from step 2 -(SYN-ACK), just a plain initial SYN. -What we need is a correct filter -expression for \fItcpdump\fP. -.PP -Recall the structure of a TCP header without options: -.PP -.nf - 0 15 31 ------------------------------------------------------------------ -| source port | destination port | ------------------------------------------------------------------ -| sequence number | ------------------------------------------------------------------ -| acknowledgment number | ------------------------------------------------------------------ -| HL | rsvd |C|E|U|A|P|R|S|F| window size | ------------------------------------------------------------------ -| TCP checksum | urgent pointer | ------------------------------------------------------------------ -.fi -.PP -A TCP header usually holds 20 octets of data, unless options are -present. -The first line of the graph contains octets 0 - 3, the -second line shows octets 4 - 7 etc. -.PP -Starting to count with 0, the relevant TCP control bits are contained -in octet 13: -.PP -.nf - 0 7| 15| 23| 31 -----------------|---------------|---------------|---------------- -| HL | rsvd |C|E|U|A|P|R|S|F| window size | -----------------|---------------|---------------|---------------- -| | 13th octet | | | -.fi -.PP -Let's have a closer look at octet no. 13: -.PP -.nf - | | - |---------------| - |C|E|U|A|P|R|S|F| - |---------------| - |7 5 3 0| -.fi -.PP -These are the TCP control bits we are interested -in. -We have numbered the bits in this octet from 0 to 7, right to -left, so the PSH bit is bit number 3, while the URG bit is number 5. -.PP -Recall that we want to capture packets with only SYN set. -Let's see what happens to octet 13 if a TCP datagram arrives -with the SYN bit set in its header: -.PP -.nf - |C|E|U|A|P|R|S|F| - |---------------| - |0 0 0 0 0 0 1 0| - |---------------| - |7 6 5 4 3 2 1 0| -.fi -.PP -Looking at the -control bits section we see that only bit number 1 (SYN) is set. -.PP -Assuming that octet number 13 is an 8-bit unsigned integer in -network byte order, the binary value of this octet is -.IP -00000010 -.PP -and its decimal representation is -.PP -.nf - 7 6 5 4 3 2 1 0 -0*2 + 0*2 + 0*2 + 0*2 + 0*2 + 0*2 + 1*2 + 0*2 = 2 -.fi -.PP -We're almost done, because now we know that if only SYN is set, -the value of the 13th octet in the TCP header, when interpreted -as a 8-bit unsigned integer in network byte order, must be exactly 2. -.PP -This relationship can be expressed as -.RS -.B -tcp[13] == 2 -.RE -.PP -We can use this expression as the filter for \fItcpdump\fP in order -to watch packets which have only SYN set: -.RS -.B -tcpdump -i xl0 tcp[13] == 2 -.RE -.PP -The expression says "let the 13th octet of a TCP datagram have -the decimal value 2", which is exactly what we want. -.PP -Now, let's assume that we need to capture SYN packets, but we -don't care if ACK or any other TCP control bit is set at the -same time. -Let's see what happens to octet 13 when a TCP datagram -with SYN-ACK set arrives: -.PP -.nf - |C|E|U|A|P|R|S|F| - |---------------| - |0 0 0 1 0 0 1 0| - |---------------| - |7 6 5 4 3 2 1 0| -.fi -.PP -Now bits 1 and 4 are set in the 13th octet. -The binary value of -octet 13 is -.IP - 00010010 -.PP -which translates to decimal -.PP -.nf - 7 6 5 4 3 2 1 0 -0*2 + 0*2 + 0*2 + 1*2 + 0*2 + 0*2 + 1*2 + 0*2 = 18 -.fi -.PP -Now we can't just use 'tcp[13] == 18' in the \fItcpdump\fP filter -expression, because that would select only those packets that have -SYN-ACK set, but not those with only SYN set. -Remember that we don't care -if ACK or any other control bit is set as long as SYN is set. -.PP -In order to achieve our goal, we need to logically AND the -binary value of octet 13 with some other value to preserve -the SYN bit. -We know that we want SYN to be set in any case, -so we'll logically AND the value in the 13th octet with -the binary value of a SYN: -.PP -.nf - - 00010010 SYN-ACK 00000010 SYN - AND 00000010 (we want SYN) AND 00000010 (we want SYN) - -------- -------- - = 00000010 = 00000010 -.fi -.PP -We see that this AND operation delivers the same result -regardless whether ACK or another TCP control bit is set. -The decimal representation of the AND value as well as -the result of this operation is 2 (binary 00000010), -so we know that for packets with SYN set the following -relation must hold true: -.IP -( ( value of octet 13 ) AND ( 2 ) ) == ( 2 ) -.PP -This points us to the \fItcpdump\fP filter expression -.RS -.B - tcpdump -i xl0 'tcp[13] & 2 == 2' -.RE -.PP -Some offsets and field values may be expressed as names -rather than as numeric values. For example tcp[13] may -be replaced with tcp[tcpflags]. The following TCP flag -field values are also available: tcp-fin, tcp-syn, tcp-rst, -tcp-push, tcp-act, tcp-urg. -.PP -This can be demonstrated as: -.RS -.B - tcpdump -i xl0 'tcp[tcpflags] & tcp-push != 0' -.RE -.PP -Note that you should use single quotes or a backslash -in the expression to hide the AND ('&') special character -from the shell. -.HD -.B -UDP Packets -.LP -UDP format is illustrated by this rwho packet: -.RS -.nf -.sp .5 -\f(CWactinide.who > broadcast.who: udp 84\fP -.sp .5 -.fi -.RE -This says that port \fIwho\fP on host \fIactinide\fP sent a udp -datagram to port \fIwho\fP on host \fIbroadcast\fP, the Internet -broadcast address. -The packet contained 84 bytes of user data. -.LP -Some UDP services are recognized (from the source or destination -port number) and the higher level protocol information printed. -In particular, Domain Name service requests (RFC-1034/1035) and Sun -RPC calls (RFC-1050) to NFS. -.HD -UDP Name Server Requests -.LP -\fI(N.B.:The following description assumes familiarity with -the Domain Service protocol described in RFC-1035. -If you are not familiar -with the protocol, the following description will appear to be written -in greek.)\fP -.LP -Name server requests are formatted as -.RS -.nf -.sp .5 -\fIsrc > dst: id op? flags qtype qclass name (len)\fP -.sp .5 -\f(CWh2opolo.1538 > helios.domain: 3+ A? ucbvax.berkeley.edu. (37)\fR -.sp .5 -.fi -.RE -Host \fIh2opolo\fP asked the domain server on \fIhelios\fP for an -address record (qtype=A) associated with the name \fIucbvax.berkeley.edu.\fP -The query id was `3'. -The `+' indicates the \fIrecursion desired\fP flag -was set. -The query length was 37 bytes, not including the UDP and -IP protocol headers. -The query operation was the normal one, \fIQuery\fP, -so the op field was omitted. -If the op had been anything else, it would -have been printed between the `3' and the `+'. -Similarly, the qclass was the normal one, -\fIC_IN\fP, and omitted. -Any other qclass would have been printed -immediately after the `A'. -.LP -A few anomalies are checked and may result in extra fields enclosed in -square brackets: If a query contains an answer, authority records or -additional records section, -.IR ancount , -.IR nscount , -or -.I arcount -are printed as `[\fIn\fPa]', `[\fIn\fPn]' or `[\fIn\fPau]' where \fIn\fP -is the appropriate count. -If any of the response bits are set (AA, RA or rcode) or any of the -`must be zero' bits are set in bytes two and three, `[b2&3=\fIx\fP]' -is printed, where \fIx\fP is the hex value of header bytes two and three. -.HD -UDP Name Server Responses -.LP -Name server responses are formatted as -.RS -.nf -.sp .5 -\fIsrc > dst: id op rcode flags a/n/au type class data (len)\fP -.sp .5 -\f(CWhelios.domain > h2opolo.1538: 3 3/3/7 A 128.32.137.3 (273) -helios.domain > h2opolo.1537: 2 NXDomain* 0/1/0 (97)\fR -.sp .5 -.fi -.RE -In the first example, \fIhelios\fP responds to query id 3 from \fIh2opolo\fP -with 3 answer records, 3 name server records and 7 additional records. -The first answer record is type A (address) and its data is internet -address 128.32.137.3. -The total size of the response was 273 bytes, -excluding UDP and IP headers. -The op (Query) and response code -(NoError) were omitted, as was the class (C_IN) of the A record. -.LP -In the second example, \fIhelios\fP responds to query 2 with a -response code of non-existent domain (NXDomain) with no answers, -one name server and no authority records. -The `*' indicates that -the \fIauthoritative answer\fP bit was set. -Since there were no -answers, no type, class or data were printed. -.LP -Other flag characters that might appear are `\-' (recursion available, -RA, \fInot\fP set) and `|' (truncated message, TC, set). -If the -`question' section doesn't contain exactly one entry, `[\fIn\fPq]' -is printed. -.HD -SMB/CIFS decoding -.LP -\fItcpdump\fP now includes fairly extensive SMB/CIFS/NBT decoding for data -on UDP/137, UDP/138 and TCP/139. -Some primitive decoding of IPX and -NetBEUI SMB data is also done. -.LP -By default a fairly minimal decode is done, with a much more detailed -decode done if -v is used. -Be warned that with -v a single SMB packet -may take up a page or more, so only use -v if you really want all the -gory details. -.LP -For information on SMB packet formats and what all the fields mean see -www.cifs.org or the pub/samba/specs/ directory on your favorite -samba.org mirror site. -The SMB patches were written by Andrew Tridgell -(tridge@samba.org). -.HD -NFS Requests and Replies -.LP -Sun NFS (Network File System) requests and replies are printed as: -.RS -.nf -.sp .5 -\fIsrc.sport > dst.nfs: NFS request xid xid len op args\fP -\fIsrc.nfs > dst.dport: NFS reply xid xid reply stat len op results\fP -.sp .5 -\f(CW -sushi.1023 > wrl.nfs: NFS request xid 26377 - 112 readlink fh 21,24/10.73165 -wrl.nfs > sushi.1023: NFS reply xid 26377 - reply ok 40 readlink "../var" -sushi.1022 > wrl.nfs: NFS request xid 8219 - 144 lookup fh 9,74/4096.6878 "xcolors" -wrl.nfs > sushi.1022: NFS reply xid 8219 - reply ok 128 lookup fh 9,74/4134.3150 -\fR -.sp .5 -.fi -.RE -In the first line, host \fIsushi\fP sends a transaction with id \fI26377\fP -to \fIwrl\fP. -The request was 112 bytes, -excluding the UDP and IP headers. -The operation was a \fIreadlink\fP -(read symbolic link) on file handle (\fIfh\fP) 21,24/10.731657119. -(If one is lucky, as in this case, the file handle can be interpreted -as a major,minor device number pair, followed by the inode number and -generation number.) In the second line, \fIwrl\fP replies `ok' with -the same transaction id and the contents of the link. -.LP -In the third line, \fIsushi\fP asks (using a new transaction id) \fIwrl\fP -to lookup the name `\fIxcolors\fP' in directory file 9,74/4096.6878. In -the fourth line, \fIwrl\fP sends a reply with the respective transaction id. -.LP -Note that the data printed -depends on the operation type. -The format is intended to be self -explanatory if read in conjunction with -an NFS protocol spec. -Also note that older versions of tcpdump printed NFS packets in a -slightly different format: the transaction id (xid) would be printed -instead of the non-NFS port number of the packet. -.LP -If the \-v (verbose) flag is given, additional information is printed. -For example: -.RS -.nf -.sp .5 -\f(CW -sushi.1023 > wrl.nfs: NFS request xid 79658 - 148 read fh 21,11/12.195 8192 bytes @ 24576 -wrl.nfs > sushi.1023: NFS reply xid 79658 - reply ok 1472 read REG 100664 ids 417/0 sz 29388 -\fP -.sp .5 -.fi -.RE -(\-v also prints the IP header TTL, ID, length, and fragmentation fields, -which have been omitted from this example.) In the first line, -\fIsushi\fP asks \fIwrl\fP to read 8192 bytes from file 21,11/12.195, -at byte offset 24576. -\fIWrl\fP replies `ok'; the packet shown on the -second line is the first fragment of the reply, and hence is only 1472 -bytes long (the other bytes will follow in subsequent fragments, but -these fragments do not have NFS or even UDP headers and so might not be -printed, depending on the filter expression used). -Because the \-v flag -is given, some of the file attributes (which are returned in addition -to the file data) are printed: the file type (``REG'', for regular file), -the file mode (in octal), the uid and gid, and the file size. -.LP -If the \-v flag is given more than once, even more details are printed. -.LP -Note that NFS requests are very large and much of the detail won't be printed -unless \fIsnaplen\fP is increased. -Try using `\fB\-s 192\fP' to watch -NFS traffic. -.LP -NFS reply packets do not explicitly identify the RPC operation. -Instead, -\fItcpdump\fP keeps track of ``recent'' requests, and matches them to the -replies using the transaction ID. -If a reply does not closely follow the -corresponding request, it might not be parsable. -.HD -AFS Requests and Replies -.LP -Transarc AFS (Andrew File System) requests and replies are printed -as: -.HD -.RS -.nf -.sp .5 -\fIsrc.sport > dst.dport: rx packet-type\fP -\fIsrc.sport > dst.dport: rx packet-type service call call-name args\fP -\fIsrc.sport > dst.dport: rx packet-type service reply call-name args\fP -.sp .5 -\f(CW -elvis.7001 > pike.afsfs: - rx data fs call rename old fid 536876964/1/1 ".newsrc.new" - new fid 536876964/1/1 ".newsrc" -pike.afsfs > elvis.7001: rx data fs reply rename -\fR -.sp .5 -.fi -.RE -In the first line, host elvis sends a RX packet to pike. -This was -a RX data packet to the fs (fileserver) service, and is the start of -an RPC call. -The RPC call was a rename, with the old directory file id -of 536876964/1/1 and an old filename of `.newsrc.new', and a new directory -file id of 536876964/1/1 and a new filename of `.newsrc'. -The host pike -responds with a RPC reply to the rename call (which was successful, because -it was a data packet and not an abort packet). -.LP -In general, all AFS RPCs are decoded at least by RPC call name. -Most -AFS RPCs have at least some of the arguments decoded (generally only -the `interesting' arguments, for some definition of interesting). -.LP -The format is intended to be self-describing, but it will probably -not be useful to people who are not familiar with the workings of -AFS and RX. -.LP -If the -v (verbose) flag is given twice, acknowledgement packets and -additional header information is printed, such as the RX call ID, -call number, sequence number, serial number, and the RX packet flags. -.LP -If the -v flag is given twice, additional information is printed, -such as the RX call ID, serial number, and the RX packet flags. -The MTU negotiation information is also printed from RX ack packets. -.LP -If the -v flag is given three times, the security index and service id -are printed. -.LP -Error codes are printed for abort packets, with the exception of Ubik -beacon packets (because abort packets are used to signify a yes vote -for the Ubik protocol). -.LP -Note that AFS requests are very large and many of the arguments won't -be printed unless \fIsnaplen\fP is increased. -Try using `\fB-s 256\fP' -to watch AFS traffic. -.LP -AFS reply packets do not explicitly identify the RPC operation. -Instead, -\fItcpdump\fP keeps track of ``recent'' requests, and matches them to the -replies using the call number and service ID. -If a reply does not closely -follow the -corresponding request, it might not be parsable. - -.HD -KIP AppleTalk (DDP in UDP) -.LP -AppleTalk DDP packets encapsulated in UDP datagrams are de-encapsulated -and dumped as DDP packets (i.e., all the UDP header information is -discarded). -The file -.I /etc/atalk.names -is used to translate AppleTalk net and node numbers to names. -Lines in this file have the form -.RS -.nf -.sp .5 -\fInumber name\fP - -\f(CW1.254 ether -16.1 icsd-net -1.254.110 ace\fR -.sp .5 -.fi -.RE -The first two lines give the names of AppleTalk networks. -The third -line gives the name of a particular host (a host is distinguished -from a net by the 3rd octet in the number \- -a net number \fImust\fP have two octets and a host number \fImust\fP -have three octets.) The number and name should be separated by -whitespace (blanks or tabs). -The -.I /etc/atalk.names -file may contain blank lines or comment lines (lines starting with -a `#'). -.LP -AppleTalk addresses are printed in the form -.RS -.nf -.sp .5 -\fInet.host.port\fP - -\f(CW144.1.209.2 > icsd-net.112.220 -office.2 > icsd-net.112.220 -jssmag.149.235 > icsd-net.2\fR -.sp .5 -.fi -.RE -(If the -.I /etc/atalk.names -doesn't exist or doesn't contain an entry for some AppleTalk -host/net number, addresses are printed in numeric form.) -In the first example, NBP (DDP port 2) on net 144.1 node 209 -is sending to whatever is listening on port 220 of net icsd node 112. -The second line is the same except the full name of the source node -is known (`office'). -The third line is a send from port 235 on -net jssmag node 149 to broadcast on the icsd-net NBP port (note that -the broadcast address (255) is indicated by a net name with no host -number \- for this reason it's a good idea to keep node names and -net names distinct in /etc/atalk.names). -.LP -NBP (name binding protocol) and ATP (AppleTalk transaction protocol) -packets have their contents interpreted. -Other protocols just dump -the protocol name (or number if no name is registered for the -protocol) and packet size. - -\fBNBP packets\fP are formatted like the following examples: -.RS -.nf -.sp .5 -\s-2\f(CWicsd-net.112.220 > jssmag.2: nbp-lkup 190: "=:LaserWriter@*" -jssmag.209.2 > icsd-net.112.220: nbp-reply 190: "RM1140:LaserWriter@*" 250 -techpit.2 > icsd-net.112.220: nbp-reply 190: "techpit:LaserWriter@*" 186\fR\s+2 -.sp .5 -.fi -.RE -The first line is a name lookup request for laserwriters sent by net icsd host -112 and broadcast on net jssmag. -The nbp id for the lookup is 190. -The second line shows a reply for this request (note that it has the -same id) from host jssmag.209 saying that it has a laserwriter -resource named "RM1140" registered on port 250. -The third line is -another reply to the same request saying host techpit has laserwriter -"techpit" registered on port 186. - -\fBATP packet\fP formatting is demonstrated by the following example: -.RS -.nf -.sp .5 -\s-2\f(CWjssmag.209.165 > helios.132: atp-req 12266<0-7> 0xae030001 -helios.132 > jssmag.209.165: atp-resp 12266:0 (512) 0xae040000 -helios.132 > jssmag.209.165: atp-resp 12266:1 (512) 0xae040000 -helios.132 > jssmag.209.165: atp-resp 12266:2 (512) 0xae040000 -helios.132 > jssmag.209.165: atp-resp 12266:3 (512) 0xae040000 -helios.132 > jssmag.209.165: atp-resp 12266:4 (512) 0xae040000 -helios.132 > jssmag.209.165: atp-resp 12266:5 (512) 0xae040000 -helios.132 > jssmag.209.165: atp-resp 12266:6 (512) 0xae040000 -helios.132 > jssmag.209.165: atp-resp*12266:7 (512) 0xae040000 -jssmag.209.165 > helios.132: atp-req 12266<3,5> 0xae030001 -helios.132 > jssmag.209.165: atp-resp 12266:3 (512) 0xae040000 -helios.132 > jssmag.209.165: atp-resp 12266:5 (512) 0xae040000 -jssmag.209.165 > helios.132: atp-rel 12266<0-7> 0xae030001 -jssmag.209.133 > helios.132: atp-req* 12267<0-7> 0xae030002\fR\s+2 -.sp .5 -.fi -.RE -Jssmag.209 initiates transaction id 12266 with host helios by requesting -up to 8 packets (the `<0-7>'). -The hex number at the end of the line -is the value of the `userdata' field in the request. -.LP -Helios responds with 8 512-byte packets. -The `:digit' following the -transaction id gives the packet sequence number in the transaction -and the number in parens is the amount of data in the packet, -excluding the atp header. -The `*' on packet 7 indicates that the -EOM bit was set. -.LP -Jssmag.209 then requests that packets 3 & 5 be retransmitted. -Helios -resends them then jssmag.209 releases the transaction. -Finally, -jssmag.209 initiates the next request. -The `*' on the request -indicates that XO (`exactly once') was \fInot\fP set. - -.HD -IP Fragmentation -.LP -Fragmented Internet datagrams are printed as -.RS -.nf -.sp .5 -\fB(frag \fIid\fB:\fIsize\fB@\fIoffset\fB+)\fR -\fB(frag \fIid\fB:\fIsize\fB@\fIoffset\fB)\fR -.sp .5 -.fi -.RE -(The first form indicates there are more fragments. -The second -indicates this is the last fragment.) -.LP -\fIId\fP is the fragment id. -\fISize\fP is the fragment -size (in bytes) excluding the IP header. -\fIOffset\fP is this -fragment's offset (in bytes) in the original datagram. -.LP -The fragment information is output for each fragment. -The first -fragment contains the higher level protocol header and the frag -info is printed after the protocol info. -Fragments -after the first contain no higher level protocol header and the -frag info is printed after the source and destination addresses. -For example, here is part of an ftp from arizona.edu to lbl-rtsg.arpa -over a CSNET connection that doesn't appear to handle 576 byte datagrams: -.RS -.nf -.sp .5 -\s-2\f(CWarizona.ftp-data > rtsg.1170: . 1024:1332(308) ack 1 win 4096 (frag 595a:328@0+) -arizona > rtsg: (frag 595a:204@328) -rtsg.1170 > arizona.ftp-data: . ack 1536 win 2560\fP\s+2 -.sp .5 -.fi -.RE -There are a couple of things to note here: First, addresses in the -2nd line don't include port numbers. -This is because the TCP -protocol information is all in the first fragment and we have no idea -what the port or sequence numbers are when we print the later fragments. -Second, the tcp sequence information in the first line is printed as if there -were 308 bytes of user data when, in fact, there are 512 bytes (308 in -the first frag and 204 in the second). -If you are looking for holes -in the sequence space or trying to match up acks -with packets, this can fool you. -.LP -A packet with the IP \fIdon't fragment\fP flag is marked with a -trailing \fB(DF)\fP. -.HD -Timestamps -.LP -By default, all output lines are preceded by a timestamp. -The timestamp -is the current clock time in the form -.RS -.nf -\fIhh:mm:ss.frac\fP -.fi -.RE -and is as accurate as the kernel's clock. -The timestamp reflects the time the kernel applied a time stamp to the packet. -No attempt is made to account for the time lag between when the network -interface finished receiving the packet from the network and when the -kernel applied a time stamp to the packet; that time lag could include a -delay between the time when the network interface finished receiving a -packet from the network and the time when an interrupt was delivered to -the kernel to get it to read the packet and a delay between the time -when the kernel serviced the `new packet' interrupt and the time when it -applied a time stamp to the packet. -.SH "SEE ALSO" -stty(1), pcap(3PCAP), bpf(4), nit(4P), pcap-savefile(5), -pcap-filter(7), pcap-tstamp(7) -.LP -.RS -.I http://www.iana.org/assignments/media-types/application/vnd.tcpdump.pcap -.RE -.LP -.SH AUTHORS -The original authors are: -.LP -Van Jacobson, -Craig Leres and -Steven McCanne, all of the -Lawrence Berkeley National Laboratory, University of California, Berkeley, CA. -.LP -It is currently being maintained by tcpdump.org. -.LP -The current version is available via http: -.LP -.RS -.I http://www.tcpdump.org/ -.RE -.LP -The original distribution is available via anonymous ftp: -.LP -.RS -.I ftp://ftp.ee.lbl.gov/old/tcpdump.tar.Z -.RE -.LP -IPv6/IPsec support is added by WIDE/KAME project. -This program uses Eric Young's SSLeay library, under specific configurations. -.SH BUGS -Please send problems, bugs, questions, desirable enhancements, patches -etc. to: -.LP -.RS -tcpdump-workers@lists.tcpdump.org -.RE -.LP -NIT doesn't let you watch your own outbound traffic, BPF will. -We recommend that you use the latter. -.LP -On Linux systems with 2.0[.x] kernels: -.IP -packets on the loopback device will be seen twice; -.IP -packet filtering cannot be done in the kernel, so that all packets must -be copied from the kernel in order to be filtered in user mode; -.IP -all of a packet, not just the part that's within the snapshot length, -will be copied from the kernel (the 2.0[.x] packet capture mechanism, if -asked to copy only part of a packet to userland, will not report the -true length of the packet; this would cause most IP packets to get an -error from -.BR tcpdump ); -.IP -capturing on some PPP devices won't work correctly. -.LP -We recommend that you upgrade to a 2.2 or later kernel. -.LP -Some attempt should be made to reassemble IP fragments or, at least -to compute the right length for the higher level protocol. -.LP -Name server inverse queries are not dumped correctly: the (empty) -question section is printed rather than real query in the answer -section. -Some believe that inverse queries are themselves a bug and -prefer to fix the program generating them rather than \fItcpdump\fP. -.LP -A packet trace that crosses a daylight savings time change will give -skewed time stamps (the time change is ignored). -.LP -Filter expressions on fields other than those in Token Ring headers will -not correctly handle source-routed Token Ring packets. -.LP -Filter expressions on fields other than those in 802.11 headers will not -correctly handle 802.11 data packets with both To DS and From DS set. -.LP -.BR "ip6 proto" -should chase header chain, but at this moment it does not. -.BR "ip6 protochain" -is supplied for this behavior. -.LP -Arithmetic expression against transport layer headers, like \fBtcp[0]\fP, -does not work against IPv6 packets. -It only looks at IPv4 packets. diff --git a/cmake-build-debug/tcpdump.o b/cmake-build-debug/tcpdump.o deleted file mode 100644 index c46fc05..0000000 Binary files a/cmake-build-debug/tcpdump.o and /dev/null differ diff --git a/cmake-build-debug/tcpdump_mesa b/cmake-build-debug/tcpdump_mesa deleted file mode 100755 index 5f5892a..0000000 Binary files a/cmake-build-debug/tcpdump_mesa and /dev/null differ diff --git a/cmake-build-debug/util-print.o b/cmake-build-debug/util-print.o deleted file mode 100644 index 3201d8b..0000000 Binary files a/cmake-build-debug/util-print.o and /dev/null differ diff --git a/cmake-build-debug/util.o b/cmake-build-debug/util.o deleted file mode 100644 index c20ff53..0000000 Binary files a/cmake-build-debug/util.o and /dev/null differ diff --git a/cmake-build-debug/version.c b/cmake-build-debug/version.c deleted file mode 100644 index eff130c..0000000 --- a/cmake-build-debug/version.c +++ /dev/null @@ -1 +0,0 @@ -const char version[] = "4.8.1"; diff --git a/cmake-build-debug/version.cmake b/cmake-build-debug/version.cmake deleted file mode 100644 index 69ada34..0000000 --- a/cmake-build-debug/version.cmake +++ /dev/null @@ -1,19 +0,0 @@ -# Generated by autorevision - do not hand-hack! - -set(VCS_TYPE git) -set(VCS_BASENAME tcpdump_mesa) -set(VCS_UUID a6a34b3ba4b4f8bcf78456687240cace0641a66b) -set(VCS_NUM 11) -set(VCS_DATE 2020-09-28T12:00:28+0800) -set(VCS_BRANCH dev) -set(VCS_TAG ) -set(VCS_TICK 11) -set(VCS_EXTRA ) - -set(VCS_ACTION_STAMP ) -set(VCS_FULL_HASH 8a631fe724c0d095e6942cd8d24062ef117005a3) -set(VCS_SHORT_HASH 8a631fe) - -set(VCS_WC_MODIFIED 1) - -# end diff --git a/cmake-build-debug/version.o b/cmake-build-debug/version.o deleted file mode 100644 index dbf6023..0000000 Binary files a/cmake-build-debug/version.o and /dev/null differ -- cgit v1.2.3 From 453f442a037a03b038ad67383b18e259649e94b6 Mon Sep 17 00:00:00 2001 From: yangwei Date: Mon, 28 Sep 2020 14:25:58 +0800 Subject: 🔧build: 增加gitlab-ci MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitlab-ci.yml | 144 ++++++++++++++++++++++++++++++++++++++++++++++ ci/get-nprocessors.sh | 48 ++++++++++++++++ ci/perpare_pulp3_netrc.sh | 3 + ci/travis.sh | 65 +++++++++++++++++++++ 4 files changed, 260 insertions(+) create mode 100644 .gitlab-ci.yml create mode 100644 ci/get-nprocessors.sh create mode 100644 ci/perpare_pulp3_netrc.sh create mode 100644 ci/travis.sh diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..8774886 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,144 @@ +image: "git.mesalab.cn:7443/mesa_platform/build-env:master" +variables: + GIT_STRATEGY: "clone" + BUILD_PADDING_PREFIX: /tmp/padding_for_CPACK_RPM_BUILD_SOURCE_DIRS_PREFIX_PREFIX_PREFIX_PREFIX_PREFIX_PREFIX/ + INSTALL_PREFIX: "/opt/MESA/" + +stages: +- build + +.build_by_travis: + before_script: + - mkdir -p $BUILD_PADDING_PREFIX/$CI_PROJECT_NAMESPACE/ + - ln -s $CI_PROJECT_DIR $BUILD_PADDING_PREFIX/$CI_PROJECT_PATH + - cd $BUILD_PADDING_PREFIX/$CI_PROJECT_PATH + - chmod +x ./ci/travis.sh + script: + - yum makecache fast + - ./ci/travis.sh + - cd build + tags: + - share + +branch_build_debug: + stage: build + extends: .build_by_travis + variables: + BUILD_TYPE: Debug + except: + - /^dev*.*$/i + - /^rel*.*$/i + - /^master.*$/i + - tags + +branch_build_release: + stage: build + variables: + BUILD_TYPE: RelWithDebInfo + extends: .build_by_travis + except: + - /^dev*.*$/i + - /^rel*.*$/i + - /^master.*$/i + - tags + +develop_build_debug: + stage: build + extends: .build_by_travis + variables: + BUILD_TYPE: Debug + PACKAGE: 1 + artifacts: + name: "tcpdump_mesa-$CI_COMMIT_REF_NAME-debug" + paths: + - build/*.rpm + only: + - /^dev*.*$/i + - /^rel*.*$/i + - /^master.*$/i + +develop_build_release: + stage: build + extends: .build_by_travis + variables: + BUILD_TYPE: RelWithDebInfo + PACKAGE: 1 + artifacts: + name: "tcpdump_mesa-$CI_COMMIT_REF_NAME-release" + paths: + - build/*.rpm + only: + - /^dev*.*$/i + - /^rel*.*$/i + - /^master.*$/i + + +release_build_release: + stage: build + variables: + BUILD_TYPE: RelWithDebInfo + PACKAGE: 1 + UPLOAD: 1 + PULP3_REPO_NAME: platform-stable-x86_64.el7 + PULP3_DIST_NAME: platform-stable-x86_64.el7 + extends: .build_by_travis + artifacts: + name: "tcpdump_mesa-$CI_COMMIT_REF_NAME-release" + paths: + - build/*.rpm + only: + - tags + except: + - /^v[0-9].*-testing$/i + +release_build_release_devel: + stage: build + variables: + BUILD_TYPE: RelWithDebInfo + ENABLE_DEVEL_SWITCH: "ON" + PACKAGE: 1 + UPLOAD: 1 + PULP3_REPO_NAME: platform-stable-x86_64.el7 + PULP3_DIST_NAME: platform-stable-x86_64.el7 + extends: .build_by_travis + artifacts: + name: "tcpdump_mesa-$CI_COMMIT_REF_NAME-release" + paths: + - build/*.rpm + only: + - tags + except: + - /^v[0-9].*-testing$/i + +testing_build_release: + stage: build + variables: + BUILD_TYPE: RelWithDebInfo + PACKAGE: 1 + UPLOAD: 1 + PULP3_REPO_NAME: platform-testing-x86_64.el7 + PULP3_DIST_NAME: platform-testing-x86_64.el7 + extends: .build_by_travis + artifacts: + name: "tcpdump_mesa-$CI_COMMIT_REF_NAME-release" + paths: + - build/*.rpm + only: + - /^v[0-9].*-testing$/i + +testing_build_release_devel: + stage: build + variables: + BUILD_TYPE: RelWithDebInfo + ENABLE_DEVEL_SWITCH: "ON" + PACKAGE: 1 + UPLOAD: 1 + PULP3_REPO_NAME: platform-testing-x86_64.el7 + PULP3_DIST_NAME: platform-testing-x86_64.el7 + extends: .build_by_travis + artifacts: + name: "tcpdump_mesa-$CI_COMMIT_REF_NAME-release" + paths: + - build/*.rpm + only: + - /^v[0-9].*-testing$/i \ No newline at end of file diff --git a/ci/get-nprocessors.sh b/ci/get-nprocessors.sh new file mode 100644 index 0000000..43635e7 --- /dev/null +++ b/ci/get-nprocessors.sh @@ -0,0 +1,48 @@ +#!/usr/bin/env bash +# Copyright 2017 Google Inc. +# All Rights Reserved. +# +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are +# met: +# +# * Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# * Redistributions in binary form must reproduce the above +# copyright notice, this list of conditions and the following disclaimer +# in the documentation and/or other materials provided with the +# distribution. +# * Neither the name of Google Inc. nor the names of its +# contributors may be used to endorse or promote products derived from +# this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +# This file is typically sourced by another script. +# if possible, ask for the precise number of processors, +# otherwise take 2 processors as reasonable default; see +# https://docs.travis-ci.com/user/speeding-up-the-build/#Makefile-optimization +if [ -x /usr/bin/getconf ]; then + NPROCESSORS=$(/usr/bin/getconf _NPROCESSORS_ONLN) +else + NPROCESSORS=2 +fi + +# as of 2017-09-04 Travis CI reports 32 processors, but GCC build +# crashes if parallelized too much (maybe memory consumption problem), +# so limit to 4 processors for the time being. +if [ $NPROCESSORS -gt 4 ] ; then + echo "$0:Note: Limiting processors to use by make from $NPROCESSORS to 4." + NPROCESSORS=4 +fi diff --git a/ci/perpare_pulp3_netrc.sh b/ci/perpare_pulp3_netrc.sh new file mode 100644 index 0000000..8414bbb --- /dev/null +++ b/ci/perpare_pulp3_netrc.sh @@ -0,0 +1,3 @@ +#!/usr/bin/env sh +set -evx +echo "machine ${PULP3_SERVER_URL}\nlogin ${PULP3_SERVER_LOGIN}\npassword ${PULP3_SERVER_PASSWORD}\n" > ~/.netrc diff --git a/ci/travis.sh b/ci/travis.sh new file mode 100644 index 0000000..4f07bdf --- /dev/null +++ b/ci/travis.sh @@ -0,0 +1,65 @@ +#!/usr/bin/env sh +set -evx + +chmod +x ci/get-nprocessors.sh +. ci/get-nprocessors.sh + +# if possible, ask for the precise number of processors, +# otherwise take 2 processors as reasonable default; see +# https://docs.travis-ci.com/user/speeding-up-the-build/#Makefile-optimization +if [ -x /usr/bin/getconf ]; then + NPROCESSORS=$(/usr/bin/getconf _NPROCESSORS_ONLN) +else + NPROCESSORS=2 +fi + +# as of 2017-09-04 Travis CI reports 32 processors, but GCC build +# crashes if parallelized too much (maybe memory consumption problem), +# so limit to 4 processors for the time being. +if [ $NPROCESSORS -gt 4 ] ; then + echo "$0:Note: Limiting processors to use by make from $NPROCESSORS to 4." + NPROCESSORS=4 +fi + +# Tell make to use the processors. No preceding '-' required. +MAKEFLAGS="j${NPROCESSORS}" +export MAKEFLAGS + +env | sort + +# Set default values to OFF for these variables if not specified. +: "${NO_EXCEPTION:=OFF}" +: "${NO_RTTI:=OFF}" +: "${COMPILER_IS_GNUCXX:=OFF}" + +# Install dependency from YUM +if [ -n "${INSTALL_DEPENDENCY_LIBRARY}" ]; then + yum install -y $INSTALL_DEPENDENCY_LIBRARY + source /etc/profile.d/framework.sh +fi +mkdir build || true +cd build + +cmake3 -DCMAKE_CXX_FLAGS=$CXX_FLAGS \ + -DCMAKE_BUILD_TYPE=$BUILD_TYPE \ + -DCMAKE_INSTALL_PREFIX=$INSTALL_PREFIX \ + -DENABLE_DEVEL=$ENABLE_DEVEL_SWITCH \ + -DVERSION_DAILY_BUILD=$TESTING_VERSION_BUILD \ + .. + +make + +if [ -n "${PACKAGE}" ]; then + make package +fi + +if [ -n "${UPLOAD}" ]; then + cp ~/rpm_upload_tools.py ./ + python3 rpm_upload_tools.py ${PULP3_REPO_NAME} ${PULP3_DIST_NAME} *.rpm +fi + +#if [ -n "${UPLOAD_SYMBOL_FILES}" ]; then +# rpm -i tfe*debuginfo*.rpm +# cp /usr/lib/debug/opt/tsg/tfe/bin/tfe.debug /tmp/tfe.debuginfo.${CI_COMMIT_SHORT_SHA} +# sentry-cli upload-dif -t elf /tmp/tfe.debuginfo.${CI_COMMIT_SHORT_SHA} +#fi -- cgit v1.2.3